在Fedora上启动MySql

安装MySql我从官方网站下载rpm包后试过这个:

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

一切都很顺利,过程已经完成,但是现在该如何启动这个RDMS? 我在Fedora 16的应用程序选项卡中看不到任何图标。我不确定是否一切正常。

即使我需要检查它是否正确安装如何检查,如果正确安装如何启动MySql?

编辑:

  • rpm -ql MySQL-server输出rpm -ql MySQL-server – >软件包没有安装MySQL服务器
  • service mysqld start输出service mysqld start —>redirect到/ bin / systemctl启动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)