Debian5下安装Opentaps1.5笔记

安装环境

Debian5

JDK6

MySql5

Opentaps1.5

 

安装步骤

1.解压Opentaps到/tmp/Opentaps目录,修改/tmp/Opentaps/framework/entity/config/entityengine.xml文件, 将其中的 <delegator name="default"...> 段中的 "datasource-name" 从原来的 "localderby" 改为 "localmysql"

 

2.进入MySql,创建数据库

mysql> create database ofbiz;

添加用户权限

mysql> grant all on ofbiz.* to ofbiz@localhost identified by 'ofbiz';

 

3.安装Opentaps,命令行进入该目录

$cd /tmp/Opentaps

用ant安装Opentaps

$ant run-install

安装大概需要2分钟...

 

4.启动Opentaps

$startofbiz.sh

 

5.访问Opentaps,打开浏览器,在地址栏输入 http://localhost:8080/opentaps/

默认管理员用户名:flexadmin

密码:ofbiz

你可能感兴趣的:(Debian5下安装Opentaps1.5笔记)