Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes shell space #4683

Merged
merged 3 commits into from
Sep 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{% block prerequisites %}
{{ super() }}
- Enable additional repositories to resolve dependencies:
```shell
```shell
sudo dnf config-manager --set-enabled PowerTools
```
{% endblock prerequisites %}
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{% block prerequisites %}
{{ super() }}
- Enable additional repositories to resolve dependencies:
```shell
```shell
sudo dnf config-manager --set-enabled PowerTools
```
{% endblock prerequisites %}
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@
{% set platformBaseTemplate = "debian-10" %}
{% block prerequisites %}
{{ super() }}
- Download the GPG key to your APT keyring directly using the apt-key utility:
```shell

- Download the GPG key to your APT keyring directly using the apt-key utility
```shell
sudo apt-key adv --keyserver pgp.mit.edu --recv-keys 3A79BD29
```
- Install and configure the MySQL repo:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ You can create a VPC peering connection with a VPC in the same region or a diffe

1. Access the cluster with its domain name from your cluster's connection string. It's accessible from `vpc-client` after peering.

```shell
```shell
psql -h vpce-XXXXXXXXXXXXXXXXXXXX.eu-west-1.vpce.amazonaws.com -U edb_admin
__OUTPUT__
Password for user edb_admin:
Expand Down Expand Up @@ -139,7 +139,7 @@ You can create a VPC peering connection with a VPC in the same region or a diffe

1. Access the cluster with its domain name from your cluster's connection string. It's accessible from `vpc-client` after peering.

```shell
```shell
psql -h vpce-XXXXXXXXXXXXXXXXXXXX.eu-west-1.vpce.amazonaws.com -U edb_admin
__OUTPUT__
Password for user edb_admin:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ Before you begin, configure the client for SSL with trigger mode.
For this example, assume file `xdb.crt` is a copy of `server.crt` and `xdb.key` is a copy of `server.key`.

If you generated the server certificate with `CN=hostname/ip-address`, create xdb.keystore/xdb_pkcs.p12 with the `postgresql.crt` and `postgresql.ke`y client files as created with `CN=username` using the following commands :
```shell
```shell
$ cp postgresql.crt xdb.crt
$ cp postgresql.key xdb.key
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ bdrdb=#
By listing all the addresses of proxies as the host, you can ensure that the client will always failover and connect to the first available proxy in the event of a proxy failing.


```shell
```shell
psql -h <ipaddressofnode1>,<ipaddressofnode2>,<ipaddressofnode3> -U enterprisedb -p 6432 bdrdb
__OUTPUT__
psql (15.2, server 15.2.0 (Debian 15.2.0-2.buster))
Expand Down