mac下修改mysql-root密碼-各種許可權問題解決

來源:互聯網
上載者:User

標籤:style   http   color   os   檔案   io   for   art   

官方資料:http://dev.mysql.com/doc/refman/5.0/en/resetting-permissions.html#resetting-permissions-unix

還有一個值得參考的mysql安裝,與python-mysql安裝部落格http://hearrain.com/2011/01/498


據官方文檔說,

For example, if you run the server using the mysql login account, you should log in as mysql before using the instructions. Alternatively, you can log in as root, but in this case you must start mysqld with the --user=mysql option. If you start the server as root without using --user=mysql, the server may create root-owned files in the data directory, such as log files, and these may cause permission-related problems for future server startups.

如果在安裝完mysql後,當你用root登入的時候,必須加上--user=mysql,否則的話,伺服器會自動建立root-owned檔案,這些就會導致許可權的問題


我之前就是因為直接登入了,然後root密碼無修改許可權,各種無許可權


解決的辦法就是

shell> kill `cat /mysql-data-directory/host_name.pid`
mysql-data-directory   的路徑一般是 /usr/local/mysql/data下的包含你的電腦名稱的以pid結尾的檔案


UPDATE mysql.user SET Password=PASSWORD(‘MyNewPass‘) WHERE User=‘root‘;FLUSH PRIVILEGES;
結束進程之後,把上面的兩句話放到一個檔案中例如update_passwd,該檔案在/usr/local/下


shell> mysqld_safe --init-file=/home/me/mysql-init &

然後sudo su進入root許可權,進入mysql下bin輸入以上命令,結束後(我的好像沒有結束,就另開了一個terminal),

進入mysql命令列下

UPDATE mysql.user SET Password=PASSWORD(‘MyNewPass‘)    ->                   WHERE User=‘root‘;

然後再進入就ok了





相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.