2017-05-09 71 views
0

我將Hypersonic的本機lportal DB轉換爲PostgreSQL。新增portal-ext.properties文件與我的PostgreSQL的配置和添加postgresql-42.1.1D:\files\liferay-ce-portal-7.0-ga3\tomcat-8.0.32\lib\extIOException當我嘗試從HSQL遷移到PostgreSQL後啓動Liferay

# PostgreSQL 
# 
jdbc.default.driverClassName=org.postgresql.Driver 
jdbc.default.url=jdbc:postgresql://localhost:5432/test 
jdbc.default.username=postgres 
jdbc.default.password=root 

,當我開始我的Liferay它顯示了我的異常。但如果我刪除portal-ext.properties它會正常工作!什麼問題?

08:36:35,748 ERROR [Framework Event Dispatcher: Equinox Container: c01a6f97-9234-0017-1185-a19cbf92201a][com_liferay_portal_configuration_persistence:97] FrameworkEvent ERROR 
org.osgi.framework.BundleException: Exception in com.liferay.portal.configuration.persistence.activator.ConfigurationPersistenceBundleActivator.start() of bundle com.liferay.portal.configuration.persistence. 
    at org.eclipse.osgi.internal.framework.BundleContextImpl.startActivator(BundleContextImpl.java:795) 
    at org.eclipse.osgi.internal.framework.BundleContextImpl.start(BundleContextImpl.java:724) 
    at org.eclipse.osgi.internal.framework.EquinoxBundle.startWorker0(EquinoxBundle.java:951) 
    at org.eclipse.osgi.internal.framework.EquinoxBundle$EquinoxModule.startWorker(EquinoxBundle.java:328) 
    at org.eclipse.osgi.container.Module.doStart(Module.java:566) 
    at org.eclipse.osgi.container.Module.start(Module.java:434) 
    at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.incStartLevel(ModuleContainer.java:1582) 
    at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.incStartLevel(ModuleContainer.java:1562) 
    at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.doContainerStartLevel(ModuleContainer.java:1533) 
    at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.dispatchEvent(ModuleContainer.java:1476) 
    at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.dispatchEvent(ModuleContainer.java:1) 
    at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:230) 
    at org.eclipse.osgi.framework.eventmgr.EventManager$EventThread.run(EventManager.java:340) 
Caused by: java.io.IOException: Unexpected token 78; expected: 61 (line=0, pos=435) 
    at org.apache.felix.cm.file.ConfigurationHandler.readFailure(ConfigurationHandler.java:698) 
    at org.apache.felix.cm.file.ConfigurationHandler.readInternal(ConfigurationHandler.java:302) 
    at org.apache.felix.cm.file.ConfigurationHandler.read(ConfigurationHandler.java:265) 
    at com.liferay.portal.configuration.persistence.ConfigurationPersistenceManager.toDictionary(ConfigurationPersistenceManager.java:536) 
    at com.liferay.portal.configuration.persistence.ConfigurationPersistenceManager.populateDictionaries(ConfigurationPersistenceManager.java:454) 
    at com.liferay.portal.configuration.persistence.ConfigurationPersistenceManager.start(ConfigurationPersistenceManager.java:173) 
    at com.liferay.portal.configuration.persistence.activator.ConfigurationPersistenceBundleActivator.start(ConfigurationPersistenceBundleActivator.java:63) 
    at org.eclipse.osgi.internal.framework.BundleContextImpl$3.run(BundleContextImpl.java:774) 
    at org.eclipse.osgi.internal.framework.BundleContextImpl$3.run(BundleContextImpl.java:1) 
    at java.security.AccessController.doPrivileged(Native Method) 
    at org.eclipse.osgi.internal.framework.BundleContextImpl.startActivator(BundleContextImpl.java:767) 
    ... 12 more 

回答

0

我有同樣的問題從hsqldb遷移到mysql。 在我的情況下,問題出現在configuration_表中相對於ldap服務器配置的json字符串中。 我通過從數據遷移腳本中刪除相對於ldap配置服務器的2行來解決此問題。

+0

請提供一些基於OP的帖子來支持您的答案的例子 –

相關問題