如何在 Apache OpenMeetings 2.1.0 中更改数据库的名称?
我更改 persistence.xml 的哪些部分,或者我是否还要编辑其他一些文件?
我想将mysql数据库的名称从“ openmeetings ”更改为其他内容,可能是“ db_openmeetings ”。
真的很感激一些帮助。
答案 0 :(得分:2)
它在连接属性中:
参见:mysql:// localhost:3306 / openmeetings
localhost = host 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=" />