2010-11-04 17:05:01 +07:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2012-06-06 21:13:34 +07:00
|
|
|
echo ... Setup idempiere Server
|
2010-11-04 17:05:01 +07:00
|
|
|
# $Header: /cvsroot/adempiere/install/Adempiere/RUN_setup.sh,v 1.19 2005/09/08 21:54:12 jjanke Exp $
|
|
|
|
|
|
|
|
if [ $JAVA_HOME ]; then
|
|
|
|
JAVA=$JAVA_HOME/bin/java
|
|
|
|
KEYTOOL=$JAVA_HOME/bin/keytool
|
|
|
|
else
|
|
|
|
JAVA=java
|
|
|
|
KEYTOOL=keytool
|
|
|
|
echo JAVA_HOME is not set.
|
|
|
|
echo You may not be able to start the Setup
|
|
|
|
echo Set JAVA_HOME to the directory of your local JDK.
|
|
|
|
fi
|
|
|
|
|
2012-06-06 21:13:34 +07:00
|
|
|
#setup idempiere.properties and idempiereEnv.propertiess
|
2014-04-03 00:31:20 +07:00
|
|
|
$JAVA -Dosgi.noShutdown=false -Dosgi.compatibility.bootdelegation=true -Dosgi.install.area=setup -jar plugins/org.eclipse.osgi_3.9.*.jar -application org.adempiere.install.application -consoleLog
|
2010-11-04 17:05:01 +07:00
|
|
|
|
2012-02-02 10:49:17 +07:00
|
|
|
echo ... Setup Tomcat
|
2010-11-04 17:05:01 +07:00
|
|
|
#setup tomcat
|
2014-04-03 00:31:20 +07:00
|
|
|
$JAVA -Dosgi.noShutdown=false -Dosgi.compatibility.bootdelegation=true -Dosgi.install.area=setup -jar plugins/org.eclipse.osgi_3.9.*.jar -application org.eclipse.ant.core.antRunner -buildfile build.xml
|
2010-11-04 17:05:01 +07:00
|
|
|
|
2012-02-02 10:49:17 +07:00
|
|
|
echo ... Make .sh executable
|
2010-11-04 17:05:01 +07:00
|
|
|
chmod -R a+x *.sh
|
|
|
|
find . -name '*.sh' -exec chmod a+x '{}' \;
|
|
|
|
|
2012-02-02 10:49:17 +07:00
|
|
|
echo ...
|
2010-11-04 17:05:01 +07:00
|
|
|
echo For problems, check log file in base directory
|