Enable MongoDB for Meetings

HCL Sametime Meetings 11.5 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

The sametime User profile requires the authority to the "meeting" database. Run the following commands from the MongoDB console:

> use admin
> db.grantRolesToUser( "sametimeUser", [ {role:"readWrite", db:"meeting"}])

Enable New MongoDB

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:

Note: The user and password specified below are examples and, you can change them at this time.

> use admin
> db.createUser({user: "sametimeUser", pwd: "sametime", roles:[{role:"readWrite", db:"meeting"}]})