Adempiereインストール

CentOS6.2にAdempiereインストール [前提条件] CentOS 6.2(x86_64) JDK1.6.0u31 Adempiere 3.6.0J_CE PostgreSQL管理者 postgres/postgrespw Adempiere用DBユーザ adempiere/adempierepw Adempiereインストールパス /opt/Adempiere3.6.0J_CE/ AdempiereKeystoreインストールパス /opt/Adempiere3.6.0J_CE/keystore Adempiere Keystore パスワード adempierekeypw CentOS6.2 インストール(Minimal) PostgreSQLインストール yum install postgresql-server PostgreSQL初期化 service postgresql initdb service postgresql start chkconfig postgresql on PostgreSQL接続設定 service postgresql stop vi /var/lib/pgsql/data/pg_hba.conf ----- local all all trust host all all 127.0.0.1/32 trust host all all ::1/128 trust ----- vi /var/lib/pgsql/data/postgresql.conf ----- listen_address = '*' port = 5432 ----- service postgresql start PostgreSQLユーザ設定 psql --u postgres ----- postgres=#ALTER USER postgres encrypted password 'postgrespw'; postgres=#CREATE DATABASE adempiere; postgres=#CREATE USER adempiere WITH ENCRYPTED PASSWORD 'adempierepw'; postgres=#\q ----- JDKインストール bash jdk-6u31-linux-x64-rpm....

<span title='2012-04-01 00:00:00 +0000 UTC'>April 1, 2012</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;tack41