From 9473ec7324fd6332d94ed2266152acfb34705b78 Mon Sep 17 00:00:00 2001 From: randy Date: Sun, 17 Nov 2024 19:14:16 -0700 Subject: [PATCH] Update 'Server Install' --- Server-Install.md | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/Server-Install.md b/Server-Install.md index 5191513..6f4fb5e 100644 --- a/Server-Install.md +++ b/Server-Install.md @@ -3,19 +3,18 @@ These instructions are for Debian Linux. If you want to run on another OS, you'l Install dependencies: -`sudo apt-get install openjdk-11-jdk - +```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` +sudo git lfs pull Setting up the user database: -sudo apt install mariadb-server +```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 + source global.sql + alter user 'root'@'localhost' identified via mysql_native_password using ''; + exit``` \ No newline at end of file