John,

Sonds to me like you just need to startup Apache and MySQL. The default configuration works for me out of the box every time. To start these services up under RedHat, do this (as root):

service httpd start
service mysqld start

(if 'mysqld' doesn't work, it might be 'mysql').

Then, make a test PHP page in /var/www/html/test.php:

<?php
echo "Hello, world";
?>

And go here with your browser:

http://localhost/test.php


You should see "Hello, world". Good luck! John Noll wrote:

I'm trying to get Apache up and running with a mysql and php on Red Hat 8.0.
It seems all three are already installed, but I am having trouble
configuring them and getting them running. Can anyone point me in the right
direction?

Thanks,

john


_______________________________________________
newbies mailing list
[EMAIL PROTECTED]
http://phantom.byu.edu/cgi-bin/mailman/listinfo/newbies




_______________________________________________
newbies mailing list
[EMAIL PROTECTED]
http://phantom.byu.edu/cgi-bin/mailman/listinfo/newbies

Reply via email to