You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+52-18Lines changed: 52 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,8 @@ PWM is an open source password self-service application for LDAP directories.
4
4
5
5
Official project page is at [https://github.com/pwm-project/pwm/](https://github.com/pwm-project/pwm/).
6
6
7
+
PWM is a Java Servlet based application, and is packaged as a Java executable single JAR file, traditional Servlet "WAR" file, and docker image.
8
+
7
9
# Links
8
10
*[PWM-General Google Group](https://groups.google.com/group/pwm-general) - please ask for assistance here first.
9
11
*[PWM Documentation Wiki](https://github.com/pwm-project/pwm/wiki) - Home for PWM documentation
@@ -117,9 +119,9 @@ Minimum requirements for PWM application.
117
119
118
120
| PWM Version | Java [^1]| Servlet | Tomcat [^2]|
119
121
| --- | --- | --- | --- |
120
-
| v2.1 | 17 | 3.0 | 9 |
121
-
| v2.0 | 11-17| 3.0 | 8-9 |
122
-
| v1.9 | 8-11 | 3.0 | 7-9 |
122
+
| v2.1.x| 17+| 3.0 | 9 |
123
+
| v2.0.x| 11+| 3.0 | 8-9 |
124
+
| v1.9.x (EOL)| 8-11 | 3.0 | 7-9 |
123
125
124
126
[^1] There is no requirement for a specific Java implementation, PWM builds use [Adoptium](https://adoptium.net/).
125
127
@@ -128,32 +130,22 @@ Minimum requirements for PWM application.
128
130
129
131
130
132
131
-
## Deploy
133
+
## Deploy / Install
132
134
PWM is distributed in the following artifacts, you can use whichever one is most convenient.
133
135
134
136
| Artifact | Description |
135
137
| --- | --- |
138
+
| Java Executable | Command line executable Java JAR application, includes tomcat. |
136
139
| WAR | Standard Java WAR (Web Archive) application deployment model, you need to have a working java & tomcat configuration on your server. |
137
-
| Executable | Command line executable Java JAR application, includes tomcat. |
138
140
| Docker | Docker image includes Java and Tomcat. |
139
141
140
142
For all deployment types, each PWM instance will need an _applicationPath_ directory defined on your local server for PWM's configuration,
141
143
log, and runtime files. Once PWM is configured, the initial web UI will prompt the administrator for LDAP and other configuration settings.
142
144
143
-
### WAR
144
-
145
-
Steps:
146
-
1) Get Apache tomcat working to the point you can access the tomcat landing page with your browser. See tomcat documentation/help sites for
147
-
assistance with installing and configuring tomcat.
148
-
2) Set the _PWM_APPLICATIONPATH_ environment variable in your tomcat instance to a local location of your _applicationPath_ directory. See tomcat and/or your
149
-
operating system documentation/help sites for assistance with configuring environment variables as the method for doing this depends on OS and deployment type.
150
-
2) Place the pwm.war file in tomcat 'webapps' directory (rename from pwm-x.x.x.war with version naming)
151
-
3) Access with /pwm url and configure
152
-
153
-
### Executable
145
+
### Java Executable
154
146
The 'onejar' artifact released with PWM has an embedded tomcat instance, so you don't need to install tomcat to use this
155
147
version. You will be responsible for getting it to run as a service, and you won't be able to do any advanced tomcat
By default the executable will remain attached to the console and listen for HTTPS connections on port 8443.
170
162
171
163
164
+
### WAR
165
+
166
+
Steps:
167
+
1) Get Apache tomcat working to the point you can access the tomcat landing page with your browser. See tomcat documentation/help sites for
168
+
assistance with installing and configuring tomcat.
169
+
2) Set the _PWM_APPLICATIONPATH_ environment variable in your tomcat instance to a local location of your _applicationPath_ directory. See tomcat and/or your
170
+
operating system documentation/help sites for assistance with configuring environment variables as the method for doing this depends on OS and deployment type.
171
+
2) Place the pwm.war file in tomcat 'webapps' directory (rename from pwm-x.x.x.war with version naming)
172
+
3) Access with /pwm url and configure
173
+
174
+
172
175
### Docker
173
176
The PWM docker image includes Java and Tomcat. It listens using https on port 8443, and has a volume exposed
174
177
as `/config`. You will need to map the `/config` volume to some type of persistent docker
Before configuring PWM you should use an LDAP browser/editor to ensure expected functionality of your LDAP environment.
204
+
Most difficulties encountered configuring PWM are due to LDAP setup issues or unfamiliarity with LDAP.
205
+
There are many LDAP browsers available, a common one is [Apache Directrory Studio](https://directory.apache.org/studio/).
206
+
Use the browser to navigate your LDAP environment, familiarize yourself with the directory structure, and verify expected behavior.
207
+
208
+
In particular, Active Directory LDAP can be problematic because it is often mis-configured and behaves in unusual ways compared to other LDAP directories.
209
+
Specifically, AD LDAP uses referrals to redirect the LDAP client (PWM in this case) to servers of its choosing, thus PWM must be able to contact all domain controller server instances in the AD environment using the AD-configured DNS name.
210
+
AD LDAP must also be configured to use SSL certificates for password modifications to work. However, if the AD environment is well configured, PWM will work fine with it.
211
+
212
+
PWM includes a web-based configuration editor.
213
+
When PWM starts with no configuration, a web-based configuration guide will prompt the administrator for basic configuration information.
214
+
All configuration information is stored in the _PwmConfiguration.xml_ file, which will be created in the application path directory.
215
+
The application path is also used for other files, including a local database (_LocalDB_) (used primarily as a cache or for test environments), log files, and temporary files.
216
+
If multiple PWM servers are used in parallel, each server must have identical _PwmConfiguration.xml_ files.
217
+
218
+
PWM uses a configuration password to protect any modifications to the configuration.
219
+
Authentication to PWM requires an LDAP-backed login to a configured administrative account.
220
+
In early setup or in cases of problems with the LDAP directory, it may be necessary to access the configuration when LDAP functionally is not available.
221
+
For this purpose, PWM has a "configuration-mode" which allows editing the config with the configuration password, but disables all other end-user functionality.
222
+
Configuration mode can be enabled/disabled by editing the _PwmConfiguration.xml_ file and change the`configIsEditable`property near the top of the file, and can also be changed in the web UI.
223
+
224
+
### Database Usage
225
+
226
+
PWM can optionally be configured with an RDBMS (also known as a SQL database server).
227
+
When configured to use a database, PWM user meta-data such as challenge/response answers, TOTP tokens, usage records, and other data will be stored in the database.
228
+
When not configured to use a database, PWM user meta-data will be stored to the LDAP directory. Neither is better or worse, which one you use depends on your enviornment.
229
+
230
+
Any SQL server that has a Java supported JDBC driver should work, PWM will create its own schema on the first connection.
0 commit comments