您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關Linux中MySQL怎么用,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
1.show databases;
2.use mysql轉換database
3.show tables 顯示數據庫里的表
4.select user,host,password from user查詢我的數據庫mysql的user,host,password
5.給賬號設置密碼
mysql> update user set password=password('123456') where user='root';
6.清除空用戶
delete From user where user='' ;
7.查看剩余用戶
命令與上文相同的查詢用戶命令
8.刷新權限(重點)
命令flush privileges;每次操作結束后都要刷新權限!!
9.通過用戶進入數據庫
mysql -u root -p123456; (-p后全是密碼)
10.編輯.bash_profile文件(此步驟是為了可以讓我們使用which mysql直接找到mysql文件在哪)
vi 。bash_profile修改為# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# User specific environment and startup programs
PATH=$PATH:$HOME/bin
1,1 Top
# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# User specific environment and startup programs
export MYSQL_BASE=/usr/local/mysql
export PATH=${MYSQL_BASE}/bin:$PATH
PS1=`uname -n`":"'$USER'":"'$PWD'":>"; export PS1得到結果
11.創建一個新的數據庫并且設定可以進入他的機器
11.1 create database ruozedb;創建數據庫ruozedb
11.2grant all privileges on ruozedb.* to ruoze@'192.168.137.252' identified by '123456'設定可以進入數據庫ruozedb的用戶只有IP為192.168.137.252的用戶名叫做ruoze且密碼為123456(如果把IP地址改為%則表示任意ID都可以用ruoze用戶進入)
11.3flush privileges;權限刷新
實踐如圖:
12.連接Dbeaver
關于“Linux中MySQL怎么用”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。