mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-12-29 08:29:09 +00:00
Add extra step required when configuring SSL (#8078)
This commit is contained in:
parent
3b7f576d04
commit
0393b75eab
@ -91,3 +91,18 @@ Click on `Trust` to open and set `Always Trust`:
|
||||
Once the above steps are finished, all the browsers will allow you to visit the OpenMetadata server using HTTPS.
|
||||
However, you'll still a warning in the address bar. All of these steps are not necessary with an X509 certificate issued
|
||||
by a trusted authority and one should always use that in production.
|
||||
|
||||
### Import public cert into Java Keystore
|
||||
|
||||
This step is required in case you have configured a `bot` with a JWT Token as authentication mechanism and your server
|
||||
has SSL enabled.
|
||||
|
||||
From your terminal:
|
||||
|
||||
1. Go to your $JAVA_HOME/lib/security where the **cacerts** keystore is located.
|
||||
|
||||
2. Run the following command once in the directory:
|
||||
|
||||
```bash
|
||||
keytool -import -trustcacerts -keystore cacerts -storepass changeit -noprompt -alias localhost -file /path/to/public.cert
|
||||
```
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user