環(huán)境:Linux centos8 4.18.0-80.el8.x86_64、MySQL8.0.18
創(chuàng)新互聯(lián)公司主打移動(dòng)網(wǎng)站、成都做網(wǎng)站、成都網(wǎng)站設(shè)計(jì)、網(wǎng)站改版、網(wǎng)絡(luò)推廣、網(wǎng)站維護(hù)、主機(jī)域名、等互聯(lián)網(wǎng)信息服務(wù),為各行業(yè)提供服務(wù)。在技術(shù)實(shí)力的保障下,我們?yōu)榭蛻舫兄Z穩(wěn)定,放心的服務(wù),根據(jù)網(wǎng)站的內(nèi)容與功能再?zèng)Q定采用什么樣的設(shè)計(jì)。最后,要實(shí)現(xiàn)符合網(wǎng)站需求的內(nèi)容、功能與設(shè)計(jì),我們還會(huì)規(guī)劃穩(wěn)定安全的技術(shù)方案做保障。
rpm -qa | grep -i mysql
rpm -e --nodeps 軟件名 //強(qiáng)力刪除,對(duì)相關(guān)依賴的文件也進(jìn)行強(qiáng)力刪除
rpm -ivh rpm包
* 安裝mysql-community-common-8.0.18
* 安裝mysql-community-libs-8.0.18
* 安裝mysql-community-client-8.0.18(前兩個(gè)是其依賴)
有以下方式查看:
* ps -ef | grep mysql
* cat /etc/group | grep mysql
* cat /etc/password | grep mysql
* mysqladmin --version
...
mysqld --initialize //創(chuàng)建數(shù)據(jù)文件目錄和mysql系統(tǒng)數(shù)據(jù)庫 產(chǎn)生隨機(jī)root密碼
systemctl start mysqld
啟動(dòng)失敗,因?yàn)?var/lib/mysql目錄權(quán)限不夠
chown -R mysql:mysql /var/lib/mysql/
systemctl start mysqld //啟動(dòng)
ps -ef | grep mysql //查看mysql服務(wù)
cat /var/log/mysqld.log | grep password
mysql_secure_installation
mysql -uroot -p //隨機(jī)密碼登錄
先把root的舊密碼置空
use mysql;
update user set authentication_string='' where user='root';
備注:Mysql5.7+ password字段 已改成 authentication_string字段
重置成新密碼
alter user 'root'@'localhost' identified by 'newpassword';
備注:Mysql8.0修改密碼方式已有變化(此處是個(gè)坑,需要注意)
Mysql8.0之前:
update user set password=password('root') where user='root';
mysql -uroot -proot
systemctl stop mysqld //停止服務(wù)
systemctl restart mysqld //重啟服務(wù)
systemctl status mysqld //查看服務(wù)
/usr/bin //相關(guān)命令
/usr/share/mysql //配置文件目錄
/var/lib/mysql //數(shù)據(jù)庫文件存放目錄
/etc/my.cnf //mysql的啟動(dòng)配置文件
my.ini //windows操作系統(tǒng)下的配置文件
my.cnf //linux操作系統(tǒng)下的配置文件
mysqld //是后臺(tái)守護(hù)進(jìn)程,即mysql daemon
mysql //是客戶端命令行