我遇到了一些 MySQL 问题,因此我尝试使用shutdown -r now
.我可以通过 SSH 访问它,但我尝试导航到的任何页面现在都会返回:
This webpage is not available ERR_CONNECTION_REFUSED Google Chrome's connection attempt to xxx.amazonaws.com was rejected. The website may be down, or your network may not be properly configured.
我该怎么做才能使其恢复在线状态?
答案1
可能你的网络服务器和你的数据库不是从操作系统开始的。您需要检查它们是否正在运行,如果没有则手动启动它们。
在 CentOS/RHEL 中启动 Apache HTTPD 和 MySQL:
service mysql start
service httpd start
在 ubuntu/debian 中:
service mysql start
service apache2 start