Lesson 5. Deploy your bot
Last updated
Last updated
I think, when you are reading this, you have created your own bot with the help from my book. So now, its time to run it not on your home computer with Intel Pentium II, but on professional server hardware. I will show how to deploy your bot on DigitalOcean hosting.
Firstly, you need to create account on DigitalOcean. Open this link to get 10$ as gift from me, enter your email and password and click "Create an account"
Then, follow register insctructions. Once you are in your control panel, create a new droplet.
Select OS. I recommend using Ubuntu 16.04.01 x64. Then choose preffered plan. For Java bot, you can select 512-1GB RAM (its enough for start). Select datacenter's region (I recommend to choose nearest city), scroll down and click "Create". Check your email inbox for letter like this:
You will need next software for that:
When you install it, open PuTTY and write server IP and port (default 22).
And click "Open". You will see something like:
Click "Yes". Then login as "root" user and with password that you have recieved via email. Now we need to install Java on your server. Type following:
Type java -version
to check installation. You will see something like that:
Now, open IntelliJ Idea
and go to File>Project Structure>Artifacts> + (Add artifact)>JAR>From modules with dependencies>Select main class (Main.java
)>OK>Apply. Then Build>Build Artifacts>Build. Then in the out/artifacts/
folder you will see your JAR.
Open FileZilla and enter IP address, username, password and port (default 22) and click "Connect". Create new folder on your server (right window), open it and upload you JAR by dragging it from left window (local computer) to right window (server). Open PuTTY and type:
Press ENTER
and then go to your folder:
And just run your JAR:
Well done! You are now hosting your bot at DigitalOcean. To exit terminal, press CTRL + A + D
and then type exit
. To return, connect via SSH, type screen -r
and you will be returned to your screen session. To stop the bot: CTRL + C
.
Well, that's all for now. See you soon!