Info | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
The Classic JOC user interface is entering retirement:
The JOC Cockpit user interface replaces the Classic JOC interface:
|
Table of Contents | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
|
Scope
There are three options to enable HTTP authentication for JOC:
- Configure ./config/scheduler.xml
- Configure an Apache and use it as a proxy
- Configure the Jetty plugin
- How to configure JOC for HTTP authentication?
- How to configure JOC for HTTP authentication?
- How to configure JOC for HTTP authentication?
Configure ./config/scheduler.xml
You can use JOE to configure the user name and password for authentication by the following steps:
...
Code Block | ||
---|---|---|
| ||
...
<http_server>
<http_directory path="${SCHEDULER_DATA}/" url_path="/scheduler_data/"/>
<http_directory path="${SCHEDULER_HOME}/" url_path="/scheduler_home/"/>
<http.authentication>
<http.users>
<http.user name="admin" password_md5="21232F297A57A5A743894A0E4A801FC3"/>
</http.users>
</http.authentication>
</http_server>
...
|
Configure Apache for use as a Proxy
see How to operate JOC with an Apache Proxy
Configure the Jetty Plugin
See How to operate JobScheduler with Jetty
...