Atlassian Confluence 与外部 SQL 数据库 2008 Express
我想为 Atlassian Confluence 使用外部数据库。 因此我安装了 SQL Server 2008 Express。 Confluence和sql服务器位于同一台机器上(只是一个virtdll atm。)
我启动了confluence向导来使用外部数据库,但现在我陷入了步骤2。(配置数据库)。
但我不知道应该在这些空格中输入什么。
密码和用户名的含义是什么? 服务器实例或单个数据库的用户名和密码?
我尝试像这样连接:
jdbc:jtds:sqlserver://localhost:1433/confluence 用户名:WIN-2008STD/管理员 密码:
但后来我得到了这个错误:
配置数据库失败。无法创建数据库架构。 java.sql.SQLException:网络错误 IOException:连接被拒绝: 连接
有关我的 SQL Server 的信息:
服务器名称:WIN-2008STD\SQLEXPRESS
合流应使用的数据库:合流
IP 地址:192.168.1.106
I want to use a external database for Atlassian Confluence.
Therefore i´ve installed a SQL Server 2008 Express.
Confluence and the sql server are on the same machine (just a virtuell atm.)
I started the confluence wizard to use a external database, but now im stuck at the step 2. (Configure Database).
But I dont know exactly what I should type in these spaces.
What did they mean with Password and User name?
The user name and password of the server instance or for the single database?
I tried to connect like this:
jdbc:jtds:sqlserver://localhost:1433/confluence
User Name: WIN-2008STD/Administrator
Passwort:
but then I got this error:
Configuring the database failed. Couldn't create the database schema.
java.sql.SQLException: Network error IOException: Connection refused:
connect
Information bout my SQL Server:
Server name: WIN-2008STD\SQLEXPRESS
Database which should be used by confluence : confluence
IP Adress : 192.168.1.106
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否在 SQL Server 中创建了一个对数据库“confluence”具有适当访问权限的用户?
您需要在您提供的屏幕截图中提供该用户的用户名和密码。
数据库 URL 应包含您尝试连接的数据库名称 - “confluence”,即:
您可能需要查看 SQL Server Management Studio Express 用于管理 SQL Server - 您应该能够创建用户并授予适当的访问权限 还。
还值得查看Atlassian 文档中用于连接的注释与 SQL Server 的融合。
Did you create a user within SQL Server who has appropriate access to the database "confluence"?
You need to supply the user name and password of this user in the screenshot you supplied.
The Database URL should include the name of the database - "confluence" - you are trying to connect to, i.e.:
You may want to look at SQL Server Management Studio Express for managing your SQL Server - you should be able to create the user and grant appropriate access also.
Also worthwhile reviewing the notes within the Atlassian documentation for connecting Confluence to SQL Server.
您需要添加 SQLExpress 的实例详细信息。您需要类似
jdbc:jtds:sqlserver://localhost:1433/confluence;instance=SQLEXPRESS
You need to add the instance details for SQLExpress. You would need something like
jdbc:jtds:sqlserver://localhost:1433/confluence;instance=SQLEXPRESS