To stop/start or restart a service from the command line, the usual syntax is:
service egg action
where egg is the name of the service (httpd for example) and action is what you'd like to happen (stop, start etc.)
eg. To restart the external apache service:
service httpd restart
Just typing in:
service egg
will usually provide you with a list of actions that egg knows how to do.
Regards,
Luke