Ir al contenido principal

Como resolver ERROR 1819 (HY000)

Cambiar nivel de politica de MySQL




To do so, run the following command from the mysql prompt:


mysql> SET GLOBAL validate_password.policy = 0;

Or,


mysql> SET GLOBAL validate_password.policy=LOW;

Then check if the password validation policy has been changed to low:


mysql> SHOW VARIABLES LIKE 'validate_password%';

Comentarios

Populares🔥

Configurar Samba

 Instalacion y Configuracion de Samba - Linux Instalar samba sudo apt install samba Acceder al archivo de configuracion  sudo nano /etc/samba/smb.conf Agregar en la ultima parte del archivo: [Compartido] path = /home/user/Documentos/Compartido/ browseable = yes guest ok = yes guest only = no public = yes create mask = 0775 create mode = 0775 directory mask = 0775 Guardar y Reiniciar el servicio sudo systemctl restart nmbd smbd Habilitar puertos de firewall sudo ufw allow 139/tcp sudo ufw allow 445/tcp sudo ufw allow 137/udp sudo ufw allow 138/udp