ofbiz 安装

1. 由 binary 安装:

由 binary 安装非常简单, 以下是安装方法:

下载ofbiz-2.0-beta1-complete.tar.gz, 注意不是ofbiz-2.0-beta1.tar.gz.

tar xvzf ofbiz-2.0.beta1-complete.tar.gz

cd tomcat/bin

./ofbiz.sh start

galeon http://localhost:8080/webtools

2. 由 CVS 安装:

由 CVS 安装要稍微复杂一些. 由于 ofbiz 的更新非常快, 所以由 CVS 安装将获得最新功能. 以下是安装方法:

mkdir ofbiz

ln -s /PATH-TO-TOMCAT tomcat

cd ofbiz

export CVSROOT=:pserver:anonymous@cvs.ofbiz.sourceforge.net:/cvsroot/ofbiz

cvs login

cvs co catalog

cvs co commonapp

cvs co core

cvs co ecommerce

cvs co lib

cvs co ordermgr

cvs co partymgr

cvs co setup

cvs co website

cvs co webtools

cvs co workeffort

cp setup/ofbiz/build.xml .

cp setup/ofboz/updateall.sh .

export CATALINA_HOME=PATH-TO-TOMCAT

export OFBIZ_HOME=`pwd`

ant

ant install

创建 postgreSQL 用户 ofbiz, 口令 ofbiz

createdb -E EUC_CN ofbiz

cd ../tomcat/bin

./ofbiz.sh start

galeon http://localhost:8080/webtools

 
----
---
there is no spoon.

obiz的更多相关文章

随机推荐

  1. MVC中使用EF(2):实现基本的CRUD功能

    MVC中使用EF(2):实现基本的CRUD功能 By  Tom Dykstra |July 30, 2013 Translated by litdwg   Contoso University示例网站 ...

  2. syslog_test.c 简单的syslog函数

    #cat syslog_test.c #include<stdio.h> #include<stdlib.h> #include<syslog.h> int mai ...

  3. poj 1274 The Perfect Stall(二分图匹配)

    Description Farmer John completed his new barn just last week, complete with all the latest milking ...

  4. CSS3实现三角形

    很多时候我们用到三角形这个效果: 我们可以用CSS3实现这个效果,怎去做呢?先阐述一下原理,我们定义一个空的div,设置这个div宽高为0,给这个div加上一个100px边框(这里是方便观察),得到的 ...

  5. 在线C语言编译器/解释器

    在线C语言编译器/解释器 本文介绍两个C语言在线解释器/编译器,这些工具可以提高代码片段检测方便的工作效率,并可以保证这些代码的正确性,而且还可以和别人一起编辑/分享之间的代码,这样可以共同分析代码并 ...

  6. 不可视对象的自己主动实例化BUG

    PB有个隐藏BUG会占用内存.影响效率. 先来做个样例吧 (1)创建一个不可视对象n_base,勾选Autolnstantiate属性 初始化事件constructor里面写messagebox('c ...

  7. Struts2 页面url请求怎样找action

    1.我们使用最原始的方法去查找action.不同注解. struts.xml文件先配置 <!-- 新闻信息action --> <action name="newsInfo ...

  8. [Angular 2] Using the @Inject decorator

    TypeScript is used heavily as we build up our application, but TypeScript isn’t required. If you wan ...

  9. [RxJS] Reactive Programming - Sharing network requests with shareReplay()

    Currently we show three users in the list, it actually do three time network request, we can verfiy ...

  10. C# KeyValuePair<TKey,TValue>与Container

    KeyValuePair<TKey,TValue>  KeyValuePair<TKey,TValue>是一个结构体,相当于C#一个Map类型的对象,可以通过它记录一个键/值对 ...