Skip to content

Instantly share code, notes, and snippets.

@funkyboy
Last active October 30, 2016 20:51
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save funkyboy/9000493 to your computer and use it in GitHub Desktop.
Save funkyboy/9000493 to your computer and use it in GitHub Desktop.
Installing BaasBox on Ubuntu
# Install Java
sudo add-apt-repository ppa:webupd8team/java -y
sudo apt-get update
sudo apt-get install oracle-java8-installer
# In case you don't have unzip, install it
sudo apt-get install unzip
# Download 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.4/
# Assign execution privileges to the start script
chmod +x ./start
# Run BaasBox
./start
# Visit http://YOUR_IP:9000/console to access the console
@kcochibili
Copy link

The instruction in this gist was very helpful when I was Installing BaasBox on Linux, But it is not complete. it is missing some important steps, most especially, instructions on how to install and use screen (Which will keep the server running after the ssh session is 'closed'. and how to return to the session later).

I have created a more detailed Gist that carefully explains these little but important steps. Please consider updating the article related to this Gist to reflect the new steps.

My modified Gist instruction: https://gist.github.com/kcochibili/6a1040d395f8ea8b7d14
The corresponding article on your website: http://www.baasbox.com/installing-baasbox-on-linux/#file-gistfile1-sh

@awedeebawe
Copy link

You don't need Screen to run baasbox in the background
Just add an ampersand at the end of the command.

./start &

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