-
I have tried to run 5.1.0 against my existing data directory (which was created with 4.4.1, using the default H2 database). When I start commafeed I get this error: "Datasource '': Wrong user name or password [28000-232]" And this is followed by a stack trace I have tried passing in the user name and password from the old config.yml on the command line like this, but it doesn't work: ./commafeed-5.1.0-h2-linux-x86_64-runner -Dquarkus.datasource.username=sa:quarkus.database.password=REDACTED What am I doing wrong? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
II think it should work out of the box, did you change the default password in your If so, I don't think you can separate properties with a |
Beta Was this translation helpful? Give feedback.
-
Thank you, I have solved my problem(s). You are right, I did change the default password. What was worked was I now have a working, migrated database. I realise now beyond not separating arguments correctly, I mistyped the name of the property for the password (it is quarkus.datasource.password not quarkus.database.password). Thanks again for your help. |
Beta Was this translation helpful? Give feedback.
Thank you, I have solved my problem(s).
You are right, I did change the default password.
What was worked was
./commafeed-5.1.0-h2-linux-x86_64-runner -Dquarkus.datasource.username=sa -Dquarkus.datasource.password=REDACTED
I now have a working, migrated database.
I realise now beyond not separating arguments correctly, I mistyped the name of the property for the password (it is quarkus.datasource.password not quarkus.database.password).
Thanks again for your help.