Hi,
I found a problem here:
http://docs.ceph.com/docs/v0.80.5/install/install-ceph-gateway/#id4

The command:
openssl x509 -req -days 365 -in ca.csr -signkey ca.key -out ca.crt

needs input file ca.csr.


The right procedure should be [1]:

# Generate private key
openssl genrsa -out ca.key 2048

# Generate CSR
openssl req -new -key ca.key -out ca.csr

# Generate Self Signed Key
openssl x509 -req -days 365 -in ca.csr -signkey ca.key -out ca.crt

# Copy the files to the correct locations
cp ca.crt /etc/pki/tls/certs
cp ca.key /etc/pki/tls/private/ca.key
cp ca.csr /etc/pki/tls/private/ca.csr


[1] 
http://wiki.centos.org/HowTos/Https#head-37cd1f5c67d362756f09313cd758bef48407c325

Regards
_______________________________________________
ceph-users mailing list
[email protected]
http://lists.ceph.com/listinfo.cgi/ceph-users-ceph.com

Reply via email to