CentOS7安裝MySQL

來源:互聯網
上載者:User

標籤:

在CentOS7環境下安裝單機版本的MySQL5.6.23
由於MySQL需要依賴perl的包,所以先使用如下命令安裝perl
1. yum install perl*
安裝MySQL-client
2. rpm -ivh MySQL-client.rpm
由於MySQL-server需要依賴net-tools,所以先使用如下命令安裝net-tools
3. yum install net-tools
由於MySQL-server與mariadb衝突,所以再使用如下命令卸載mariadb
4. yum erase mariadb*
安裝MySQL-server.rpm
5. rpm -ivh MySQL-server.rpm
查看mysql是否已啟動
6. /etc/init.d/mysql status
如果mysql沒有啟動,那麼使用如下命令啟動
7. /etc/init.d/mysql start
查看mysql啟動了那些進程
8. ps -A | grep mysql
由於沒有新群組mysql與使用者mysql,所以mysql安裝時直接使用了系統的root使用者,安裝過程中為資料
庫的root使用者產生一個預設密碼,儲存在.mysql_secure檔案中
9. cat .mysql_secret

[[email protected]2 ~]# cat .mysql_secret# The random password set for the root user at Sat Apr 11 19:38:38 2015 (local time): DLZQfs4r9_ilYVue


登陸mysql
10. mysql -u root -p
第一次登陸mysql的密碼為.mysql_secret檔案中的密碼,登陸成功後必須重新設定密碼
11. set password = password(‘密碼‘)
設定密碼之後重新重新整理privileges,使密碼修改生效。
12. flush privileges

CentOS7安裝MySQL

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.