# HTTPS/SSL Error (Linux)

When activating Groomer’s Tool inside Maya on Linux, you may see **HTTPS-related errors** in the Script Editor.

***

## Case 1 — HTTPS not recognized

Error message:

```
URL Error: unknown url type: https
```

#### Cause

* Maya’s embedded Python is built against **OpenSSL 1.1**.
* On Rocky/Alma/RHEL 9, only **OpenSSL 3** is available by default.
* Without the compatibility library, Maya cannot handle HTTPS at all.

#### Solution

Enable CRB repo and install compatibility SSL + CA certificates:

```bash
sudo dnf config-manager --set-enabled crb
sudo dnf install -y compat-openssl11 ca-certificates
```

***

## Case 2 — HTTPS certificate rejected

Error message:

```
<urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed:
self signed certificate in certificate chain (_ssl.c:1129)>
```

#### Cause

* Python recognizes HTTPS, but **does not trust** the certificate.
* Common in corporate/studio environments with self-signed proxies/firewalls.
* Or system root CA store is outdated.

#### Solution

Update your system’s certificates:

```bash
sudo dnf update -y ca-certificates
```

If still failing, use Python’s **Certifi** bundle:

```python
import certifi, urllib.request
url = "https://example.com"
response = urllib.request.urlopen(url, cafile=certifi.where())
print(response.read())
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://nobraintools.gitbook.io/maya-groomers-tool/getting-started/problem-errors/https-ssl-error-linux.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
