Linux Centos 操作MySql命令

2022-05-01 21:45:15 字數 762 閱讀 6730

1、安裝mysql服務端命令:

方法一:

yum install mysql-server

yum install mysql-devel

# wget 

# rpm -ivh mysql-community-release-el7-5.noarch.rpm

# yum install mysql-community-server

2、安裝mysql客戶端

yum install mysql

3、啟動服務

service mysqld start或者/etc/init.d/mysqld start

停止:service mysqld stop

重啟:service mysqld restart

4、建立root管理員:

mysqladmin -u root password 123456

5、登陸

mysql -uroot -p123456

6、授權遠端連線訪問

grant all privileges on *.* to 'root'@'%' identified by '密碼' with grant option;

7、顯示資料庫

show databases;

8、切換到某個資料庫

use mysql(資料庫名稱)

9、顯示資料庫中的表

show tables;

10、顯示資料表的結構:

describe 表名;

MySQL WorkBench管理操作MySQL

一 mysql workbench mysql workbench提供dbas和developers乙個整合工具環境 1 資料庫設計和建模 2 sql開發 取代原來的mysql query browser 3 資料庫管理 取代原來的mysql administrator 2 安裝 3 入門資料庫例項...

Linux(CentOS)常用操作指令(二)

1 安裝wget指令 yum y install wget 2 安裝ifconfig指令 yum install net tools 3 tar解壓檔案的使用 tar zxvf aaa.gz c var local user c 建立.tar格式的檔案 x 解開.tar格式的檔案 f 使用歸檔檔案 ...

Linux(CentOS)常用操作指令(一)

基本指令集合 1 檢視centos版本資訊 cat proc version cat etc redhat release 2 檢視安全日誌檔案資訊 tail f var log secure 3 vi 命令 vi filename 採用vi編輯檔案 i表示開始插入文字內容到檔案中 編寫完成,輸入e...