Differences between revisions 1 and 5 (spanning 4 versions)
Revision 1 as of 2017-12-24 16:48:49
Size: 26
Comment:
Revision 5 as of 2017-12-24 16:53:47
Size: 424
Comment:
Deletions are marked like this. Additions are marked like this.
Line 2: Line 2:

== Keys ==

On each of the Glusterfs servers and clients run.
{{{
mkdir /etc/ssl/glusterfs
cd /etc/ssl/glusterfs
openssl genrsa -out glusterfs.key 2048
}}}

== Certificates ==
Now sign certificates using those keys. Replace the `CN` so it matches the host you are siging the certificate on.
{{{
openssl req -new -x509 -key glusterfs.key -subj "/CN=gluster01" -out glusterfs.pem
}}}

GlusterFS Encryption

Keys

On each of the Glusterfs servers and clients run.

mkdir /etc/ssl/glusterfs
cd /etc/ssl/glusterfs
openssl genrsa -out glusterfs.key 2048

Certificates

Now sign certificates using those keys. Replace the CN so it matches the host you are siging the certificate on.

openssl req -new -x509 -key glusterfs.key -subj "/CN=gluster01" -out glusterfs.pem

None: GlusterFS Encryption (last edited 2021-03-26 21:25:57 by Kristian Kallenberg)