Hi i am newbie to Couchbase and created a Springboot application with Couchbase 6.0.
When i installed Couchbase, it asked me to create username and password and i set username="admin" and password="password" and then i created "student" bucket.
I have done all the requisite config in application.properties file.
spring.couchbase.bootstrap-hosts=127.0.0.1
spring.couchbase.bucket.name=student
spring.couchbase.bucket.password=password
On server start, i am getting following error
Caused by: com.couchbase.client.java.error.InvalidPasswordException: null
Couchbase web console, there is a Security tab,
I added, username "admin" (which i created during Couchbase server installation) over there and given full admin access
On server restart again, I have faced same issue
then i added one more user "student" (same as my bucket name) over there and given full admin access
this time my server started successfully and i did not get any exception
So i have two questions here,
1: Do i need to create as many as username as i have buckets in my Couchbase server in security tab ?.
2: Let say i want to use username "admin" only (which i created during Couchbase server installation), how would i achieve this ?.
Can someone throw some light on this behaviour ?