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

fix(docs): small fixes to dynamic install docs #6913

Merged
merged 1 commit into from
Dec 4, 2023
Merged
Changes from all 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
38 changes: 25 additions & 13 deletions docs/admin/install/vm-install/dynamic-download.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,24 +31,36 @@ curl https://raw.githubusercontent.com/JanssenProject/jans/vreplace-janssen-vers

1. Execute Installer

The installer can be invoked using various options to tailor the installation process. Invoke the commands below to know about all the available options.
To execute installer, run the command below:

```
install.py --help
setup.py --help
```
```text
python3 install.py
```

One particularly useful option for development environments is the one below which installs the Janssen Server with test data loaded.
The installer can be invoked using various options to tailor the
installation process. Invoke the commands below to know about all the
available options.

```
python3 install.py --args="-t"
```
```
python3 install.py --help
```

One particularly useful option for development environments is the one
below which installs the Janssen Server with test data loaded.

```
python3 install.py --args="-t"
```

Installer can be run with all the arguments provided via command-line
at the time of invocking the install script. This enables prompt-less
installation. For example, see the command below:

```bash
python3 install.py --args="-n -ip-address 10.229.38.28 -host-name jans-opensuse -city ah -state gj -country in -org-name gluu -email dhaval@gluu.org -jans-max-mem 26349 -admin-password admin -ldap-admin-password admin --listen_all_interfaces --with-casa --install-jans-keycloak-link -t"
```

To install without test data loaded, run the command below:

```text
python3 install.py
```

## Uninstall

Expand Down