Greetings, I have configured apache since Suse 7 and redhat 6, never ever had too many issues. This version in Suse 10, refuses outright to start. When I get it started, and try access the site - it says access denied, otherwise it picks on the syntax in my html files which works perfectly fine on the my redhat box running an older apache, not in 5 years have I ever seen this behaviour. It won't even run the site as the defualt site, Has any one here had troubles with Suse 10 and Apache? #rpm -qa | grep apache apache2-prefork-2.0.54-10 apache2-2.0.54-10 TIA Chadley
Has any one here had troubles with Suse 10 and Apache?
#rpm -qa | grep apache
apache2-prefork-2.0.54-10 apache2-2.0.54-10
I'm running Apache2 on my computer at home, and it's working fine... I'm using: - apache2-prefork-2.0.55-0.1 - apache2-2.0.55-0.1 Plus php, perl, ruby, mysql and a few mod packages as well. So, no "aha" solution here... but a confirmation that Apache2 is working fine in another SUSE10 install is a start. C.
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Chadley Wilson wrote:
This version in Suse 10, refuses outright to start. When I get it started, and try access the site - it says access denied, otherwise it picks on the syntax in my html files which works perfectly fine on the my redhat box running an older apache, not in 5 years have I ever seen this behaviour.
Hi Chad, The fact that apache actually returns a denied error suggests it's working. I've experienced yast removing directory directives from vhost sites before ( 9.3 but not 10.0 so far ). This had the unfortunate side effect of apache defaulting to the default directory directive settings in /etc/apache2/httpd.conf which is 'Deny from all'. Double check that your sites have an appropriate directory directive to override the default deny all. /etc/apache2/vhosts.d/yast2_vhosts.conf <Directory "/path/to/your/site/"> Options None AllowOverride None Order allow,deny Allow from all </Directory> Hopefully it's just this. Regards Graham -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (GNU/Linux) Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org iD8DBQFDiwkWE7J2/DSrgDcRAsDeAJ9QRiZbpU7zCuLMebEgtFamfRIs2gCdFWKE JgMzOj/T+eZYhq6tOocW0fA= =0fHp -----END PGP SIGNATURE-----
On Mon, 28 Nov 2005, Chadley Wilson wrote:
Greetings,
I have configured apache since Suse 7 and redhat 6, never ever had too many issues.
This version in Suse 10, refuses outright to start. When I get it started, and try access the site - it says access denied, otherwise it picks on the syntax in my html files which works perfectly fine on the my redhat box running an older apache, not in 5 years have I ever seen this behaviour.
It won't even run the site as the defualt site,
Has any one here had troubles with Suse 10 and Apache?
#rpm -qa | grep apache
apache2-prefork-2.0.54-10 apache2-2.0.54-10 rpm -qa apache is better:-)
I have the self-same version running without incident on my laptop. Perhaps you (or Yast) have done something evil to it?
On Mon, 2005-11-28 at 22:00 +0800, John Summerfield wrote:
On Mon, 28 Nov 2005, Chadley Wilson wrote:
Greetings,
I have configured apache since Suse 7 and redhat 6, never ever had too many issues.
This version in Suse 10, refuses outright to start. When I get it started, and try access the site - it says access denied, otherwise it picks on the syntax in my html files which works perfectly fine on the my redhat box running an older apache, not in 5 years have I ever seen this behaviour.
It won't even run the site as the defualt site,
Has any one here had troubles with Suse 10 and Apache?
#rpm -qa | grep apache
apache2-prefork-2.0.54-10 apache2-2.0.54-10 rpm -qa apache is better:-)
I have the self-same version running without incident on my laptop. Perhaps you (or Yast) have done something evil to it?
LOL!! evil indeed.... Indeed, it was YAST, he, he, it put my webdirectory in the /etc/apache2/sysconfig.d/include.conf. After I murdered the line with a "#" the server fired up just fine and is working. Thanks for all the input, Chadley
On Monday 28 November 2005 10:08, Chadley Wilson wrote:
Greetings,
I have configured apache since Suse 7 and redhat 6, never ever had too many issues.
This version in Suse 10, refuses outright to start. When I get it started, and try access the site - it says access denied, otherwise it picks on the syntax in my html files which works perfectly fine on the my redhat box running an older apache, not in 5 years have I ever seen this behaviour.
It won't even run the site as the defualt site,
Has any one here had troubles with Suse 10 and Apache?
#rpm -qa | grep apache
apache2-prefork-2.0.54-10 apache2-2.0.54-10
Mine starts reliably with # rcapache2 start Have you got a readable, valid, index.html file in /srv/www/htdocs ? Mine plays fine once that precondition is met, and is the same version. You can upload your html file(s) for validation at http://validator.w3.org/ if you need to check them for validity. You need to have the doctype declarations and so on properly set up too in order for the validator to perform the full html check; but the w3 site is full of help if you need to sort those out. HTH Fergus
TIA Chadley
participants (5)
-
Chadley Wilson
-
Clayton
-
Fergus Wilde
-
Graham Anderson
-
John Summerfield