My goal is to connect to a newly created database named mydb
through a new user named jpriest
instead of the default user monetdb
.
Following this question monetdb: switch off password on mclient and the answer provided, I configured a .monetdb file in the current working directory containing the following content:
user=jpriest
password=mypassword
language=sql
however I received the following error message
InvalidCredentialsException:checkCredentials:invalid credentials for user 'jpriest'
I am trying to follow the Getting Started section that states :
To connect/login to the database server the first time,
you must use monetdb as user name and enter its default password: monetdb.
Once connected you may create new users, create new schemas, create tables etc.
It is also strongly recommended to change the default password of the monetdb system user
via ALTER USER SET PASSWORD command.
Since I have not managed to make it work any help is greatly appreciated!