You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
En el fichero config/db.php el host "localhost" deberia cambiarse por 127.0.0.1, ya que algunos sistemas no permiten este "localhost" y da fallo yii con la conexión a mysql. A su vez, se puede especificar el puerto por si la base de datos está dockerizada.
A su vez, seria interesante añadir, que si está dockerizada la base de datos, hay que cambiar las siguientes lineas, siendo "localhost" por "%", ya que la IP que recibe el docker es diferente. Quedaría así:
CREATE USER 'etsiinfbot'@'%' IDENTIFIED BY 'etsiinfbotpass'; GRANT ALL PRIVILEGES ON etsiinfbot . * TO 'etsiinfbot'@'%';
The text was updated successfully, but these errors were encountered:
En el fichero config/db.php el host "localhost" deberia cambiarse por 127.0.0.1, ya que algunos sistemas no permiten este "localhost" y da fallo yii con la conexión a mysql. A su vez, se puede especificar el puerto por si la base de datos está dockerizada.
A su vez, seria interesante añadir, que si está dockerizada la base de datos, hay que cambiar las siguientes lineas, siendo "localhost" por "%", ya que la IP que recibe el docker es diferente. Quedaría así:
CREATE USER 'etsiinfbot'@'%' IDENTIFIED BY 'etsiinfbotpass';
GRANT ALL PRIVILEGES ON etsiinfbot . * TO 'etsiinfbot'@'%';
The text was updated successfully, but these errors were encountered: