Ad Widget

Collapse

starting apache error

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • cheesewizz
    Junior Member
    • Sep 2007
    • 12

    #1

    starting apache error

    Hello,

    i got an error when i trying to start the apache

    sudo /etc/init.d/apache2 restart

    apache2: Syntax error on line 298 of /etc/apache2/apache2.conf: Syntax error on line 2 of /etc/apache2/sites-enabled/000-default: /etc/apache2/sites-enabled/000-default:2: <VirtualHost> was not closed.


    here is the content of my /etc/apache2/sites-enabled/000-default

    NameVirtualHost *
    <VirtualHost>
    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>

    ErrorLog /var/log/apache2/error.log

    # Possible values include: debug, info, notice, warn, error, crit,
    # alert, emerg.
    LogLevel warn

    CustomLog /var/log/apache2/access.log combined
    ServerSignature On

    Alias /doc/ "/usr/share/doc/"
    <Directory "/usr/share/doc/">
    Options Indexes MultiViews FollowSymLinks
    AllowOverride None
    Order deny,allow
    Deny from all
    Allow from 127.0.0.0/255.0.0.0 ::1/128
    </Directory>

    Alias /zabbix /home/zabbix/public_html/
    <Directory /home/zabbix/public_html>
    AllowOverride FileInfo AuthConfig Limit Indexes
    Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
    <Limit GET POST OPTIONS PROPFIND>
    Order allow,deny
    Allow from all
    </Limit>
    <LimitExcept GET POST OPTIONS PROPFIND>
    Order deny,allow
    Deny from all
    </LimitExcept>
    </Directory>


    is there syntax error or some missing symbols?


    please help me to olve this problem....
  • Tenzer
    Senior Member
    • Nov 2007
    • 316

    #2
    This isn't a zabbix related issue at all, but however, did you see the error message it gives? It pretty much explains it: "<VirtualHost> was not closed.".
    Try to add "</VirtualHost>" to the end of the file.

    Comment

    Working...