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