I have a Solaris 10 server with MySQL 3.23 installed. I wanted to know
what is the way to stop/start MySQL service on Solaris 10.
Thanks in advance
You should first try to find out how the service is called, I am using
apache as example:
svcs -a | grep -i apache
online Sep_22 svc:/network/http:apache2
Then, a restart should suffice.
svcadm restart svc:/network/http:apache2
although I've not touched mysql on a sun box, but still
"svcs *mysql* " command should give you a clue about mysql-[server]
instance running on your system, and if so, try using
svcadm refresh|disable/enable|restart mysql
hope this helps.
Regards,
/Nasir/