Hosting guide cleanup

This commit is contained in:
dginovker 2019-10-30 15:23:41 +00:00
parent 5b6c07460e
commit 49ae2fdb0a
2 changed files with 16 additions and 3 deletions

View file

@ -0,0 +1,13 @@
Ubuntu 18.04 LTS:
1. Get SQL: https://www.digitalocean.com/community/tutorials/how-to-install-mysql-on-ubuntu-18-04
2. Remove the password: https://stackoverflow.com/questions/44890331/how-do-i-setup-mysql-with-a-blank-empty-password-on-ubuntu-16-04
3. Install Java: sudo apt install default-jre
4. Create global & server database:
* Login: mysql -u root -p
* Create:
* CREATE DATABASE server;
* CREATE DATABASE global;
5. Import global & server databases:
* mysql -u root -p server < server.sql
* mysql -u root -p global < global.sql