Skip to content

kjetilhp/sphere-stack

Repository files navigation

sphere-stack

This setup is used to launch a standalone copy of the sphere platform either on your local machine or on a cloud host.

prerequisites

To start you need a host running ubuntu 14.04.02 with docker installed, this can be setup using docker-machine.

overview

I have broken the system up into two compose configuration files, being resources and services.

resources

This are the resource services, consisting of mysql, rabbitmq, couchdb and redis.

These services keep their data in the following folders on the docker host:

  • /data/couchdb
  • /data/mysql
  • /data/rabbitmq

services

These are the services which ninjablocks developed.

running

First CHANGE PASSWORDS as follows:

  1. Any variable containing signing_secret, at the moment for simplicity set them all to the same thing.
  2. RabbitMQ admin password, and all the associated connection strings beginning with amqp://.

The following command will ensure that the /var/lib/sphere-stack on the docker host machine is pointing to a permanent location and then start the resources composition using docker-compose

./sphere.sh create resources

databases

Then if this is the first time you have run it you need to import the SQL database.

./sphere-stack.sh create mysql

Then ensure the couchdb database is created and create the secondary index.

./sphere-stack.sh create couch

openssl

./sphere-stack.sh create keys

When you hit "ENTER", you will be asked a number of questions.

Country Name (2 letter code) [AU]:US
State or Province Name (full name) [Some-State]:New York
Locality Name (eg, city) []:New York City
Organization Name (eg, company) [Internet Widgits Pty Ltd]:Your Company
Organizational Unit Name (eg, section) []:Department of Kittens
Common Name (e.g. server FQDN or YOUR name) []:*.example.com
Email Address []:your_email@domain.com

services

Then start the services.

./sphere-stack.sh start services

IP address

To learn the IP address of your docker-machine, run:

./sphere-stack.sh ip

host file

Add an entry like the following to your local hosts /etc/hosts file:

192.168.99.100 douitsu.example.com apiservice.example.com mqtt.example.com

You can generate the correct entry with:

./sphere-stack.sh hosts-append

douitsu

  • Register your first user in douitsu (https://douitsu.example.com), this will be used to setup the oauth2 applications.

  • You will probably find things easier if you choose trust to the self-signed certificate using the mechanisms provided by your browser &/or host operating systems.

  • Add an application for the sphere API service.

After saving, take note of the "Client ID" and "Secret" under the "Application Details" title as you will need to edit services-docker-compose.yml to have these values.

  • Enable some flags for the REST API service application
docker exec -it spherestack_spheremysql_1 mysql douitsu -uroot;
update application set is_ninja_official=1 where appid = '<app id for this application>';
./sphere-stack.sh recreate services

security

On the VPS you only need to expose ports 80, 443 and 8883, the rest can be accessed using SSH port forwarding.

ssh -D 3000 USERNAME@HOST

Then configure your browser as required to use this socks proxy using something like switchysharp.

Licensing

sphere-stack is licensed under the MIT License. See LICENSE for the full license text.

Revisions

##1.1

  • added 'sphere-stack.sh' to encapsulate scriplets used in instructions
  • ensured that resources used by resources-docker-compose.yml are located on persistent storage of the VM

##1.0

  • Initial release

About

This setup is used to launch a standalone copy of the sphere platform.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 100.0%