プロジェクト

全般

プロフィール

Vote #75656

未完了

problems with ms sql database - permissions solved

Admin Redmine さんが約4年前に追加. 約4年前に更新.

ステータス:
New
優先度:
通常
担当者:
-
カテゴリ:
Documentation_24
対象バージョン:
-
開始日:
2022/05/09
期日:
進捗率:

0%

予定工数:
category_id:
24
version_id:
0
issue_org_id:
18122
author_id:
113422
assigned_to_id:
0
comments:
1
status_id:
1
tracker_id:
2
plus1:
0
affected_version:
closed_on:
affected_version_id:
ステータス-->[New]

説明

On installation tutorial in step regarding to creating database on MS SQL Server, after the database and user with specific permission are created please do also the following actions.

Go to Microsoft management studio . Open the REDMINE database and then open the security folder and find REDMINE user in it.

Give the selected permission to REDMINE user in section role_members (like You can see in attach).

Also please NOTE : Use IP adresess for host in database configuration files. (database.yml)

*DOWN BELOW YOU CAN FIND THE SECTION FROM REDMINE INSTALLATION TUTORIAL for which the problem is manifested **************************************

SQL Server
The database, login and user can be created within SQL Server Management Studio with a few clicks.

If you prefer the command line option with SQLCMD, here's some basic example:

Hide SQL

USE [master]
GO

-- Very basic DB creation
CREATE DATABASE [REDMINE]
GO

-- Creation of a login with SQL Server login/password authentication and no password expiration policy
CREATE LOGIN [REDMINE] WITH PASSWORD=N'redminepassword', DEFAULT_DATABASE=[REDMINE], CHECK_EXPIRATION=OFF, CHECK_POLICY=OFF
GO

-- User creation using previously created login authentication
USE [REDMINE]
GO
CREATE USER [REDMINE] FOR LOGIN [REDMINE]
GO
-- User permissions set via roles
EXEC sp_addrolemember N'db_datareader', N'REDMINE'
GO
EXEC sp_addrolemember N'db_datawriter', N'REDMINE'
GO


journals

I don't know what tutorial you said.
You can edit or create wiki on redmine.org.
--------------------------------------------------------------------------------

Admin Redmine さんが約4年前に更新

  • カテゴリDocumentation_24 にセット

他の形式にエクスポート: Atom PDF

いいね!0
いいね!0