接下來我們在 Centos7 系統下使用 yum 命令安裝 MySQL,需要註意的是 CentOS 7 版本中 MySQL資料庫已從預設的程式列表中移除,所以在安裝前我們需要先去官網下載 Yum 資源包: 使用yum安裝mysql: 啟動mysql,並查看mysql運行狀態: 安裝成功,找出mysq ...
接下來我們在 Centos7 系統下使用 yum 命令安裝 MySQL,需要註意的是 CentOS 7 版本中 MySQL資料庫已從預設的程式列表中移除,所以在安裝前我們需要先去官網下載 Yum 資源包:
[root@iZr3vdn5bmnf2lZ ~]# wget -i -c http://dev.mysql.com/get/mysql57-community-release-el7-10.noarch.rpm
使用yum安裝mysql:
[root@iZr3vdn5bmnf2lZ ~]# yum -y install mysql57-community-release-el7-10.noarch.rpm
[root@iZr3vdn5bmnf2lZ ~]# yum -y install mysql-community-server
啟動mysql,並查看mysql運行狀態:
[root@iZr3vdn5bmnf2lZ ~]# systemctl start mysqld
[root@iZr3vdn5bmnf2lZ ~]# systemctl status mysqld
安裝成功,找出mysql的初始密碼:
[root@iZr3vdn5bmnf2lZ ~]# grep "password" /var/log/mysqld.log
使用此密碼登錄資料庫:
[root@iZr3vdn5bmnf2lZ ~]# mysql -uroot -p
根據提示輸入剛纔查到的密碼。
登錄成功後修改密碼:
mysql> ALTER USER 'root'@'localhost' IDENTIFIED BY '新密碼';
但此時還有一個問題,就是因為安裝了Yum Repository,以後每次yum操作都會自動更新,需要把這個卸載掉:
如果需要開放外網:
mysql> grant all on *.* to root@'%' identified by '剛設置的新密碼';
配置完成,但此時還有一個問題,就是因為安裝了Yum Repository,以後每次yum操作都會自動更新,需要把這個卸載掉:
[root@iZr3vdn5bmnf2lZ ~]# yum -y remove mysql57-community-release-el7-10.noarch