1. 程式人生 > >centos7 下報錯thinkPHP_STORAGE_WRITE_ERROR_:./App/Runtime/Cache/Admin/f0f0錯誤位置 FILE: /usr48

centos7 下報錯thinkPHP_STORAGE_WRITE_ERROR_:./App/Runtime/Cache/Admin/f0f0錯誤位置 FILE: /usr48

這個問題是因為runtime許可權不夠導致,所以chmod -R 777 Runtime 可以解決問題。

centos7 mysql資料庫: 報錯

1045 access denied for user 'root'@'localhost' using password yes

我的密碼也設定了,都是一樣的。命令就能進入,就是不行。


後來,就命令進入mysql 。use mysql .

 use mysql
Reading table information for completion of table and column names


You can turn off this feature to get a quicker startup with -A


Database changed

mysql> update user set password=password('密碼') where user='root';

然後就解決問題了。