We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Microsoft JDBC Driver 6.0 for SQL Serverに含まれるsqljdbc_auth.dll を追加で配置することで Windows統合認証が利用可能であることを確認済み。 https://www.microsoft.com/en-us/download/details.aspx?id=11774
Microsoft JDBC Driver 6.0 for SQL Server
sqljdbc_auth.dll
Windows統合認証を利用する場合(integratedSecurity=true) GitBucketの起動アカウントが認証に使用される。 このため、ユーザー名/パスワードをdatabase.confに記載する必要がなくなる。
database.conf
db { url = "jdbc:sqlserver://localhost;instanceName=SQLEXPRESS;databaseName=GitBucket;integratedSecurity=true;applicationName=GitBucket" #url = "jdbc:sqlserver://localhost:1433/databaseName=${DatabaseHome};integratedSecurity=true;instance=SQLEXPRESS" user = "dummy" password = "dummy" }
※バリデーションチェックの都合上、user/passwordにはダミー値を設定する必要がある。
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Microsoft JDBC Driver 6.0 for SQL Server
に含まれるsqljdbc_auth.dll
を追加で配置することでWindows統合認証が利用可能であることを確認済み。
https://www.microsoft.com/en-us/download/details.aspx?id=11774
Windows統合認証を利用する場合(integratedSecurity=true)
GitBucketの起動アカウントが認証に使用される。
このため、ユーザー名/パスワードを
database.conf
に記載する必要がなくなる。統合認証を利用する場合の設定例
TODO
The text was updated successfully, but these errors were encountered: