Installing MySQL
RHEL 9.0 provides MySQL 8.0 as the initial version of this Application Stream, which you can install easily as an RPM package.
To install MySQL, use the following procedure.
Procedure
- Install MySQL server packages:# dnf install mysql-server
- Start the
mysqldservice:# systemctl start mysqld.service - Enable the
mysqldservice to start at boot:# systemctl enable mysqld.service - Recommended: To improve security when installing MySQL, run the following command:$ mysql_secure_installation