After you have set up Tomcat and have a student host, you will also be able to access your Apache server through your student host as http://studentXX.cgs4854.cs.fiu.edu:99999, replacing 99999 with your port number, and XX with your student host number.
/home/ocelot/aul-user-web/bin/httpd -d
~your-user-name/cgs4854/serverRoot
cd ~/cgs4854/serverRoot
`
characters below
are not the single quote '
character, they are the accent grave
character, which is usually on the same key as the tilda
~
.kill -HUP `cat logs/httpd.pid`
kill -HUP `cat
~/cgs4854/serverRoot/logs/httpd.pid`
cd ~/cgs4854/serverRoot
kill -TERM `cat logs/httpd.pid`
kill -TERM `cat
~/cgs4854/serverRoot/logs/httpd.pid`
HUP
and KILL
your server. For example, if the
pid was 11223, then these commands would workkill -TERM 11223
kill -HUP 11223