Install Mysql and redhatrpm in rpm mode in RedHat 5.8
I want to install Mysql 5.6 ..
1. Prepare the file:
1) Mysql-client-5.6.24-1.rhel5.x86_64.rpm
2) Mysql-server-5.6.24-1.rhel5.x86_64.rpm
2. Remove the Mysql version from the system:
yum remove mysql*;
3. Install the client:
rpm -ivh Mysql-client-5.6.24-1.rhel5.x86_64.rpm
4. Install server:
rpm -ivh Mysql-server-5.6.24-1.rhel5.x86_64.rpm
5. Restart your computer:
reboot
6. Reset the root user password:
1) The initial password of the root user is saved in the/root/. mysql_secret file, and the copy password is enabled;
2) log on to Mysql as a root user:
mysql -u root -p
Paste the copied password.
3) reset the root password:
SET PASSWORD=PASSWORD('the password you want to use');
4) Exit:
quit
Copyright Disclaimer: This article is an original article by the blogger and cannot be reproduced without the permission of the blogger.