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
This is for dw-v7 branch
The ansible scripts as they are set install mysql with temporary instead of blank passwords, the task "Update mysql root password for localhost" does not cater for this. I got around it by doing
grep temporary /var/log/mysql*
mysql --socket /var/run/mysqld/mysql-stats.sock --password <temp stats root password>
ALTER USER 'root'@'localhost' identified by 'xxx';
exit
mysql --socket /var/run/mysqld/mysql-stroom.sock --password <temp stroom root password>
ALTER USER 'root'@'localhost' identified by 'xxx';
exit
The text was updated successfully, but these errors were encountered:
This is for dw-v7 branch
The ansible scripts as they are set install mysql with temporary instead of blank passwords, the task "Update mysql root password for localhost" does not cater for this. I got around it by doing
The text was updated successfully, but these errors were encountered: