wget -i -c
yum -y install mysql57-community-release-el7-10.noarch.rpm
之後就開始安裝mysql伺服器。
yum -y install mysql-community-server
這步可能會花些時間,安裝完成後就會覆蓋掉之前的mariadb。
此時mysql已經開始正常執行,不過要想進入mysql還得先找出此時root使用者的密碼,通過如下命令可以在日誌檔案中找出密碼:
grep 「password」 /var/log/mysqld.log
iq(ps.tce3n/
如下命令進入資料庫:
mysql -uroot -p
輸入初始密碼,此時不能做任何事情,因為mysql預設必須修改密碼之後才能運算元據庫:
alter user 『root』@『localhost』 identified by 『chenxb123!@#』
啟動命令
service mysqld start
redirecting to /bin/systemctl start mysqld.service
關閉命令
service mysqld stop
redirecting to /bin/systemctl stop mysqld.service
重啟命令
service mysqld restart
redirecting to /bin/systemctl restart mysqld.service
檢視服務狀態
service mysqld status
授權其他機器登陸
update user set host=』%』 where user=『root』
將當前user和privilige表中的使用者資訊/許可權設定從mysql庫(mysql資料庫的內建庫)中提取到記憶體裡。
flush privileges
linux常用mysql命令
檢視狀態 service mysql status systemctl status mysql 啟動mysql service mysql start systemctl start mysql 關閉service mysql stop systemctl stop mysql 登入mysql u...
Linux終端常用mysql命令
1.終端啟動 mysql etc init.d mysql start 2.登入 mysql mysql uroot p 用 root 賬戶登入 然後輸入密碼 3.檢視所有的資料庫名字 show databases 4.選擇乙個資料庫操作 use database name 5.檢視當前資料庫下所有...
linux 常用Mysql指令碼命令
新資料庫設定root密碼 visible mysql uroot p visible mysqladmin uroot password 建立使用者和授權 visible mysql uroot p mariadb grant all privileges on to identified by w...