Ubuntu 14.04 我必须在启动前始终创建 apache2 日志目录

Ubuntu 14.04 我必须在启动前始终创建 apache2 日志目录

PC 重启后,由于缺少目录,apache2 无法启动/var/log/apache2/。并且 php 无法运行,因为 '/var/log/suphp/' 文件夹也丢失了。

因此重启后/var/log/会刷新或类似操作。我该如何解决这个问题?

我应该安装什么补丁、更新,以及如何避免每次电脑重启后执行这些命令:

sudo mkdir /var/log/suphp/
sudo mkdir /var/log/apache2/

更新:

这是全新安装的 Ubuntu Trusty。

$ ls -l /var/
total 36
drwxr-xr-x  2 root root     4096 лис 14 03:54 backups
drwxr-xr-x 20 root root     4096 лис 13 23:52 cache
drwxrwsrwt  2 root whoopsie 4096 лис 14 17:44 crash
drwxr-xr-x 79 root root     4096 лис 14 18:32 lib
drwxrwsr-x  2 root staff    4096 кві 11  2014 local
lrwxrwxrwx  1 root root        9 лис 13 00:49 lock -> /run/lock
drwxr-xr-x  7 root root      320 лис 17 08:21 log
drwxrwsr-x  2 root mail     4096 лип 23 00:57 mail
drwxrwsrwt  2 root whoopsie 4096 лип 23 01:22 metrics
drwxr-xr-x  2 root root     4096 лип 23 00:57 opt
lrwxrwxrwx  1 root root        4 лис 13 00:49 run -> /run
drwxrwxrwt  4 root root       80 лис 17 08:12 spool
drwxrwxrwt  2 root root       40 лис 17 08:22 tmp
drwxr-xr-x  3 root root     4096 лис 13 23:37 www
$ ls -l /var/log
total 488
-rw-r--r-- 1 root root    216 лис 17 08:11 alternatives.log
-rw-r--r-- 1 root root   5666 лис 17 08:11 boot.log
drwxr-x--- 2 root lp      100 лис 17 08:12 cups
-rw-r--r-- 1 root adm   59843 лис 17 08:11 dmesg
-rw-r--r-- 1 root root      0 лис 17 08:11 dmesg.0
-rw-r--r-- 1 root root    910 лис 17 08:11 dpkg.log
-rw-r--r-- 1 root root   1626 лис 17 08:11 gpu-manager.log
drwx--x--x 2 root root    100 лис 17 08:11 lightdm
-rw-r--r-- 1 root root   2141 лис 17 08:11 pm-powersave.log
drwxr-xr-x 3 root root    160 лис 17 08:11 samba
-rw-r--r-- 1 root root 358058 лис 17 08:11 udev
-rw-r--r-- 1 root root  53242 лис 17 08:15 Xorg.0.log

Apache2 重启输出

$ sudo service apache2 restart
[sudo] password for cosname: 
 * Restarting web server apache2                                         [fail] 
 * The apache2 configtest failed.
Output of config test was:
(2)No such file or directory: AH02291: Cannot access directory '/var/log/apache2/' for main error log
(2)No such file or directory: AH02291: Cannot access directory '/var/log/apache2/' for error log of vhost defined at /opt/cosname/conf/apache2/virtual-hosts.conf:1
(2)No such file or directory: AH02291: Cannot access directory '/var/log/apache2/' for error log of vhost defined at /etc/apache2/sites-enabled/000-default.conf:1
AH00014: Configuration check failed
Action 'configtest' failed.
The Apache error log may have more information.

sudo mkdir /var/log/apache2/ && sudo service apache2 restart

$ cat /var/log/apache2/error.log 
[Mon Nov 17 08:18:41.263776 2014] [mpm_prefork:notice] [pid 4483] AH00163: Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.5 configured -- resuming normal operations
[Mon Nov 17 08:18:41.263845 2014] [core:notice] [pid 4483] AH00094: Command line: '/usr/sbin/apache2'
[Mon Nov 17 08:18:45.027406 2014] [:error] [pid 4487] [client 127.0.0.1:49086] IOException in API_Linux_Logger.cpp:79: Could not open logfile /var/log/suphp/suphp.log
[Mon Nov 17 08:18:45.027471 2014] [core:error] [pid 4487] [client 127.0.0.1:49086] End of script output before headers: index.php

suPHP 已启用,重启后不再拥有自己的日志目录。sudo mkdir /var/log/suphp/解决了当前 PC 会话的问题

答案1

通常情况下,您不需要创建用于记录的目录,因为记录器应该会自动创建这些目录。尝试以 root 身份重新安装 apache2。我不确定 PHP 为何会抱怨。

更新(阅读更新的问题后):

我怀疑问题不是权限问题。它与此处的问题类似:http://pcduino.com/forum/index.php?topic=3838.0。其中也有解决方案。

添加条目以在/etc/rc.local文件中重新创建这些目录。希望它能解决您的问题。

答案2

/var/log/apache2由于您以 身份登录,因此请更改 的所有者root

chown -R $USER:$USER /var/log/apache2

这就成功了。

相关内容