1. 程式人生 > >Redhat 啟動mysql失敗及重置密碼

Redhat 啟動mysql失敗及重置密碼

png closed 密碼 blank 技術 body 技術分享 添加 where

cd usr/local/mysql/mysql5.6/bin

[root@iZ2ze6yx6b47rdx0vccs5iZ bin]# service mysql-libs-5.1.73-8.el6_8.x86_64 start
mysql-libs-5.1.73-8.el6_8.x86_64: unrecognized service
[root@iZ2ze6yx6b47rdx0vccs5iZ bin]# service mysql start
mysql: unrecognized service

@參考文章及原文

技術分享圖片
更新:2013-08-24 20:56|標簽:mysql 
在centos下用yum install mysql 安裝完後,卻發現用service mysqld start無法開啟



出現mysqld:unrecognized service,網上別人說用
/etc/rc.d/init.d/mysqld start,仍舊沒辦法解決。 難道是安裝問題? 卸載掉mysql 在Terminal輸入 yum remove mysql 然後重新安裝yum install mysql還是沒辦法解決 接著在網上查找了很多種辦法還是沒解決。 很是郁悶·····後來···· 在Terminal下輸入rpm -q mysql 查詢發現是mysql-server沒有安裝 馬上在Terminal下輸入yum install mysql
-server 安裝mysql的server端,然後再輸入service mysqld restart 成功解決問題。
View Code

yum install mysql-server

service mysqld start啟動成功

重置密碼:@參考文章

cd usr/local/mysql/mysql5.6/bin

service mysqld stop

vi /etc/my.cnf,mysqld模塊添加skip-grant-tables##忽略mysql權限問題,直接登錄

esc——:wq

service mysqld start

這樣再次進入mysql就不許密碼了。更改user的password,quit,

update user set password=password("#######") where ####

技術分享圖片

Redhat 啟動mysql失敗及重置密碼