Mysql

mysql:無法辨識的服務…但是 mysql 已安裝並且正在工作

  • November 12, 2013

我正在嘗試停止 mysql 並進行一些更改,然後我將重新啟動它

我正在使用 SSH 客戶端。

所以我毫無問題地執行了這 3 個表揚

mysql
mysql> SET GLOBAL innodb_fast_shutdown = 0; 
exit;

現在當我輸入

service mysql stop

或者

service mysql 

我明白了

mysql: unrecognized service 

怎麼了 ?我的網站線上,並且在我輸入此內容時正在使用 mysql 數據庫,但我無法訪問

service mysql

一些額外的資訊

CentOS release 6.4 (Final)
Server version: 5.5.31 MySQL Community Server 

它的 mysqld 不是基於 Red Hat 的發行版上的 mysql。採用**service mysqld stop|start|restart**

嘗試:

/etc/init.d/mysqld stop
/etc/init.d/mysqld start
/etc/init.d/mysqld restart

或者:

# service mysqld stop
# service mysqld start
# service mysqld restart

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