重新啟動 Apache 2 時遇到問題

重新啟動 Apache 2 時遇到問題

我正在嘗試重新啟動 Apache 並收到以下訊息...

> devil@DEVil:/etc/apache2$ sudo /etc/init.d/apache2 restart  *
> Restarting web server apache2                                         
> AH00558: apache2: Could not reliably determine the server's fully
> qualified domain name, using 127.0.1.1. Set the 'ServerName' directive
> globally to suppress this message

這個問題的解決方案似乎是輸入ServerName localhostapache2.conf重新啟動 apache2 時出現問題)。

當我進入該文件嘗試更改它時,它不會讓我保存為apache2.conf“只讀”文件。如何更改權限以使其可寫,以便 Apache 啟動並運行?

答案1

您必須以 root 使用者身分編輯該文件,這可以透過在sudo用於編輯文件的命令前面輸入命令(如果需要的話,輸入您的使用者的密碼)來實現。

例如,如果您使用 vim,命令應該是

sudo vim /etc/apache2/apache2.conf

你可以vimmc, nano,pico或任何你喜歡的東西替換

相關內容