mysql server and ubuntu
by Arxleol on Saturday 01.05.2010, under MySQL, tutorial, ubuntu
In previous tutorial I shortly explained how to install Java and Glassfish on Ubuntu based systems. If you have intentions to host some basic web site you probably intend to use some sort of database. For none-commercial projects I strongly suggest mysql since it is free for none commercial use.
To install mysql server is squite easy just enter following line in terminal:
sudo apt-get install mysql-server
When installed you can start or stop server by following lines, if it is installed to default location:
sudo /etc/init.d/mysqld start
sudo /etc/init.d/mysqld stop
Restarting server is similar:
sudo /etc/init.d/mysqld restart
Wednesday 12.05.2010 on 07:42
Just a notice if you are installing Java then make sure to check whether multiverse is selected as repository.