Commands to install Ephesoft Community on Centos 6.6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Install pre-requisites | |
sudo yum -y install unzip gnome-vfs2.x86_64 | |
sudo rpm -Uvh ftp://ftp.pbone.net/mirror/ftp5.gwdg.de/pub/opensuse/repositories/home:/monkeyiq:/centos6updates/CentOS_CentOS-6/noarch/autoconf-2.69-12.2.noarch.rpm | |
# Download Ephesoft | |
cd /tmp | |
wget http://www.ephesoft.com/Ephesoft_Product/Ephesoft_Community_4.0.2.0/Ephesoft_Community_Release_4.0.2.0.zip | |
unzip Ephesoft_Community_Release_4.0.2.0.zip -d ephesoft | |
cd ephesoft | |
# Configure it | |
chmod +x install install-helper uninstall | |
# Change some properties | |
nano /tmp/ephesoft/Response-Files/config.properties | |
# We want to change the server name to localhost, so update these properties manually: | |
# input_change_server_name=y | |
# input_changed_server_name=localhost | |
# And optionally, change the DB password: | |
# input_database_password=root | |
# Install checkinstall | |
tar -xvf ./Ephesoft_4.0.2.0.tar.gz Ephesoft/Dependencies/checkinstall.tar.gz | |
cd ./Ephesoft/Dependencies | |
tar xzvf ./checkinstall.tar.gz | |
cd checkinstall | |
make | |
make install | |
# Then install ephesoft in silent mode | |
cd /tmp/ephesoft | |
sudo ./install -silentinstall | |
# And start Ephesoft | |
cd /opt/Ephesoft/JavaAppServer/bin/ | |
sh startup.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment