Linux

在 Fedora 上啟動 MySql

  • September 20, 2012

為了安裝MySql,我在從官方網站下載了 rpm 包後嘗試了這個:

yum install MySQL-server-5.5.27-1.linux2.6.i386.rpm

一切順利,流程已完成,但現在我該如何啟動這個 RDMS?我在 fedora 16 的應用程序選項卡中沒有看到任何圖示。我不確定一切是否正常。

即使我需要檢查它是否安裝正確,我該如何檢查,如果安裝正確,我該如何啟動 MySql?

編輯 :

  • –> 包 MySQL-server 的輸出rpm -ql MySQL-server未安裝
  • service mysqld start—> 重定向到 /bin/systemctl start mysqld.service的輸出

*注意:*我也使用了這個:yum install mysql-server最後得到了一條成功消息:Installed: mysql-server.i686 0:5.5.27-1.fc16

yum install mysql-server (is how you install the version in the repo)
service mysqld start (is how you start is, you can also use /etc/init.d/mysqld start)
chkconfig mysqld on (makes sure it starts when you reboot the server)

引用自:https://serverfault.com/questions/430240