
Install
yum -y install https://dev.mysql.com/get/mysql80-community-release-el7-3.noarch.rpm // Add repository to your serveryum -y install mysql-community-server // Install MySQL Serversystemctl start mysqld.service // Start MySQL Servicesystemctl enable mysqld.service // Enable MySQL Service for autorunsgrep 'A temporary password is generated for root@localhost' /var/log/mysqld.log |tail -1 // Get MySQL created password/usr/bin/mysql_secure_installation // Configure and complete mysql installationGist: https://gist.github.com/ckorkmaz/3db3bb33a06a310f75ae406391393b96
Thanks.
Last edited: