Installing MySQL in Fedora
Install MySQL
Enable MySQL service:
Start the MySQL server:
Set the MySQL root password:
yum -y install mysql mysql-server
Enable MySQL service:
/sbin/chkconfig mysqld on
Start the MySQL server:
/sbin/service mysqld start
Set the MySQL root password:
mysqladmin -u root password 'MyNewPassword123'
Comments
Post a Comment