This distribution contains both the Polaris Server and Admin Tool.
- Java SE 21 or higher
polaris-distribution-@version@/
├── LICENSE
├── NOTICE
├── README.md
├── admin/ # Admin tool files
├── bin/ # Executable scripts
│ ├── admin
│ └── server
└── server/ # Server files
The distribution includes separate scripts for running the server and admin tool:
bin/serverbin/admin --help # Show admin commands
bin/admin bootstrap -h # Show bootstrap help
bin/admin purge -h # Show purge helpFor full usage instructions and configuration details, see the official Polaris docs at https://polaris.apache.org/.
Both components can be configured using environment variables or system properties. For example:
# Configure server port
POLARIS_JAVA_OPTS="-Dquarkus.http.port=8080" bin/server
# Configure admin tool
POLARIS_JAVA_OPTS="-Dpolaris.persistence.type=relational-jdbc" bin/admin
# You can also set JAVA_OPTS as an environment variable
export POLARIS_JAVA_OPTS="-Xms512m -Xmx1g -Dquarkus.http.port=8080"
bin/serverFor more details on configuration, please refer to the Polaris documentation: https://polaris.apache.org/