如何更改Apache OpenMeetings 2.1.0中的数据库名称?
我要更改persistence.xml的哪些部分,或者我还必须编辑其他一些文件吗?
我想将 mysql 数据库的名称从“ openmeetings ”更改为其他名称,可能是“ db_openmeetings ”。
非常感谢一些帮助。
如何更改Apache OpenMeetings 2.1.0中的数据库名称?
我要更改persistence.xml的哪些部分,或者我还必须编辑其他一些文件吗?
我想将 mysql 数据库的名称从“ openmeetings ”更改为其他名称,可能是“ db_openmeetings ”。
非常感谢一些帮助。
它在连接属性中:
见: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&useUnicode=true&createDatabaseIfNotExist=true&characterEncoding=utf-8&connectionCollation=utf8_general_ci&cachePrepStmts=true&cacheCallableStatements=true&cacheServerConfiguration=true&useLocalSessionState=true&elideSetAutoCommits=true&alwaysSendSetIsolation=false&enableQueryTimeouts=false&prepStmtCacheSize=3000&prepStmtCacheSqlLimit=1000
, MaxActive=100
, MaxWait=10000
, TestOnBorrow=true
, poolPreparedStatements=true
, Username=root
, Password=" />