MySQL安裝和基本命令

2021-09-14 04:52:57 字數 1551 閱讀 4823

windows10安裝

解壓到指定目錄

服務端初始化:e:\mysql-5.7.16-winx64\bin\mysqld --initialise-insecure # 此時使用者名稱 root 密碼:空,需要設定

環境變數的配置:

e:\mysql-5.7.16-winx64\bin

設定windows服務,就能自動啟動:

e:\mysql-5.7.16-winx64\bin\mysqld --install

啟動、關閉服務端

net start mysql

net stop mysql

客戶端連線:mysql -u root -p 

w10設定root密碼

alter user 'root'@'%' identified with mysql_native_password by '自己填';

更新許可權

flush privileges;

linux普通使用者訪問許可權

select user, plugin from mysql.user;

root使用者的plugin被修改為auth_socket,只有換成mysql_native_password才可以使用密碼登入mysql。

update mysql.user set authentication_string=password('12345678'), plugin='mysql_native_password' where user='root';

flush privileges;

create user 'zrq'@'192.168.1.1' identified by '123123';

create user 'zrq'@'%' identified by '199416';

刪除使用者

drop user 'zrq'@'%';

授權 許可權-資料庫-使用者名稱-ip位址

grant select,insert,update on db1.t1 to 'alex'@'%';

grant all privileges on zrq.* to 'zrq'@'%';

取消授權

revoke all privileges on db1.t1 from 'alex'@'%';

sudo mysql -u root -p

#查詢pymysql資料庫

use pymysql;

#查詢表

show tables;

#顯示資料

mysql基本命令總結 mysql基本命令總結

1.在ubuntu上安裝mysql sudo apt get install mysql server sudo apt get install mysql client 2.安裝結束後,用命令驗證是否安裝並啟動成功 sudo netstat tap grep mysql 通過上述命令檢查之後,如果...

Docker安裝和基本命令

docker安裝 centos 7 docker常用命令 檢視映象 docker images 構建容器 docker run itd name 自定義容器名 指定映象 版本號 i 表示以互動模式執行機器 d 表示後台執行容器,並返回容器id t 為容器重新分配乙個偽輸入終端 name 為容器指定名...

mysql 基本命令和知識

剛剛接觸資料庫,簡單記錄下使用的基本命令和知識 在mysql控制台下建立資料庫出現以下資訊 mysql create databa inci error 1044 42000 access denied for user localhost to database xinci 2.解決方法 執行以下...