--
Has recibido este mensaje porque estás suscrito al grupo "LinuxCabal" de Grupos de Google.
Para publicar una entrada en este grupo, envía un correo electrónico a linux...@googlegroups.com.
Para anular tu suscripción a este grupo, envía un correo electrónico a linuxcabal+...@googlegroups.com
Para obtener más opciones, visita https://groups.google.com/groups/opt_out.
To install MySQL, we do this:
yum install mysql mysql-server
Then we create the system startup links for MySQL (so that MySQL starts automatically whenever the system boots) and start the MySQL server:
systemctl enable mysqld.service
systemctl start mysqld.service
Run
mysql_secure_installation
to set a password for the user root (otherwise anybody can access your MySQL database!):
[root@server1 ~]# mysql_secure_installation