网站出现报错
Error establishing a database connection
1.查看了mysql的进程是否启动着
service mysqld status
2.正常,查看mysql的日志,通过配置文件可以找到mysql的日志文件,发现有张表报错了
is marked as crashed and should be repaired
3.进入到mysql
mysql -u root -p 回车 输入密码
4.进入到对应的数据库
#查看所有的库
show databases;
#进入出问题的数据库
use xxx;
5.检查修复表
check table xxx;
repair table xxx;
网友评论