BIRT 容器的 Apache OFBiz 安装问题
Apache OFBiz installation trouble with BIRT container
我是 Apache OFBiz 的新手。我已经按照说明下载并安装了 OFBiz。我已经加载数据成功了。
但是当 运行 OFBiz 使用 gradlew
时,它停在了 birt-container。我在这里添加了控制台信息。
构建过程在 91% 处停止并显示 "Started container birt-container" 消息 5 小时,我已停止该过程。仍然不知道它为什么停在这里。
2017-05-04 11:01:42,143 |main |CatalinaContainer |I| Connector HTTP/1.1 @ 8443 - secure [org.apache.coyote.http11.Http11NioProtocol] started.
2017-05-04 11:01:42,143 |main |CatalinaContainer |I| Started Apache Tomcat/8.0.37
2017-05-04 11:01:42,143 |main |ContainerLoader |I| Started container catalina-container
2017-05-04 11:01:42,143 |main |ContainerLoader |I| Starting container birt-container
2017-05-04 11:01:42,143 |main |BirtContainer |I| Start BIRT container
2017-05-04 11:01:42,152 |main |BirtContainer |I| Startup BIRT platform
2017-05-04 11:01:43,034 |main |BirtContainer |I| Create factory object
2017-05-04 11:01:43,052 |main |BirtContainer |I| Create report engine
2017-05-04 11:01:43,130 |main |BirtContainer |I| BIRT supported formats: xlsx, postscript, docx, pptx, pdf, ppt, xls_spudsoft, doc, html,
odp, xls, odt, ods
2017-05-04 11:01:43,130 |main |ContainerLoader |I| Started container birt-container
> Building 91% > :ofbiz
这与
重复
我认为 OFBiz 不会挂起,您应该能够毫无问题地访问和使用它。 Gradle 百分比在这里有点误导,只要 OFBiz 是 运行.
,它就不会达到 100%
Gradle 百分比在这里有点误导,只要 OFBiz 是 运行,它就不会达到 100%。我想你只是假设在构建服务之后就会启动。不是这样的。一旦服务启动,它将达到 91%。但是服务已经启动。您可以访问电子商务和其他服务。一旦你是 运行 服务得到以下 URL (ex).
localhost:8443/ap/control/main
您将被重定向到管理员登录页面。将用户设为 "admin",将密码设为 "ofbiz"。根据需要在会计、制造、人力资源等方面进行更改和测试数据。
注意:完成您的进程后,使用工具文件夹下的 "stopofbiz" shell 脚本文件停止进程。停止服务后,您可以在服务控制台中看到构建将达到 100%。
准备 OFBiz:
全部清除:
gradlew cleanAll loadDefault testIntegration
注意:根据您的 Internet 连接速度,如果您是第一次使用 OFBiz,则此步骤可能需要很长时间才能完成,因为它需要下载所有依赖项。所以请耐心等待!
MS Windows: gradlew cleanAll loadDefault
类 Unix OS: ./gradlew cleanAll loadDefault
开始OFBiz:
MS Windows: gradlew ofbiz
类 Unix OS: ./gradlew ofbiz
参考:下载后http://www.apache.org/dyn/closer.lua/ofbiz/apache-ofbiz-16.11.02.zip,解压,寻找
apache-ofbiz-16.11.02/tools/documentation/README.md.html
我是 Apache OFBiz 的新手。我已经按照说明下载并安装了 OFBiz。我已经加载数据成功了。
但是当 运行 OFBiz 使用 gradlew
时,它停在了 birt-container。我在这里添加了控制台信息。
构建过程在 91% 处停止并显示 "Started container birt-container" 消息 5 小时,我已停止该过程。仍然不知道它为什么停在这里。
2017-05-04 11:01:42,143 |main |CatalinaContainer |I| Connector HTTP/1.1 @ 8443 - secure [org.apache.coyote.http11.Http11NioProtocol] started.
2017-05-04 11:01:42,143 |main |CatalinaContainer |I| Started Apache Tomcat/8.0.37
2017-05-04 11:01:42,143 |main |ContainerLoader |I| Started container catalina-container
2017-05-04 11:01:42,143 |main |ContainerLoader |I| Starting container birt-container
2017-05-04 11:01:42,143 |main |BirtContainer |I| Start BIRT container
2017-05-04 11:01:42,152 |main |BirtContainer |I| Startup BIRT platform
2017-05-04 11:01:43,034 |main |BirtContainer |I| Create factory object
2017-05-04 11:01:43,052 |main |BirtContainer |I| Create report engine
2017-05-04 11:01:43,130 |main |BirtContainer |I| BIRT supported formats: xlsx, postscript, docx, pptx, pdf, ppt, xls_spudsoft, doc, html,
odp, xls, odt, ods
2017-05-04 11:01:43,130 |main |ContainerLoader |I| Started container birt-container
> Building 91% > :ofbiz
这与
我认为 OFBiz 不会挂起,您应该能够毫无问题地访问和使用它。 Gradle 百分比在这里有点误导,只要 OFBiz 是 运行.
,它就不会达到 100%Gradle 百分比在这里有点误导,只要 OFBiz 是 运行,它就不会达到 100%。我想你只是假设在构建服务之后就会启动。不是这样的。一旦服务启动,它将达到 91%。但是服务已经启动。您可以访问电子商务和其他服务。一旦你是 运行 服务得到以下 URL (ex).
localhost:8443/ap/control/main
您将被重定向到管理员登录页面。将用户设为 "admin",将密码设为 "ofbiz"。根据需要在会计、制造、人力资源等方面进行更改和测试数据。
注意:完成您的进程后,使用工具文件夹下的 "stopofbiz" shell 脚本文件停止进程。停止服务后,您可以在服务控制台中看到构建将达到 100%。
准备 OFBiz:
全部清除:
gradlew cleanAll loadDefault testIntegration
注意:根据您的 Internet 连接速度,如果您是第一次使用 OFBiz,则此步骤可能需要很长时间才能完成,因为它需要下载所有依赖项。所以请耐心等待!
MS Windows: gradlew cleanAll loadDefault
类 Unix OS: ./gradlew cleanAll loadDefault
开始OFBiz:
MS Windows: gradlew ofbiz
类 Unix OS: ./gradlew ofbiz
参考:下载后http://www.apache.org/dyn/closer.lua/ofbiz/apache-ofbiz-16.11.02.zip,解压,寻找 apache-ofbiz-16.11.02/tools/documentation/README.md.html