Los paquetes son los siguientes:
- MySQL-client-5.6.19-1.el6.x86_64.rpm
- MySQL-devel-5.6.19-1.el6.x86_64.rpm
- MySQL-server-5.6.19-1.el6.x86_64.rpm
- mysql-workbench-community-6.1.7-1.el6.x86_64.rpm
sudo rpm -ivh MySQL-client-5.6.19-1.el6.x86_64.rpm
sudo rpm -ivh MySQL-devel-5.6.19-1.el6.x86_64.rpm
sudo rpm -ivh MySQL-server-5.6.19-1.el6.x86_64.rpm
sudo rpm -ivh mysql-workbench-community-6.1.7-1.el6.x86_64.rpm
su -
ls -la
gedit .mysql_secret
sudo systemctl start mysqld.service sudo service mysql start
Después de haber iniciado el servidor, es necesario cambiarle la contraseña, se realiza lo siguiente:
/usr/bin/mysql_secure_installation
La información que le arrojará es la siguiente:
NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MySQL
SERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY!
In order to log into MySQL to secure it, we'll need the current
password for the root user. If you've just installed MySQL, and
you haven't set the root password yet, the password will be blank,
so you should just press enter here.
Enter current password for root (enter for none):
OK, successfully used password, moving on...
Setting the root password ensures that nobody can log into the MySQL
root user without the proper authorisation.
Set root password? [Y/n] Y
New password:
Re-enter new password:
Password updated successfully!
Reloading privilege tables..
... Success!
By default, a MySQL installation has an anonymous user, allowing anyone
to log into MySQL without having to have a user account created for
them. This is intended only for testing, and to make the installation
go a bit smoother. You should remove them before moving into a
production environment.
Remove anonymous users? [Y/n] Y
... Success!
Normally, root should only be allowed to connect from 'localhost'. This
ensures that someone cannot guess at the root password from the network.
Disallow root login remotely? [Y/n] Y
... Success!
By default, MySQL comes with a database named 'test' that anyone can
access. This is also intended only for testing, and should be removed
before moving into a production environment.
Remove test database and access to it? [Y/n] Y
- Dropping test database...
... Success!
- Removing privileges on test database...
... Success!
Reloading the privilege tables will ensure that all changes made so far
will take effect immediately.
Reload privilege tables now? [Y/n] Y
... Success!
Cleaning up...
All done! If you've completed all of the above steps, your MySQL
installation should now be secure.
Thanks for using MySQL!
Si quieren cambiar su contraseña que al inicio cuando lo ejecuten por primera vez se los pedirá.
Si quieren cambiarlo por separado la instrucción es:
mysqladmin -u root password [tu_contraseña_aqui]
## Ejemplo ##
mysqladmin -u root password minuevacontrasenias
Para conectarse al servidor desde consola la instrucción es:
mysql -u root -p
## o también pueden usar ##
mysql -h localhost -u root -p
Pero como nosotros hemos instalado mysql-workbench-community-6.1.7-1.el6.x86_64.rpm
para evitar usar la consola, lo que tienen que hacer es abrir el editor y crear una nueva conexión.
Y por mi parte eso es todo, crear una conexión al servidor desde el editor
mysql-workbench-community-6.1.7-1.el6.x86_64.rpm
es bastante intuitivo, de modo que no lo explicaré.