From e24291605a51633bbbdd4550891e47fb90167bbe Mon Sep 17 00:00:00 2001 From: randy Date: Sun, 17 Nov 2024 19:12:43 -0700 Subject: [PATCH] Update 'Server Install' --- Server-Install.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Server-Install.md diff --git a/Server-Install.md b/Server-Install.md new file mode 100644 index 0000000..18baebf --- /dev/null +++ b/Server-Install.md @@ -0,0 +1,20 @@ +These instructions are for Debian Linux. If you want to run on another OS, you'll have to figure it out. + + +Install dependencies: +`sudo apt-get install openjdk-11-jdk +apt install git +apt install git-lfs +sudo git lfs install + +sudo git clone https://git.snowlab.cc/Snowscape/Server.git +sudo git lfs pull` + + +Setting up the user database: +sudo apt install mariadb-server +cd Server/db_exports +sudo mysql + source global.sql This creates the database tables + alter user 'root'@'localhost' identified via mysql_native_password using ''; For some reason, the default root creds cause permission issues. This resets the password to null. + exit \ No newline at end of file