summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorNarayan Desai <desai@mcs.anl.gov>2005-10-18 04:55:48 +0000
committerNarayan Desai <desai@mcs.anl.gov>2005-10-18 04:55:48 +0000
commit9f9262ac2ec4e854f3638efb61adadf6c9c2531e (patch)
tree99851e8cc4772210b07aa967026d7523a28e2d77 /doc
parentbf6bf90830fd0dcd4406278b31296a24e77e2257 (diff)
downloadbcfg2-9f9262ac2ec4e854f3638efb61adadf6c9c2531e.tar.gz
bcfg2-9f9262ac2ec4e854f3638efb61adadf6c9c2531e.tar.bz2
bcfg2-9f9262ac2ec4e854f3638efb61adadf6c9c2531e.zip
add xmlrpc key generation info
(Logical change 1.337) git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@1385 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'doc')
-rw-r--r--doc/install.xml10
1 files changed, 9 insertions, 1 deletions
diff --git a/doc/install.xml b/doc/install.xml
index 48498a735..3f397ccb8 100644
--- a/doc/install.xml
+++ b/doc/install.xml
@@ -134,8 +134,16 @@ $ python setup.py install
<para>SSL is used for channel-level data encryption. The
requisite SSL certificates must be generated on the server
- side. I need to figure out how to do this.
+ side. The following command will generate a server key:
</para>
+
+ <programlisting>
+openssl req -x509 -nodes -days 1000 -newkey rsa:1024 -out server.pem -keyout server.pem
+ </programlisting>
+
+ <para>This command will generate an SSL key including both an
+ RSA key and a certificate. This is suitable for use with the
+ Bcfg2 XML-RPC server.</para>
</sect2>