...
Furthermore, setting the right user privileges for that vhost is also crucial. As an examle, you would need to do the two following steps to create a vhost and set privileges with the RabbitMQ CLI:
rabbitmqctl.bat add_vhost $uniqueDbName
rabbitmqctl.bat set_permissions -p $uniqueDbName guest ".*" ".*" ".*"
Next step would then be to construct and provide your host connection string for rabbit to the Digizuite DAM Center and Digizuite Core Services
- A configurable rabbitmq connection string. Format is: host=localhost;username=guest;password=guest;virtualhost=uniqueDbName
- This must be set in two places
- DAM Center app settings in web.config.
<appSettings>
<add key="rabbitMqConnectionString" value="host=localhost;username=guest;password=guest;virtualhost=uniqueDbName" />
......
</appSettings> - Digizuite Core services appsettings.json (DC Path/DigizuiteCore/appsettings.json):
"RabbitMQ": {
"ConnectionString": "host=localhost;username=user;password=password;virtualhost=uniqueDbName"
}
- DAM Center app settings in web.config.