简体   繁体   中英

Error apache2 after enable virtual host

Hello could anyone tell me what's problem about apache2? after I create a virtual host then I just enable it as this command line in ubuntu "sudo a2ensite dev.codeigniter.com.conf" and the file contant "

ServerAdmin pkayjava@gmail.com

DocumentRoot /opt/php/dev.codeigniter.com
ServerName dev.codeigniter.com

AssignUserID visalthorn socheat

<Directory />
    Options FollowSymLinks MultiViews
    AllowOverride All
    Order allow,deny
    Allow from all
    Require all granted
</Directory>

ErrorLog /var/log/apache2/dev.codeigniter.com-error.log
LogLevel warn
CustomLog /var/log/apache2/dev.codeigniter.com-access.log combined

". then I have to restart apache2 by this command line "sudo service apache2 restart" and it show error like this "Job for apache2.service failed because the control process exited with error code. See "systemctl status apache2.service" and "journalctl -xe" for details." I try to enable other virtual host and it happens the same error. thanks

Try to run

apache2ctl configtest

to see if you have any configuration errors.

See: https://askubuntu.com/questions/629995/apache-not-able-to-restart

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM