Mysql修改密碼時報錯Can’t Create Thread: Errno 11解決 今天安裝完mysql後,想修改一下密碼,運行一下
myqladmin -u root password 'password'顯示報錯, 報錯信息如下, Can't create a new thread (errno 11); if you are not out of available memory, you can consult the manual for a possible OS-dependent bug' 還以為是內存不足的問題,free -m 看了一下沒問題。Google一下,說是ulimit 限制了max processes, 進入到/proc/`pidof mysqld`/limits 看了一下 max processes 設置才10 馬上ulimit -u 4096 重啟mysql service 搞定。