Click to See Complete Forum and Search --> : very frustrating


sandwichs
09-25-2001, 12:53 PM
I'm trying to follow the tutorial on the main page of this web site (Setting up Apache with mySQL, Frontpage 2000 Extensions,and PHP NHF )
When I get to
chown -R mysql.mysql /usr/local/mysql
I recieve a msg saying chown: too few arguments. what should I do?
Also... can someone point me to a tutorial that actualy works?
thanks
D

wurmy
09-25-2001, 05:55 PM
i recently installed MySql myself.....unfortunately i cant remember exactly what i did....but i believe i have it written down at home. i'll post it when i get home....assuming no one else has beat me to it....

wurmy

nopri
09-25-2001, 10:21 PM
hello,

May be i can try to help you for installing apache + mysql + php with DSO Support :

APACHE :
tar zxvf apache-xxx.tar.gz
cd apache-xxx
./configure --prefix=/path/to/apache --enable-module=most --enable-shared=max
make
make install

MYSQL :
tar zxvf mysql-xxx.tar.gz
cd mysql-xxx
groupadd mysql
useradd -g mysql mysql
./configure --with-prefix=/path/to/mysql
make
make install
scripts/mysql_install-db
chown -R root /path/to/mysql
chown -R mysql /parh/to/mysql/var
chgrp -R mysql /path/to/mysql


PHP
tar zxvf php-xxx.tar.gz
cd php-xxx
./configure --with-apxs=/path/to/apache/bin/apxs --with-mysql=/path/to/mysql

I DON'T know how to set FP.

Please forgive me if do not answer you :)