Shutdown
‘shutdown -r now’ 後’此網頁不可用’
我遇到了一些 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.
我該怎麼做才能讓它重新上線?
可能你的網路伺服器和你的數據庫沒有從 os.s 開始。您需要檢查它們是否正在執行,如果沒有則手動啟動它們。
在 CentOS/RHEL 中啟動 Apache HTTPD 和 MySQL:
service mysql start service httpd start
在 ubuntu/debian 中:
service mysql start service apache2 start