내가 우분투 12.04 상자에, 최근에 하나의 apache2 업데이 트를 설치 한 이후로 모든 가상 호스트가 올바른 디렉토리를 가리키고 있지 않아, 이제는 기본 로컬 호스트를 가리키고 있습니다. 또한 아파치 2를 다시 시작하면 오류가 발생합니다.
shafox@shafox:~$ 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 [ OK ].
servername이 localhost가 아니지만 오류 메시지 앞에 AH00558 스탬프가있는 이유는 무엇입니까? 내 사이트 - 내 시스템에서 사용할 수 있습니다.
/etc/apache2/sites-available$ ls
000-default.conf default-ssl.conf localbox-local
000-default.conf.dpkg-new devbox-dev sites-si
이전에는 다음과 같았습니다.
/etc/apache2/sites-available$ ls
000-default default-ssl localbox-local devbox-dev sites-si
예를 들어, 가상 호스트 파일 중 하나는 다음과 같습니다.
<VirtualHost *:80>
ServerAdmin webmaster@localhost
ServerName localbox.local
DocumentRoot /home/shafox/Localbox
<Directory />
Options FollowSymLinks
AllowOverride All
</Directory>
<Directory /home/shafox/Localbox/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/access.log combined
Alias /doc/ "/usr/share/doc/"
<Directory "/usr/share/doc/">
Options Indexes MultiViews FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
Allow from 127.0.0.0/255.0.0.0 ::1/128
</Directory>
</VirtualHost>
나는이 모든 가상 호스트를 다시 만들고 싶지 않습니다. 나는에서 쓰여진 단계를 따라 갔다. 이 튜토리얼 모든 가상 호스트를 생성합니다.
다음은 / etc / hosts 파일입니다.
127.0.0.1 localhost
127.0.1.1 shafox
127.0.1.1 devbox.dev
127.0.1.1 localbox.local
127.0.1.1 sites.si
# The following lines are desirable for IPv6 capable hosts
::1 ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
apache2 error.log의 오류 로그 오류 로그 링크