Enable MongoDB for Meetings
HCL Sametime Meetings 11.6 requires MongoDB for creating and reserving meeting rooms. Sametime Meetings can use the existing MongoDB used by Sametime Community and Proxy or a new independent MongoDB.
About this task
Enable Existing MongoDB also used by Sametime Community and Proxy servers
Follow this step to add the sametimeUser profile to the existing MongoDB that is used by Sametime Community/Proxy
> use admin
> db.grantRolesToUser( "sametimeUser", [ {role:"readWrite", db:"meeting"}])
Enable New MongoDB
Follow this step to create the sametimeUser when a dedicated MongoDB for Sametime Meetings has been created.
Create the sametime User profile with authority to the "meeting" database. Run the following commands from the MongoDB console to create a sametime User with the required authority:
> use admin
> db.createUser({user: "sametimeUser", pwd: "sametime", roles:[{role:"readWrite", db:"meeting"}]})