Get a psql shell (typically, the password is 'libreplan' you can find it in /etc/tomcat6/Catalina/localhost/libreplan.xml file):
$ psql -U libreplan -h localhost -W libreplan
and enter the next SQL sentence:
UPDATE user_table set password = 'e02a1a8809e830cf7b7c875e43c16e684ed02a818c7ac25aeadd515432f908ea041447720c194d6b0ec19a1c3dd97f7b378efaab4dd8efd46de568adf3f44c9a' WHERE login_name = 'admin';
Take special care with blanks and spaces.
Bye,
Rego
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
hello dear,
I installed to manuel. and when I write browser "localhost:8080/libreplan/" and entered username/password admin/admin. I got "incorrect authentication". How I solve the problem. please help me
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
How do I reset the admin password if lost?
Get a psql shell (typically, the password is 'libreplan' you can find it in /etc/tomcat6/Catalina/localhost/libreplan.xml file):
and enter the next SQL sentence:
Take special care with blanks and spaces.
Bye,
Rego
thank you, that worked :-)
That worked for me too, but the password wasn't libreplan and that file wasnt there, so first I did:
sudo passwd postgres
su postgres -c psql
alter USER libreplan WITH PASSWORD 'libreplan';
Then your trick worked.
hello dear,
I installed to manuel. and when I write browser "localhost:8080/libreplan/" and entered username/password admin/admin. I got "incorrect authentication". How I solve the problem. please help me