1

如何更改Apache OpenMeetings 2.1.0中的数据库名称?

我要更改persistence.xml的哪些部分,或者我还必须编辑其他一些文件吗?

我想将 mysql 数据库的名称从“ openmeetings ”更改为其他名称,可能是“ db_openmeetings ”。

非常感谢一些帮助。

4

1 回答 1

2

它在连接属性中:

见:mysql://localhost:3306/openmeetings

localhost = 主机 3306 = 端口 openmeetings = 数据库名称

<property name="openjpa.ConnectionProperties"
                value="DriverClassName=com.mysql.jdbc.Driver
                    , Url=jdbc:mysql://localhost:3306/openmeetings?autoReconnect=true&amp;useUnicode=true&amp;createDatabaseIfNotExist=true&amp;characterEncoding=utf-8&amp;connectionCollation=utf8_general_ci&amp;cachePrepStmts=true&amp;cacheCallableStatements=true&amp;cacheServerConfiguration=true&amp;useLocalSessionState=true&amp;elideSetAutoCommits=true&amp;alwaysSendSetIsolation=false&amp;enableQueryTimeouts=false&amp;prepStmtCacheSize=3000&amp;prepStmtCacheSqlLimit=1000
                    , MaxActive=100
                    , MaxWait=10000
                    , TestOnBorrow=true
                    , poolPreparedStatements=true
                    , Username=root
                    , Password=" />
于 2013-07-30T07:33:00.133 回答