charliecreed
Verified User
- Joined
- Feb 26, 2006
- Messages
- 56
Indeed. I put some files in /bin/ to make it easyer.
If your intrested in how to do it here we go
cd /bin/
nano httpd.start
Put the following code in that file
Then
nano httpd.stop
Put the following code in that file
Now do
Now to boot up or turn off httpd safely just type httpd.start or httpd.stop
Simple little guide if your lazy like me to remeber commands
If your intrested in how to do it here we go
cd /bin/
nano httpd.start
Put the following code in that file
Code:
httpd
echo "HTTP has been started"
Then
nano httpd.stop
Put the following code in that file
Code:
apachectl stop
echo "HTTP has been stoped."
Now do
Code:
chmod +x httpd.stop
chmod +x httpd.start
Now to boot up or turn off httpd safely just type httpd.start or httpd.stop
Simple little guide if your lazy like me to remeber commands
