“Configurar mysql ubuntu” Código de respuesta

Cómo instalar mysql ubuntu

sudo apt update
sudo apt install mysql-server
sudo service mysql start
sudo mysql_secure_installation
sudo mysql -u root 

In mysql console:
DROP USER 'root'@'localhost';
CREATE USER 'root'@'%' IDENTIFIED BY 'YOURPASSWORD';
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' WITH GRANT OPTION;
FLUSH PRIVILEGES;
Outrageous Octopus

Iniciar el terminal de Linux del servidor MySQL

sudo /etc/init.d/mysql start
or 
systemctl start mysql.service
atem

Configurar mysql ubuntu

sudo apt install mysql-server
sudo mysql_secure_installation utility
Yellowed Yak

Instale mysql en ubuntu

sudo apt-get update
sudo apt-get install mysql-server
Hastings Keith

Ubuntu mysql instalar y configurar

GRANT CREATE, ALTER, DROP, INSERT, UPDATE, DELETE, SELECT, REFERENCES, RELOAD ON *.* TO 'mysqluser'@'localhost' WITH GRANT OPTION;
Colorful Chipmunk

Respuestas similares a “Configurar mysql ubuntu”

Preguntas similares a “Configurar mysql ubuntu”

Más respuestas relacionadas con “Configurar mysql ubuntu” en Shell/Bash

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código