Real life problems solved
Posted by tech-problems on Jul 13, 2010 in Apache, EC2 | 1 comment
To restart Apache from the command line from a Amazon EC2 Instance simply type:
/sbin/service httpd restart
In case you get “permission denied” errors, you should try adding a sudo in front of the line, e.g.:
sudo /sbin/service httpd restart