4
mysql and apache are separate services under linux. I'm not aware of any need to restart apache when restarting mysql.
If you try to access XOOPS while MySQL is not running, you'll get some error messages; other than that, there shouldn't be any adverse results.
The procedure for starting/stopping/restarting apache depends on your linux distribution.
For example, on Red Hat or Fedora, you can do it like this:
# /sbin/service httpd start
- stops apache
# /sbin/service httpd stop
- starts apache
# /sbin/service httpd restart
- restarts (stops and starts) apache
There's more info here:
http://httpd.apache.org/docs/Quote:
Actually, should I Turn the site off from the XOOPS General Settings before I do anything with MySQL reset?
You can do that if you like, but since the site-closed setting is stored in the database, it wouldn't really have any effect if MySQL is not running.