在 Fedora 上启动 MySql

在 Fedora 上启动 MySql

安装MySQL的我从官方网站下载rpm包后尝试了这个:

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

一切顺利,流程已完成,但现在我该如何启动此 RDMS?我没有在 Fedora 16 的应用程序选项卡中看到任何创建的图标。我不确定一切是否顺利。

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

编辑 :

  • 输出rpm -ql MySQL-server--> 软件包 MySQL-server 未安装
  • --->的输出service mysqld start重定向到 /bin/systemctl start mysqld.service

笔记 :我也使用了这个:yum install mysql-server最后收到了成功消息:Installed: mysql-server.i686 0:5.5.27-1.fc16

答案1

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)

相关内容