Show / Hide Table of Contents
Edit on GitHub

Running Rest PKI Core without db_owner privileges

Rest PKI Core can operate in two ways regarding the access to the database:

  1. Having owner privileges over the database and automatically updating the database model after an update when needed (default)
  2. Having only read and write privileges over the database, requiring the database model to be updated by the administrator using a command line tool

Granting owner privileges to the application is simpler, which is why this mode is the default for the standard installation. However, granting only read and write privileges ensures you greater control over the database. If you prefer to run Rest PKI Core without owner privileges over the database, follow the steps on this article.

Note

For now, using a limited user is only supported on SQL Server. Please contact us if you need to run Rest PKI Core with PostgreSQL using a user without full privileges.

Create unprivileged credentials

Create the database normally as specified on the Preparing a database article.

Then, instead of creating the RestPkiCoreAdmin user and granting it the db_owner role, create a limited user RestPkiCoreApp and grant it only the roles db_datareader and db_datawriter:

USE master;
CREATE LOGIN RestPkiCoreApp WITH PASSWORD = 'XXXXXX';
GO

USE RestPkiCore;
CREATE USER RestPkiCoreApp FOR LOGIN RestPkiCoreApp;
EXEC sp_addrolemember 'db_datareader', 'RestPkiCoreApp';
EXEC sp_addrolemember 'db_datawriter', 'RestPkiCoreApp';
GO

The connection string would then be:

Data Source=.;Initial Catalog=RestPkiCore;User ID=RestPkiCoreApp;Password=XXXXX
Note

This connection string assumes the database server is installed on the same server as the web app. If this is not true, the value after Data Source= would have to be changed.

Disable automatic database update

Running Rest PKI Core without owner privileges means that the application cannot update the database model on its own. Thus, you should disable the automatic database model update to avoid errors by setting General__AutoUpdateDatabase to False on the configuration file.

See also

  • update-db command
  • Preparing a database for installation of Rest PKI Core
Back to top Copyright © 2015-2020 Lacuna Software