Wednesday, February 16, 2022

How To install MySQL 8.0 On Rocky Linux 8 | Step by Step Process ?

 in This Tutorial you will Learn "  How To install MySQL 8.0 On Rocky Linux 8 | Step by Step Process ?"
MySQL is an open-source relational database management system.
Offcial website - https://www.mysql.com/

What Is New in MySQL 8.0 - https://dev.mysql.com/blog-archive/the-complete-list-of-new-features-in-mysql-8-0/
_________________________________________________________________________________________
Server - Os:  Rocky Linux 8.5  64Bit      | IP -192.168.1.60        |Hostname - server.yourdomain.com
_________________________________________________________________________________________
cat /etc/system-release
dnf groupinstall "Development Tools" -y ; dnf module -y install mysql:8.0
nano /etc/my.cnf.d/mysql-server.cnf
character-set-server=utf8mb4
firewall-cmd --add-service=mysql --permanent ; firewall-cmd --reload
systemctl enable --now mysqld ; systemctl start mysqld ; systemctl status mysqld
mysql_secure_installation
mysql -u root -p
_________________________________________________________________________________________

No comments:

Post a Comment