Skip to content

Instantly share code, notes, and snippets.

@funkyboy
Last active August 6, 2022 04:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save funkyboy/9001197 to your computer and use it in GitHub Desktop.
Save funkyboy/9001197 to your computer and use it in GitHub Desktop.
Installing BaasBox on CentOS
# Assumes all commands are run as root
# Refresh repositories
yum update
# Install open JDK
yum install java-1.7.0-openjdk
# In case you don't have unzip and wget, install them
yum install unzip
# Fetch Baasbox
wget --content-disposition http://www.baasbox.com/download/baasbox-stable.zip
# Unzip baasbox
unzip baasbox-stable.zip
# move into unzipped folder
cd baasbox-0.8.3-snapshot/
# Assign execution privileges to the start script
chmod +x ./start
# Run BaasBox
./start
# Visit http://YOUR_IP:9000/console to access the console
@madpink
Copy link

madpink commented Jan 26, 2016

you should update the instructions to use the required version of java:
yum install java-1.8.0-openjdk

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment