forked from yacy/yacy_grid_mcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Addresses yacy#2 installation docs for cloud providers
- Loading branch information
1 parent
a8cbe1c
commit 63933e7
Showing
4 changed files
with
217 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
## Installing Yacy on AWS with Docker | ||
|
||
1. Sign in to [AWS](https://aws.amazon.com) | ||
|
||
2. In the top-right corner, choose a area you want to set up the instance, e.g.: Asia Pacific (Singapore). | ||
|
||
3. In the console panel, choose EC2. In EC2 Control Panel, choose key pairs, under Network & Security, and create a new key pair. It will automatically download the private key, and you should do ```chmod 400 YOUR_KEY_NAME``` to prevent other user to access your private key. After that, go back to your dashboard, and click Launch Instance. | ||
|
||
4. In Step 1: Choose an Amazon Machine Image, we choose ```Ubuntu Server 14.04 LTS (HVM), SSD Volume Type```. | ||
|
||
5. In Step 2: Choose an Instance Type, we choose ```t2.micro```(<strong>Warning:</strong> ```t2.micro``` is not suitable for running Yacy for a long period, and AWS may shut down your instance(block your Internet access on specific port) at any time. ```t2.micro``` instance users are only allow to use <strong>10%</strong> of a single CPU core on average. In our case, Yacy_server uses 30 - 40% on average. Reference: [Burstable Instance](http://aws.amazon.com/ec2/faqs/#burst) Case study: [Real case running Yacy](http://geekinguniverse.com/2016/01/14/dont-use-aws-for-your-web-application/)) | ||
|
||
6. Then we click ```Configure Instance Details```, do not create a instance yet. | ||
|
||
7. Under ```Auto-assign Public IP```, we choose ```Enable``` | ||
|
||
8. Then we click ```Next: Add Storage``` | ||
|
||
9. We modify the storage to ```30GiB``` instead of default ```8Gib``` | ||
|
||
10. Click ```Next``` twice to go to ```Step 6: Configure Security Group```. Under this, we choose ```All TCP``` for type and ```Anywhere``` for source. | ||
|
||
11. We are ready to launch, click ```Review and Launch```, if everything is correct, click ```Launch```. It will ask you to choose a key pair, choose the one we just created. | ||
|
||
12. We go back to EC2 control panel again. Click on instances on the left hand side. Then choose the instance you just created, and click connect button on top. It will you connect to your EC2 by giving you a example like: | ||
``` | ||
ssh -i "yacy.pem" [email protected] | ||
``` | ||
13. Once connected, we have to set up docker and add a 4G swapfile to prevent lack of memory: | ||
``` | ||
sudo apt-get update | ||
sudo apt-get -y upgrade | ||
sudo fallocate -l 4G /swapfile | ||
sudo chmod 600 /swapfile | ||
sudo mkswap /swapfile | ||
sudo swapon /swapfile | ||
sudo apt-get install linux-image-extra-`uname -r` | ||
sudo apt-key adv --keyserver hkp://pgp.mit.edu:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D | ||
echo "deb https://apt.dockerproject.org/repo ubuntu-trusty main" | sudo tee /etc/apt/sources.list.d/docker.list | ||
sudo apt-get update | ||
sudo apt-get install docker-engine | ||
``` | ||
Or, to install docker on newer versions of ubuntu (other distros are not tested) we can just do: | ||
``` | ||
sudo apt-get install docker.io | ||
``` | ||
14. Once docker is installed, we start our Yacy-server by entering: | ||
``` | ||
sudo docker pull nikhilrayaprolu/yacy_grid_mcp | ||
sudo docker run -d -p 8100:8100 -p 443:443 nikhilrayaprolu/yacy_grid_mcp:latest | ||
``` | ||
15. Check if Yacy is running on your server, by going to your public DNS, e.g.: ```ec2-54-169-103-75.ap-southeast-1.compute.amazonaws.com```. |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
## Installing Yacy on DigitalOcean with Docker | ||
|
||
[DigitalOcean](https://www.digitalocean.com) - simple cloud hosting, built for developers. | ||
|
||
1. Register in [DigitalOcean](https://www.digitalocean.com) and get 10$ credit. | ||
|
||
2. Click 'Create droplet' button, choose your droplet image (Docker), size, location and add your SSH keys. | ||
|
||
![Droplet image](http://i.imgur.com/wXXvg7W.png) | ||
|
||
![SSH keys](http://i.imgur.com/egW1HsV.png) | ||
|
||
3. Click 'Create', wait a minute, copy ip of your new droplet and login to it using SSH: | ||
```bash | ||
ssh [email protected] | ||
``` | ||
|
||
4. Docker is already installed, you can check it using ```docker version``` command. You should see something like this: | ||
``` | ||
root@sevazhidkov:~# docker version | ||
Client: | ||
Version: 1.9.1 | ||
API version: 1.21 | ||
Go version: go1.4.2 | ||
Git commit: a34a1d5 | ||
Built: Fri Nov 20 13:12:04 UTC 2015 | ||
OS/Arch: linux/amd64 | ||
Server: | ||
Version: 1.9.1 | ||
API version: 1.21 | ||
Go version: go1.4.2 | ||
Git commit: a34a1d5 | ||
Built: Fri Nov 20 13:12:04 UTC 2015 | ||
OS/Arch: linux/amd64 | ||
``` | ||
5. Pull Docker image from [Yacy repository](https://hub.docker.com/r/nikhilrayaprolu/yacy_grid_mcp/) in Docker Hub (it should take about a minute): | ||
```bash | ||
docker pull nikhilrayaprolu/yacy_grid_mcp | ||
``` | ||
|
||
6. OK, you're ready to run yacy: | ||
```bash | ||
docker run -d -p 8100:8100 -p 443:443 nikhilrayaprolu/yacy_grid_mcp:latest | ||
``` | ||
|
||
7. Go to your droplet IP using web browser. You should see yacy main page. |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
## Installing Yacy on Google Cloud with Docker | ||
|
||
|
||
1. Go to [Google Cloud Free Trial](https://cloud.google.com/free-trial/) and sign up. You will get 300 dollars credit for 12 months. | ||
|
||
|
||
2. Go to the console page: [Console](https://console.cloud.google.com/home) | ||
|
||
|
||
3. If you don’t have any projects, a page that would guide you on how to start a project will pop up. Give your project a name. | ||
|
||
|
||
4. In the search bar above on console page, enter 'Compute Engine' and click on ```Compute Engine```. | ||
|
||
|
||
5. If you have not activated billing for compute engine, click enable billing and choose your account to activate your Compute Engine. Your Google Compute Engine should be activated within a few minutes. | ||
|
||
|
||
6. Click ```Create instance``` to create an instance. In machine type, choose ```small(1 shared vCPU)```. | ||
Choose whatever zone you like. | ||
|
||
In Boot Disk, choose ```Ubuntu 14.04```, and the disk size should be larger than 40GB. | ||
On the bottom of the page, click ```Management, disk, networking, access & security options``` to show more options. Inside of this, click into the tab ```Networking``` and choose ```New static IP``` instead of ```Ephemeral```. Enter a name for your IP. Google will assign a IP for you. | ||
Check the two boxes ```Allow HTTP traffic``` and ```Allow HTTPS traffic```. Finally, click ```Create``` to create an instance. Wait a few minutes for the creation to complete. | ||
|
||
|
||
7. Once the creation has finished, click ssh below to establish web ssh connections. | ||
|
||
8. In the Web Console, enter: | ||
|
||
``` | ||
sudo apt-get update | ||
sudo apt-get upgrade | ||
sudo apt-get -y install docker.io | ||
sudo fallocate -l 4G /swapfile | ||
sudo chmod 600 /swapfile | ||
sudo mkswap /swapfile | ||
sudo swapon /swapfile | ||
sudo docker pull nikhilrayaprolu/yacy_grid_mcp | ||
``` | ||
|
||
Once finished, you will get fully working image. You can check if it exists by entering ```sudo docker images```. | ||
Run our server by entering: | ||
``` | ||
sudo docker run -d -p 8100:8100 -p 443:443 nikhilrayaprolu/yacy_grid_mcp | ||
``` | ||
Enter your assigned HTTP IP address into your browser to check if it is working. |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
|
||
## Installing Yacy on Bluemix with Docker | ||
|
||
1. Install docker on your system | ||
|
||
2. Get a Bluemix Account with this URL: http://ibm.biz/joinbluemix <br> | ||
2.1 Press Sigup and type in your credentials <br> | ||
2.2 Check your email and press the validation link <br> | ||
2.3 Sign in to bluemix | ||
|
||
3. Make sure you are in US South. The URL is https://console.ng.bluemix.net | ||
(beside US South there is London and Sydney) | ||
|
||
4. Press Dashboard and create a space called dev | ||
|
||
5. Install cloud foundry command line tools for your OS from [here](https://github.com/cloudfoundry/cli/releases) | ||
In Linux: | ||
``` | ||
dpkg -i cf-cli-version.dep | ||
``` | ||
6. Install ic plugin as described [here](https://www.ng.bluemix.net/docs/containers/container_cli_ov.html#container_cli_cfic_install) | ||
Linux: | ||
``` | ||
cf install-plugin https://static-ice.ng.bluemix.net/ibm-containers-linux_x64 | ||
``` | ||
7. Login to bluemix with | ||
``` | ||
cf login | ||
``` | ||
API endpoint is api.ng.bluemix.net | ||
8. Login to docker on bluemix with | ||
cf ic login (No credentials are necessary of you logged in to bluemix before | ||
|
||
9. Create namespace with | ||
``` | ||
cf ic namespace set <your namespace like hugo, make sure the name is unique> | ||
root@44ee147e1aa5:/# cf ic namespace set hugo | ||
FAILED | ||
{ | ||
"code": "IC5090E", | ||
"description": "Cannot assign namespace hugo to org 8b826387-9960-48d6-a409-1c5347b937af. Please ensure the namespace is not already in use.", | ||
"incident_id": "df24a7aedde48fbb", | ||
"name": "NamespaceToOrgAssignError", | ||
"rc": "409", | ||
"type": "Infrastructure" | ||
} | ||
root@44ee147e1aa5:/# cf ic namespace set ottohttps://codein.withgoogle.com/tasks/5485387342413824/ | ||
otto | ||
``` | ||
10. Init your docker connection with `cf ic init` | ||
|
||
11. Upload the Yacy docker file to your namespace with `cf ic cpi nikhilrayaprolu/yacy_grid_mcp yacy_grid_mcp` (takes some time) | ||
|
||
12. Create docker group with: (the XXXX must be unique, play around to found a free name) | ||
``` | ||
cf ic group create --name yacy --auto --desired 2 -m 1024 -n XXXX -d mybluemix.net -p 80 registry.ng.bluemix.net/<namespace>/yacy_grid_mcp | ||
``` | ||
13. Check if your group is running either with pressing Dashboard in the browser or: | ||
``` | ||
cf ic group list | ||
``` | ||
14. Wait until your container group is build and the network is configured (>1 minute) and | ||
``` | ||
check at https://XXXX.mybluemix.net is working with your version of yacy_grid_mcp | ||
``` | ||
|