<b>Ubuntu Server 10.04改正Apache的默许目录</b>[服务器安全]
本文“<b>Ubuntu Server 10.04改正Apache的默许目录</b>[服务器安全]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:
在Ubuntu Server 10.04中默许由apt方法安装的Apache,指定网页主目录位于:/var/www.而我需求将其更改成: /home/www.因为我的系统/var所分到的空间太少,而我又有供应通过web方法供应网络存储的需求.对比糟糕的是:我的/etc /apache2/sites-enabled/000-default文件在改正后消逝掉了.后果招致apache服务呈现错误,网站不能运行了.在最 后一部份我记录了若何办理这个问题.
1、查找Apache的配置文件
# cd /etc/apache2/
发现apache2.conf和httpd.conf文件,没有找到关于目录改正的配置,且http.conf为空文件.
2、上网搜索
apache2.conf里并没有DocumentRoot项,httpd.conf又是空的,www.linuxidc.com因此必定在其他的文件中.经过搜索,发目前/etc /apache2/sites-enabled/000-default中,里面有这样的内容:
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www />
Options Indexes FollowSymLinks MultiViews
AllowOverride None
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>
改正办法:将上面的/var/www改正成/home/www便可.
3、找回丧失的/etc /apache2/sites-enabled/000-default文件
不知何种缘由,000-default竟然丢了,apache服务也不能正常运行了.还好我有一个备用服务器,经查000-default实际上是一个软链接,指向../sites-available/default文件.
# cd /etc /apache2/sites-enabled/
# ln -s ../sites-available/default 000-default
# /etc/init.d/apache2 restart
* Restarting web server apache2
apache2: Could not reliably determine the server’s fully qualified domain name, using 127.0.1.1 for ServerName
… waiting apache2: Could not reliably determine the server’s fully qualified domain name, using 127.0.1.1 for ServerName
…done.
===由上面apache启动的反馈信息,可以看到apache还是有一点小问题的,不过不影响.
下表为空间分配.
Filesystem Size Used Avail Use% Mounted on
/dev/sda5 1.9G 36M 1.8G 2% /tmp
/dev/sda9 209M 21M 177M 11% /boot
/dev/sda1 276G 7.0G 255G 3% /home
/dev/sda6 8.6G 670M 7.5G 9% /usr
/dev/sda3 1.9G 186M 1.6G 11% /var
以上是“<b>Ubuntu Server 10.04改正Apache的默许目录</b>[服务器安全]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
本文地址: | 与您的QQ/BBS好友分享! |