Difference between revisions of "Running iDempiere from Installers"
CarlosRuiz (talk | contribs) |
|||
| Line 10: | Line 10: | ||
Once installed and configured the iDempiere server you can start it with: | Once installed and configured the iDempiere server you can start it with: | ||
| + | |||
| + | su - idempiere | ||
| + | cd /opt/idempiere-server | ||
idempiere | idempiere | ||
Revision as of 13:27, 24 April 2018
⇐ Table of Contents | Installing from Installers | Running iDempiere from Installers | Post Installation ⇒
Once installed and configured the iDempiere server you can start it with:
su - idempiere cd /opt/idempiere-server
idempiere
or
sh idempiere-server.sh
or
sh idempiere-server.sh >> idempiere-server.log 2>&1 &
Error when running idempiere-server.sh on mac os
If you try to run the script and encounter the following error: readlink: illegal option -- f
usage: readlink [-n] [file ...]
usage: dirname path
Unable to access jarfile /plugins/org.eclipse.equinox.launcher_1.*.jar
You have to get coreutils package which contains the GNU command line tools. If you have package manager such as brew, you can get the coreutils via it.
After that, add the bin to the path of your terminal (bash or zsh or etc).
Ex. export PATH="/usr/local/opt/coreutils/libexec/gnubin:$PATH"
Source from: [1]
This tutorial is brought to you by Carlos Ruiz from GlobalQSS. Feel free to improve directly or suggest using the Discussion tab.
