Click to See Complete Forum and Search --> : PHP Installation help


zULu
10-13-2002, 10:34 PM
Hi,
I need help installing PHP on a Linux Red Hat 7
I downloaded the tar.gz distribution, decompressed, and put: ./configure, but i forgot the options, so i press control+c to stop the process, write the line to put ./configure --options...... and hit enter, the scripts says that only one configuration can be at time or something like this, and i can't restart the process, tried to continue with install (Make | Make install), but it doesn't work, also removed the directory and decompressed php again, and it doesn't work :(

Any idea on how i can reset the configure status?

thanks!!!

MarkE
10-14-2002, 11:23 AM
IMHO you probably stopped instead of KILL the first ./configure So the process is still active and that's why it won't restart

gauravupadhyaya
10-29-2002, 03:21 AM
Type the following command to find the PID of the previous ./configure command
ps -ef|grep ./configure
this will give you the details of the process
check the PID and the execute the following command to forcefully kill it.
kill -9 $PID.