forked from 2009Scape/Server
Hosting guide cleanup
This commit is contained in:
parent
5b6c07460e
commit
49ae2fdb0a
2 changed files with 16 additions and 3 deletions
13
CompiledServer/Guides/UbuntuServerHostGuide.md
Normal file
13
CompiledServer/Guides/UbuntuServerHostGuide.md
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue