...
Table of Contents | ||||
---|---|---|---|---|
|
...
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 | ||
---|---|---|
| ||
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 | ||||
---|---|---|---|---|
|
...
Create SQL user via UI
First, create a new login.
...
Make sure that "SQL Server Authentication" is selected and enter the password.
Panel | ||||||
---|---|---|---|---|---|---|
| ||||||
CAUTION |
View file | ||||
---|---|---|---|---|
|
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 | ||||
---|---|---|---|---|
|
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.