报 error establishing a database connection 错误解决方法

配置服务器数据库之后,访问不了自己的项目,报 error establishing a database connection 错误,如下:报 error establishing a database connection 错误解决方法_第1张图片

表示连接不上数据库,因为你没有重启数据库,重启数据库之后又报如下错误:

报 error establishing a database connection 错误解决方法_第2张图片

这个时候删除一下runtime文件,删除的时候遇到如下错误:

报 error establishing a database connection 错误解决方法_第3张图片

那就给他设置权限。

整个过程的操作代码:

/usr/local/apache/bin 进入到Apache 的执行文件路径
./httpd -k stop      关闭Apache
./httpd -k start     启动Apache


/etc/init.d/mysqld start  开启mysql
/etc/init.d/mysqld stop   关闭mysql


cd /home/www/htdocs/moxing/Application/Runtime/   进入 runtime路径
rm -rf *                                          删除缓存文件

cd ../                                            返回上一层
chmod -R 777 Runtime                              设置权限    

你可能感兴趣的:(云服务器)