-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
|
||
 | ||
# 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 | ||
```` |