Skip to content

Instantly share code, notes, and snippets.

@bchevallereau
bchevallereau / install.sh
Created February 21, 2017 19:06
Commands to install Ephesoft Community on Centos 6.6
# 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
@bchevallereau
bchevallereau / Vagrantfile
Created February 21, 2017 19:01
Vagrant file for Ephesoft Linux on Centos 6.6
Vagrant.configure(2) do |config|
config.vm.box = "puppetlabs/centos-6.6-64-puppet"
# Redirect Tomcat Port
config.vm.network "forwarded_port", guest: 8080, host: 8080
config.vm.provider "virtualbox" do |v|
v.memory = 4096
v.cpus = 1
end
end