Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updated java installation prerequisite #321

Merged
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion documentation/installation/standalone-installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,15 @@ We should install the following:
- Maven: Command: _sdk install maven_\
Version: 3.9.8
- Scala Build Tool: Command: _sdk install sbt_
- Java: Command: _sdk install java 17.0.6-tem_\
- Java: Command: _sdk install java 21.0.3-tem_\
Version: Temerin 21.0.3-tem (See list by running: _sdk list java_)

**Note: when installing with a non-root user set java directory**
```
source "/home/${USER}/.sdkman/candidates/java/current"

```

Check the version of java by running: _java --version_. We should get: Temurin-21.0.3+9.

## Starting JeMPI <a href="#_1yk2dvaqt5h9" id="_1yk2dvaqt5h9"></a>
Expand All @@ -61,6 +67,8 @@ This Bash script is designed for deploying JeMPI locally with various options. I
JAVA_VERSION=21.0.3-tem \
JEMPI_ENV_CONFIGURATION=create-env-linux-low-1.sh



#### Installation Process

*This script must be run from the following path and will not work if executed from a different location*
Expand Down Expand Up @@ -167,6 +175,11 @@ cd /devops/linux/docker/conf/env

if you have less than 32Gbs of ram run the _./create-env-linux-low-1.sh_. If you have 32Gb or more, run the _./create-env-linux-high-1.sh_. both those script will create _conf.env_ file that we will need.

**Note: for server installations, manually set SERVER_IP for environment variable before executing the script**
```bash
export REACT_APP_JEMPI_BASE_API_HOST=http://${SERVER_IP}
```

```bash
# If you have less than 32Gb ram, run the following script

Expand Down