Skip to content
Snippets Groups Projects
Commit 29de41a3 authored by Maxime's avatar Maxime
Browse files

Add start scripts for restheart and mongodb

parent 4155cce9
No related branches found
No related tags found
No related merge requests found
...@@ -6,7 +6,7 @@ echo "* INSTALL RESTHEART *" ...@@ -6,7 +6,7 @@ echo "* INSTALL RESTHEART *"
echo "**********************" echo "**********************"
echo "Deleting previous restheart installation ..." echo "Deleting previous restheart installation ..."
sudo rm -rf restheart-1.1.4.zip sudo rm -rf restheart-1.1.4.zip restheart-1.1.4
echo "Downloading restheart ..." echo "Downloading restheart ..."
...@@ -17,4 +17,5 @@ unzip restheart-1.1.4.zip ...@@ -17,4 +17,5 @@ unzip restheart-1.1.4.zip
wait wait
echo "Copying restheart conf file"
cp ../conf/restheart.yml restheart-1.1.4/etc/
File moved
#!/bin/bash
cd ../INSTALL/restheart-1.1.4
java -server -jar restheart.jar etc/restheart.yml
#!/bin/bash
localLocation=$(pwd)
#
# install the port forwarding
cd portForwarding
sudo ./install.sh
cd ..
cd $localLocation/org.eclipse.om2m
# sudo mvn clean; mvn install
sudo mvn install
#!/bin/bash
echo "********************"
echo "* INSTALL MONGODB *"
echo "********************"
echo "Getting the Key ..."
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 7F0CEB10
echo "Creating the list file ..."
echo "deb http://repo.mongodb.org/apt/ubuntu "$(lsb_release -sc)"/mongodb-org/3.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-3.0.list
echo "Updating packages ..."
sudo apt-get update
echo "Installing mongo-db lastest version ..."
sudo apt-get install -y mongodb-org
echo "Stopping auto-started mongodb server ..."
sudo /etc/init.d/mongodb stop
#!/bin/bash
echo "**********************"
echo "* INSTALL RESTHEART *"
echo "**********************"
echo "Deleting previous restheart installation ..."
sudo rm -rf restheart-1.1.4.zip
echo "Downloading restheart ..."
wget https://github.com/SoftInstigate/restheart/releases/download/1.1.4/restheart-1.1.4.zip
echo "Unzipping restheart ..."
unzip restheart-1.1.4.zip
wait
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment