I would restart Apache2 but there comes an Error
$ sudo service apache2 start
Starting web server apache2
Action 'start' failed.
The Apache error log may have more information.
But all error logs in "/var/log/apache2/" are empty.
Edit: The Files are at "/var/log/apache2" and there are several entries from previous Problems but this Task doesn't create any new etry ...
Where is the Problem?
I've Solved the Problem!
It was a error in the SSL Certificate and the path to the "error.log" are changed in the vHost configuration.
If you don't need SSL (i don't because i'm running a local system) simply disable all vHost HTTPS/SSL entrys in the configuration by command line for line out.
sudo service apache2 start
. For a restart it should be:sudo service apache2 restart
– Flowerdeluce