From 53a0da771fde53b2bf06433c3134c2bb4fd3b990 Mon Sep 17 00:00:00 2001 From: Kamil Jarmusik <35842300+Limraj@users.noreply.github.com> Date: Mon, 5 Jun 2023 22:47:47 +0200 Subject: [PATCH] Create README.md --- README.md | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..61a043b --- /dev/null +++ b/README.md @@ -0,0 +1,30 @@ + +![Scada-LTS logo](https://yt3.ggpht.com/2V_jz6rC-_z3Ir1SL5_TctnE5HAbq_rWbF0PHSfRy3VXdwowrP2XEfTpAcr_VH1TUbzsWjUVWTs=w2120-fcrop64=1,00005a57ffffa5a8-k-c0xffffffff-no-nd-rj) +# Installer Scada-LTS for linux +| Technology | Version | Description | +| :--- | :---: | --- | +| Java | 11.0.19+7 | Base programic language | +| Server MySQL CE | 8.0.33 | Database server for data persistence | +| Shell MySQL | 8.0.33 | Database client | +| Apache Tomcat | 9.0.75 | Application server | + +## Instruction +The installer requires an internet connection. The first run will take longer due to the need to download and install MySQL 8.0 CE database server, MySQL 8.0 shell and JDK 11. + +Start the database server first, then tomcat: +1. Granting permissions to execute: +```` +chmod +x mysql_start.sh +chmod +x tomcat_start.sh +chmod +x tomcat64/bin/catalina.sh +chmod +x mysql/mysql_install.sh +chmod +x java/java_install.sh +```` +2. Start MySQL server: +```` +./mysql_start.sh +```` +3. Start Tomcat with Scada-LTS: +```` +./tomcat_start.sh +````