Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Table of Contents
minLevel1
maxLevel2

...

Diese Seite betrifft die OnPremises-Variante.
Bei der This page concerns the OnPremises option.
With the "Software as a Service" -Variante sind keine Serverinstallationen durch den Kunden notwendig.

primedocs kann sowohl mit Windows-Authentifizierung als auch mit SQL-Authentifizierung betrieben werden. Wir empfehlen die SQL-Authentifizierung, da sie in den meisten Fällen ein einfacheres Setup gewährleistet. Die nachfolgende Beschreibung nutzt die SQL-Authentifizierung.

Für den Datenzugriff wird ein SQL-Benutzer benötigt.

SQL-Benutzer anlegen mittels SQL-Skript

Die folgenden Schritte können über dieses SQL-Skript automatisiert werden.

...

option, no server installations by the customer are necessary.

primedocs can be run with Windows authentication as well as with SQL authentication. We recommend SQL authentication as it ensures a simpler setup in most cases.

An SQL user is required to access the data..

...

Create SQL user using SQL script

The following steps can be automated via the following SQL script.

The PASSWORD_HERE and possibly the corresponding login name must be exchanged, in the example primedocsuser.

Code Block
languagesql
CREATE LOGIN [primedocs user] WITH PASSWORD='PASSWORD_HERE', CHECK_EXPIRATION=OFF, CHECK_POLICY=OFF
GO

EXEC sys.sp_addsrvrolemember @loginame = N'primedocsuser', @rolename = N'dbcreator'
GO

SQL-Benutzer anlegen mittels UI

Legen Sie als erstes ein neues Login an.

View file
nameInvalid file id - UNKNOWN_MEDIA_ID
pageEN Berechtigungen

...

Create SQL user via UI

First, create a new login.

...

Make sure that "SQL Server Authentication" is selected and enter the password.

Panel
panelIconIdatlassian-warning
panelIcon:warning:
bgColor#FFEBE6

CAUTION
Je nach Password Policy kann das Passwort des Kontos ablaufen. Stellen Sie sicher, dass der SQL-Benutzer stehts betriebsbereit ist oder deaktivieren Sie Depending on the password policy, the account password may expire. Make sure that the SQL user is always operational or disable "Enforce Password Policy" und as well as "User must change password at next login".

View file
nameInvalid file id - UNKNOWN_MEDIA_ID
pageEN Berechtigungen

Server-Rollen / -Berechtigungen

...

Server roles / permissions

The SQL user or service account needs at least the "public" role to log in to the SQL Server as well as the "db_owner" -Rollerole.

Die primedocs-Serverapplikationen können die benötigten Datenbanken erstellen. Voraussetzung dafür ist, dass der SQL-Benutzer The primedocs server applications can create the required databases. This requires that the SQL user is "dbcreator" ist. Diese Rolle ist optional. Falls Sie den Weg ohne . This role is optional. If you prefer the option without "dbcreator" bevorzugen, müssen Sie selbst leere Datenbanken anlegen und dem SQL-Benutzer bzw. dem Service Account die , you have to create empty databases yourself and assign the "db_owner" -Rolle zuweisen.

View file
nameInvalid file id - UNKNOWN_MEDIA_ID
pageEN Berechtigungen

Das Dashboard erlaubt es, neue Datenbanken anzulegen bzw. bestehende zu kopieren. Daher ist empfohlen, die Rolle "dbcreator" beizubehaltenrole to the SQL user or service account.

...

The Admin Dashboard allows to create new databases or copy existing ones. Therefore, it is recommended to keep the "dbcreator" role.