參考文章:https://dev.MySQL.com/doc/mysql-yum-repo-quick-guide/en/
成都創(chuàng)新互聯(lián)專注于濂溪網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗(yàn)。 熱誠為您提供濂溪營銷型網(wǎng)站建設(shè),濂溪網(wǎng)站制作、濂溪網(wǎng)頁設(shè)計、濂溪網(wǎng)站官網(wǎng)定制、微信小程序定制開發(fā)服務(wù),打造濂溪網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供濂溪網(wǎng)站排名全網(wǎng)營銷落地服務(wù)。
由于一些原因,CentOS7的默認(rèn)yum源中取消了MySQL,取而代之的是MariaDB。
yum list mysql Error: No matching Packages to list yum list mariadb Available Packages mariadb.x86_64 *:*.*.*
這時候還想通過yum安裝mysql,就得做一些準(zhǔn)備
首先到
https://dev.mysql.com/downloads/repo/yum/
這個網(wǎng)站去下載對應(yīng)的rpm源
下載Linux 7對應(yīng)版本
wget -c https://dev.mysql.com/get/mysql57-community-release-el7-11.noarch.rpm
把下載的文件導(dǎo)入源
rpm -Uvh mysql57-community-release-el7-11.noarch.rpm
這時候就可以yum安裝mysql了
yum -y install mysql-community-server
啟動并初始化mysql
systemctl start mysqld
這時候就能用root用戶登陸mysql了
什么?你說不知道密碼。好吧,去mysql日志里找找
grep 'temporary password' /var/log/mysqld.log
好了,終于進(jìn)入mysql了,接下來我們做點(diǎn)什么,提示
ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.
讓我們修改掉默認(rèn)密碼
ALTER USER 'root'@'localhost' IDENTIFIED BY '123456'; ERROR 1819 (HY000): Your password does not satisfy the current policy requirements
說我的密碼不安全!我自己本地用來測試的數(shù)據(jù)庫你讓我設(shè)個復(fù)雜的密碼,我煩不煩吶
找到 /etc/my.cnf
這里簡單介紹下這個mysql的配置文件
[mysqld] # 服務(wù)器默認(rèn)字符集 character-set-server=utf8 # 表名默認(rèn)都是小寫 lower_case_table_names=1 # 監(jiān)聽的端口默認(rèn)3306 port=3306 # SQL執(zhí)行模式 sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES # 是否校驗(yàn)密碼 validate-password=OFF
配置關(guān)閉密碼校驗(yàn)后重啟mysql服務(wù)
systemctl restart mysqld
這時候再登陸mysql修改默認(rèn)密碼就可以使用簡單密碼了。
如果想要遠(yuǎn)程使用root用戶進(jìn)行登陸,還需要更改root用戶的Host
use mysql; update user set host='%' where user='root'; flush privileges;
這時候搭建就完成了。