我在组织中使用ofbiz。我想将Ofbiz从derby迁移到MySQL。
我参考步骤
(https://cwiki.apache.org/confluence/display/OFBIZ/How+to+migrate+OfBiz+from+Derby+to+MySQL+database)在这里,但是在最后我被卡住了。
最后,当我键入(java -jar ofbiz.jar -install)这个命令时,我得到一个异常,
C:\ Users \ sagar_vinod_khanke \ Sagar \ Apache OFBiz \ Ofbiz \ 13.07> java -jar ofbiz.jar-
安装
线程“主要” org.ofbiz.base.start.StartupException中的异常:无法
蚀刻配置实例
at org.ofbiz.base.start.Start.init(Start.java:202)
at org.ofbiz.base.start.Start.main(Start.java:127)
引起原因:java.io.IOException:无法加载配置属性:org / ofbiz
/base/start/-install.properties
at org.ofbiz.base.start.Config.getPropertiesFile(Config.java:229)
at org.ofbiz.base.start.Config.readConfig(Config.java:297)
at org.ofbiz.base.start.Config.getInstance(Config.java:58)
at org.ofbiz.base.start.Start.init(Start.java:200)
... 1 more
你能帮我么?
最佳答案
不要使用-与安装。
请参阅修订的Step-V
第五步
1. Run the following command from command prompt:
java -jar ofbiz.jar install
2. Start OfBiz
3. Use webtools to import all data from XML:
a. Navigate to http://localhost:8080/catalog/
b. Go to Applications>WebTools
c. Go to section 'Entity XML Tools' and click the link 'XML Data Import Dir' -> In the 'Absolute directory path:' enter the full path of the directory where you exported the data in Step - II
关于mysql - 将Apache OFBiz从Apache Derby迁移到mysql,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31383410/