You are hereBlogs / ari's blog / Useful Ubuntu-linux commands
Useful Ubuntu-linux commands
As of 9.10:
MYSQL
# To install MySql database:
sudo apt-get install mysql-server
# To start MySql server:
/etc/init.d/mysql start
# To stop MySql server:
/etc/init.d/mysql stop
# To restart MySql server:
/etc/init.d/mysql restart
# To check the status of MySql server:
/etc/init.d/mysql status

Post new comment