全部博文(584)
分类: WINDOWS
2012-01-05 11:46:50
%2B_CRM_with_MySQL
1、确保系统内已经安装好Mysql
2、为Opentaps创建数据库:
现在,创建一个名为opentaps的数据库,并创建opentaps用户:
mysql> create database opentaps; mysql> create user opentaps; #创建opentaps用户 mysql> grant all privileges on opentaps.* to 'opentaps'@'localhost' identified by '在此设立此数据库密码如:332211' with grant option; #使opentaps用户管理opentaps数据库并设立密码。 mysql> flush privileges; #刷新数据库退出,mysql并用新建的opentaps用户重新登陆mysql
$ mysql -h 127.0.0.1 -u opentaps -p 332211 #刚才创建的数据库密码 mysql> use opentaps;如果你已经顺利完成上面动作,说明opentaps数据库及用户已经成功创建。
3、设置opentaps ERP + CRM 使用 MySQL 数据库
接下来修改framework/entity/config/entityengine.xml
找到 "
继续往下找到
field-type-name="mysql"
check-on-start="true"
add-missing-on-start="true"
check-pks-on-start="false"
use-foreign-keys="true"
join-style="ansi-no-parenthesis"
alias-view-columns="false"
drop-fk-use-foreign-key-keyword="true"
table-type="InnoDB"
character-set="latin1"
collate="latin1_general_cs">
jdbc-uri="jdbc:mysql://127.0.0.1/opentaps?autoReconnect=true&useOldAliasMetadataBehavior=true"
jdbc-username="opentaps"
jdbc-password="332211"
isolation-level="ReadCommitted"
pool-minsize="2"
pool-maxsize="250"
time-between-eviction-runs-millis="600000"/>