I have 3 serendipity blogs on my site. They all run great and I've never had any problems with them. Long story short, I've been performing some maintenance operations on my server and I noticed that the password to my serendipity database is way too simple. So I thought I would be a good boy and make it more complex. Unfortunately, this wasn't so easy. Here is what I did:
1) Updated the 'dbPass' value in "serendipity_config_local.inc.php" to 'MY_NEW_P@$$'
2) Ran the following SQL to update serendipity's postgres password:
Code: Select all
su - postgres
psql -d template1 -c "ALTER USER serendipity WITH PASSWORD 'MY_NEW_P@$$';"Code: Select all
serendipity error: unable to connect to database - exiting.Thanks!