欢迎使用普元产品知识库,本知识库包含普元应用开发平台EOSPlatform,流程平台BPS,企业服务总线ESB,微服务平台Microservice,运维管理平台Devops,数据集成平台DI

页面树结构

欢迎使用普元文档库

Skip to end of metadata
Go to start of metadata

【问题描述】

ESB版本6.5.1,数据库sqlserver 2008,在Server 的config页面配置R/R连接并无sqlserver 2008选项,在产品安装文档里面写明支持sqlserver2008,是否需要打补丁,ESB6.5.1与sqlserver2008之间的兼容性如何,在使用上是否有其他容易出问题的地方。


【解答】

请修改Server安装路径\server\EOS\_srv\config\user-config.xml配置文件,找到第72行左右未注释的<group name="default">标签中的数据源信息,sqlserver2008连接如下参考,其中更换连接仅需修改Url、UserName、Password即可:

<group name="default">

<configValue key="Database-Type">SQLServer</configValue>

<configValue key="Jdbc-Type"></configValue>

<configValue key="C3p0-DriverClass">com.microsoft.sqlserver.jdbc.SQLServerDriver</configValue>

<configValue key="C3p0-Url">jdbc:sqlserver://192.168.30.237:2433;DatabaseName=esb651</configValue>

<configValue key="C3p0-UserName">sa</configValue>

<configValue key="C3p0-Password">000000</configValue>

<configValue key="C3p0-PoolSize">5</configValue>

<configValue key="C3p0-MaxPoolSize">5</configValue>

<configValue key="C3p0-MinPoolSize">5</configValue>

<configValue key="Transaction-Isolation">ISOLATION_READ_COMMITTED</configValue>

<configValue key="Test-Connect-Sql">SELECT count(*) from REG_PATH</configValue>

<configValue key="Retry-Connect-Count">-1</configValue>

</group> 然后保存重启server,如果安装运行版server的话可以直接通过安装程序进行sqlserver2008数据库配置。

  • 无标签