Link to home
Start Free TrialLog in
Avatar of TawVb
TawVb

asked on

Newbie Quest: Simple setup.

We are trying to set up an Apache 2.x web server. We are running SUSE linux. We have done the following and our basic sites display the apache "This page is here because the site administrator has changed the configuration of this web server" page:

*set up the following directory structure -

/usr/home/www_root/showsite/public_html/
/usr/home/www_root/showsite/public_html/cgi-bin
/usr/home/www_root/showsite/public_html/images

/usr/home/www_root/bigcompany/public_html/
/usr/home/www_root/bigcompany/public_html/cgi-bin
/usr/home/www_root/bigcompany/public_html/images

*put basic index.html in the public html dirs.

*used the following httpd.conf in the apache2 directory:

NameVirtualHost 192.168.1.18
<VirtualHost 192.168.1.18>
ServerName local.smallshop.com
DocumentRoot /usr/home/www_root/showsite/public_html/
ErrorLog /usr/home/www_root/showsite/error_log
DirectoryIndex index.html
ScriptAlias /cgi-bin/ /usr/home/www_root/showsite/public_html/cgi-bin/
<Directory /usr/home/www_root/showsite/public_html/cgi-bin>
Options +ExecCGI
AddHandler cgi-scripts .cgi .pl
</Directory>
</VirtualHost>
NameVirtualHost 192.168.1.18
<VirtualHost 192.168.1.18>
ServerName local.bigcompany.com
DocumentRoot /usr/home/www_root/bigcompany/public_html/
ErrorLog /usr/home/www_root/bigcompany/error_log
DirectoryIndex index.html
ScriptAlias /cgi-bin/ /usr/home/www_root/bigcompany/public_html/cgi-bin/
<Directory /usr/home/www_root/bigcompany/public_html/cgi-bin>
Options +ExecCGI
AddHandler cgi-scripts .cgi .pl
</Directory>
</VirtualHost>
Avatar of TawVb
TawVb

ASKER

also added

192.168.1.18     local.showsite.com
192.168.1.18     local.bigcompany.com

to hosts (in etc/ dir) file to test the pages locally.
try the following httpd.conf configuration:

NameVirtualHost *
<VirtualHost *>
    ServerAdmin admin@showsite.com
    DocumentRoot /usr/home/www_root/showsite/public_html/
    ServerName local.smallshop.com
    ErrorLog /usr/home/www_root/showsite/error_log
    <Directory "/">
        AllowOverride All
        Options FollowSymLinks
        Order allow,deny
        Allow from all
    </Directory>
    ScriptAlias /cgi-bin/ /usr/home/www_root/showsite/public_html/cgi-bin/
    <Directory "/usr/home/www_root/showsite/public_html/cgi-bin">
        Options +ExecCGI
        AddHandler cgi-scripts .cgi .pl
    </Directory>
    Alias /icons/ "/usr/home/www_root/showsite/public_html/images/"
    <Directory "/usr/home/www_root/showsite/public_html/images">
        Options Indexes MultiViews
        AllowOverride None
        Order allow,deny
        Allow from all
    </Directory>
</VirtualHost>
<VirtualHost *>
    ServerAdmin admin@bigcompany.com
    DocumentRoot /usr/home/www_root/bigcompany/public_html/
    ServerName local.bigcompany.com
    ErrorLog /usr/home/www_root/bigcompany/error_log
    <Directory "/">
        AllowOverride All
        Options FollowSymLinks
        Order allow,deny
        Allow from all
    </Directory>
    ScriptAlias /cgi-bin/ /usr/home/www_root/bigcompany/public_html/cgi-bin/
    <Directory "/usr/home/www_root/bigcompany/public_html/cgi-bin">
        Options +ExecCGI
        AddHandler cgi-scripts .cgi .pl
    </Directory>
    Alias /icons/ "/usr/home/www_root/bigcompany/public_html/images/"
    <Directory "/usr/home/www_root/bigcompany/public_html/images">
        Options Indexes MultiViews
        AllowOverride None
        Order allow,deny
        Allow from all
    </Directory>
</VirtualHost>
Avatar of TawVb

ASKER

I tried this. When i did apachectl start it said:
invalid command <the command>. prehaps misspelled or module not included in the server configuration.

if i do
apache2ctl start it says:
(98)Adress allready in use_ Makesock.... etc...
make sure you don't already have apache running

type "ps -A" to see if your computer is already running "httpd"
   if it is, kill all of the "httpd" processes

is there other software already using port 80?
type "netstat -l" to see if your computer is already listening on port 80 (httpd)
  if it is, you'll need to find out what other software is using the port, and change the configuration of one of the programs


make sure apache is trying to start on port 80, httpd.conf should contain the following line:
     Listen 80
Avatar of TawVb

ASKER

I have tried this.
and what was the result?

is other software running on port 80? is apache already running?
Avatar of periwinkle
No comment has been added to this question in more than 21 days, so it is now classified as abandoned..
I will leave the following recommendation for this question in the Cleanup topic area:

    PAQ - no refund

Any objections should be posted here in the next 4 days. After that time, the question will be closed.

Periwinkle
EE Cleanup Volunteer
ASKER CERTIFIED SOLUTION
Avatar of modulo
modulo

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial