mysql 安裝及常用命令

2021-09-02 20:51:15 字數 864 閱讀 6901

注意:牢記上面mysql自動生成的密碼

mysql -u root -p password

建立使用者並授權

--建立使用者並授權

命令:create user 'username'@'host' identified by 'password';

例:create user 'dog'@'localhost' identified by '123456';

create user 'pig'@'192.168.1.101' idendified by '123456';

create user 'pig'@'%' identified by '123456';

create user 'pig'@'%' identified by '';

create user 'pig'@'%';

授權root某ip訪問

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

flush privileges;

--設定與更改使用者密碼

設定其他使用者密碼:set password for 'username'@'host' = password('newpassword');

設定當前使用者密碼:set password = password("newpassword");

--刪除使用者

刪除命令: drop user 'username'@'host';

Ubuntu下mysql安裝及常用命令

ubuntu下mysql安裝 1 mysql的安裝 在終端輸入 sudo apt get install mysql client mysql server 驗證是否安裝成功 在終端輸入 sudo netstat tap grep mysql 若出現 tcp 0 0 localhost mysql ...

Linux ssh 安裝 及 常用命令

1.什麼是ssh?ssh全稱secure shell,顧名思義意思是說更安全的shell。ssh是一種遠端登入和遠端執行命令的工具,實現了對遠端執行命令的加密。防止由於網路監聽而出現的密碼洩漏,對系統構成威脅。ssh協議目前有ssh1和ssh2,ssh2協議相容ssh1。使用該協議的軟體主要有,op...

homebrew安裝及常用命令

brew 官網 命令 檢視brew的幫助 brew help 安裝軟體 brew install git 解除安裝軟體 brew uninstall git 搜尋軟體 brew search git 顯示已經安裝軟體列表 brew list 更新軟體,把所有的formula目錄更新,並且會對本機已經...