Showing posts with label MySQL install yum Linux. Show all posts
Showing posts with label MySQL install yum Linux. Show all posts

Friday, February 25, 2011

Installing MySQL in Fedora Core Linux

Hi Friends,

below are the steps to install MySQL on Fedora Core Linux:

Use yum to install both mysql command line tool and the server:yum -y install mysql mysql-server
Enable the MySQL service:/sbin/chkconfig mysqld on
Start the MySQL server:/sbin/service mysqld start
Set the MySQL root password:mysqladmin -u root password 'new-password'The quotes around the new password are required.