Hi there,
which steps I have to go to change the default MySQL password "heslo" to
"xyz"?
1. Change Password for "ser" and "serro" in DB mysql:
# mysql -u root -p mysql
mysql> update user set password=PASSWORD('xyz') where User='ser';
mysql> update user set password=PASSWORD('xyz') where User='serro';
2. Change ser.cfg:
modparam("usrloc", "db_url", "sql://ser:xyz@localhost/ser")
modparam("usrloc", "db_mode", 0)
modparam("usrloc", "db_mode", 2)
modparam("auth_db", "db_url",
"sql://ser:xyz@localhost/ser")
modparam("auth_db", "calculate_ha1", yes)
modparam("auth_db", "password_column", "password")
modparam("rr", "enable_full_lr", 1)
Are this all steps?
I don't think so, because it will not work for me. :-(
Regards
Bastian