Skip to content

Commit

Permalink
Fixes shell space
Browse files Browse the repository at this point in the history
Signed-off-by: Dj Walker-Morgan <[email protected]>
  • Loading branch information
djw-m committed Aug 24, 2023
1 parent 4c47cce commit 55c648f
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
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 @@ -3,7 +3,7 @@
{% block prerequisites %}
{{ super() }}
- Download the GPG key to your APT keyring directly using the apt-key utility
```shell
```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

0 comments on commit 55c648f

Please sign in to comment.