All Downloads are FREE. Search and download functionalities are using the official Maven repository.

docker.presto-product-tests.conf.presto.etc.README.md Maven / Gradle / Ivy

There is a newer version: 451
Show newest version
### Listing entries in the keystore

```bash
keytool -list -keystore docker.cluster.jks
```

### Removing an entry from the keystore

```bash
keytool -delete -alias  -keystore docker.cluster.jks
```

### Generate a new keypair and add it to the keystore

```bash
keytool \
    -alias  \
    -keystore docker.cluster.jks \
    -storepass 123456 \
    -deststoretype pkcs12 \
    -genkeypair \
    -keyalg RSA \
    -validity 36500 \
    -dname "CN=.docker.cluster, OU=, O=, L=, ST=, C=" \
    -ext "SAN=DNS:.docker.cluster"
```




© 2015 - 2024 Weber Informatics LLC | Privacy Policy