Linux基礎教程:Fedora安裝MySQL

來源:互聯網
上載者:User

我們通過執行下面的命令在Fedora下安裝MySQL:
yum install mysql mysql-server
 
然後我們為MySQL建立系統啟動串連(這樣的話,MySQL就會在系統啟動的時候自動啟動)並且啟動MySQL伺服器:

chkconfig --levels 235 mysqld on
 
/etc/init.d/mysqld start
現在檢查是否支援網路訪問,運行:
netstat -tap | grep mysql
 
應該顯示如下資訊:

[root@www.bkjia.com ~]# netstat -tap | grep mysql
 
tcp        0      0 *:mysql                     *:*                         LISTEN      1376/mysqld
 
[root@www.bkjia.com ~]#
 
如果不顯示,編輯/etc/my.cnf檔案,並注釋掉skip-networking參數:
vi /etc/my.cnf
 
[...]
 
 
#skip-networking
 
 
[...]
 
並重啟 MySQL 伺服器:
/etc/init.d/mysqld restart
 
運行
mysqladmin -u root password yourrootsqlpassword
 
mysqladmin -h server1.example.com -u root password yourrootsqlpassword
 
來為root使用者佈建一個密碼(否則的話任何人都可以訪問你的MySQL資料庫!)。

最後使用下面的名利進入mysql:
mysql -u root -p
最後輸入root使用者的密碼就進入mysql控制台了。

相關文章

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.