aix重啟mysql時遇到的問題 aix 重啟mysql時遇到問題: error: 'Access denied for user 'root'@'localhost' (using password: YES)' 這個錯誤是關閉mysql時使用下面的命令產生的: ./mysqladmin -u root -p shutdown 原因是輸入的密碼錯誤; 然後是啟動mysql,由於使用root賬號,啟動mysql要使用./mysqld_safe 命令,不然會出現下面的錯誤: Fatal error: Please read "Security" section of the manual to find out how to run mysqld as root! 使用命令如下: ./mysqld_safe --user=root 但是還是出現了下面的錯誤: there is not enough spase ... aix機就是這樣,老是顯示空間不夠,如何查看空間呢? df -k 查看到的結果卻是是使用100%,增加空間; chfs -a size=+5G /usr 給/usr增加5G的空間,然後使用 ./mysqld_safe --user=root 出現mysqld deaman 。。。,說明正在啟動,然後使用 ps -ef |grep mysql 查看是否有mysql進程運行,即可。