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 localhost파일 apache2.conf(apache2를 다시 시작하는 데 문제가 있습니다.).

apache2.conf이 파일에 들어가서 변경하려고 하면 "읽기 전용" 파일로 저장할 수 없습니다 . Apache를 시작하고 실행할 수 있도록 쓰기 가능하도록 권한을 어떻게 변경합니까?

답변1

루트 사용자로 파일을 편집해야 합니다. 이는 sudo파일을 편집하는 데 사용하는 명령 앞에 명령을 입력하여 수행할 수 있습니다(요청하는 경우 사용자의 암호를 입력).

예를 들어 vim을 사용하는 경우 명령은 다음과 같아야 합니다.

sudo vim /etc/apache2/apache2.conf

, 또는 원하는 대로 vim바꿀 수 있습니다 mc.nanopico

관련 정보