Last active
September 19, 2015 14:38
-
-
Save ellipsonic/f4abfa6f5ff7ee88692b to your computer and use it in GitHub Desktop.
spagobi
This file contains hidden or 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
# Update min packages | |
sudo apt-get update | |
sudo apt-get -y install nano | |
sudo apt-get -y install git | |
sudo apt-get -y install openjdk-7-jdk | |
# Port forwarding | |
sudo iptables -t nat -A PREROUTING -i eth0 -p tcp --dport 80 -j DNAT --to-destination $(hostname -i):8080 | |
sudo iptables -A INPUT -p tcp --dport 80 -j ACCEPT | |
# Get the package | |
wget http://download.forge.ow2.org/spagobi/All-In-One-SpagoBI-4.2-28042014.zip | |
sudo apt-get -y install zip | |
unzip All-In-One-SpagoBI-4.2-28042014.zip | |
cd SpagoBI-Server-4.2-10042014 | |
cd bin | |
chmod 755 *.sh | |
cd ../database | |
chmod 755 *.sh | |
cd bin | |
sudo bash ./startup.sh | |
# clear and give message | |
clear | |
echo "Open up, http://<Your IP address>/SpagoBI/" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment