Linux serverNETWORK ADMINISTRATIONS

Instalación MySQL 8 en un servidor CenOS 7

Instalación de una Base de Datos MySQL versión 8 en un servidor con sistema operativo CentOS 7.

Comandos:
yum install wget
rpm -Uvh https://repo.mysql.com/mysql80-community-release-el7-3.noarch.rpm
yum update
yum install mysql-server
service mysqld start
service mysqld status
grep “A temporary password” /var/log/mysqld.log
mysql -u root -p
alter user root@localhost identified by ‘Oracle.123’;

source

centos 7

Leave a Reply

Your email address will not be published. Required fields are marked *