1
edit
Changes
→Instruction
===Instruction===
#Login as root user
#Install the MySQL server: yum mysql-server
#Configure the MySQL server to start when the Fedora is booted: chkconfig mysqld on
#Start the MySQL server: service mysqld start
#Set a password to MySQL server's root user: /usr/bin/mysqladmin -u root password 'yourpassword'
#Test the root account: mysql -u root -p . Enter your new password. You should enable to login as root.
#Logout the session: quit