意外删除 /var/log/apache2 现在无法重新启动 apache

Accidentally deleted /var/log/apache2 and now can't restart apache

我正在使用Ubuntu 14.04和apache2和ispconfig 3。几个小时前我不小心删除了/var/log/apache2文件夹包含文件,现在我的服务器无法重启apache2,我怎么办恢复它们?或者日志文件夹和文件会在重启服务器时由系统自动创建?

当我重新启动 apache2 时

 * Restarting web server apache2                                         [fail]
 * The apache2 configtest failed.
Output of config test was:
AH00548: NameVirtualHost has no effect and will be removed in the next release /etc/apache2/sites-enabled/000-ispconfig.conf:61
(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 /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 touch /var/log/apache2/{access,error,other_vhosts_access,suexec}.log
sudo chown -R root:adm /var/log/apache2/
sudo chmod -R 750 /var/log/apache2

无需更改。 我只在 /etc/fstab 中添加了 tmpfs /var/log/apache2 tmpfs defaults,noatime 0 0。然后重新启动计算机。并在我的 Ubuntu 16.04.

上修复它