clockwerk-opensim – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 vero 1 To generate a cert request and sign it with the JunkCA
2  
3 REMEMBER TO APPEND THE CA2.pem file to the bottom of the app_settings/CA.pem in the Linden client folders or you won't be able to connect!
4  
5 Generate a Host Key:
6 openssl genrsa -out host.key 2048
7  
8 Generate a Certificate signing request with *OpenSSL*:
9 openssl req -new -nodes -key host.key -out host.csr
10 When prompted for: 'Common Name (eg, YOUR name) []:', please type the domain name that this certificate will be used on.
11  
12 Or you could;
13  
14 Generate a Certificate request with the *IIS Snapin*:
15 Go to Control Panel ---> Administrative tools ---> Internet Information Services
16 Pick a web site on your server.
17 right click, choose properties from the context menu
18 Go to the Directory Security tab
19 Click On the 'Server Certificate...' button
20 Click 'Prepare the request now, but send it later' and then follow the wizard.
21 Be sure to type the common name as the domain name that you will be servicing. www.osgrid.org or whatever server will be using this cert
22  
23 Sign the certificate request with the junkCA;
24 openssl x509 -req -days 3620 -CA CA.crt -CAkey CA.key -CAcreateserial -in host.csr -out signed.cer
25  
26 Import it into your MY store on windows.
27  
28 If you used OpenSSL to generate the certificate;
29 openssl pkcs12 -export -in server.crt -inkey server.key.unsecure -out server.pfx -name "My Lovely Cert"
30 server.crt is the signed cert from the CA.
31 server.key.unsecure is the *unencrypted* private key.
32  
33 You will be asked for a password, set this if you want.
34  
35 In Windows, fire up "mmc", add the certificates Snap-in, set it to manage the local computer. Go to personal certificates folder, import server.pfx, enter password if you gave it one earlier.
36  
37 In IIS, get it to let you choose from currently installed certs. You should now be able to choose the one you just installed.
38  
39 If you used the IIS Snap-in,
40 Go to Control Panel ---> Administrative tools ---> Internet Information Services
41 Pick a web site on your server.
42 right click, choose properties from the context menu
43 Go to the Directory Security tab
44 Click On the 'Server Certificate...' button
45 Choose the radio button that says, 'Assign an existing certificate'
46  
47  
48 Mono, you must use httpcfg in the Mono-1.9.1/lib/mono/2.0 folder.
49 httpcfg -add -port <TYPE HTTPS PORT> -pvk <TYPE PRIVATE KEY FILE> -cert MyCert
50 From Lexa:
51 It expect the key to be in the windows pvk format
52 pvk -in host.key -nocrypt -out host.pvk -topvk" and use -pvk host.pvk
53 pvk is a package on FreeBSD that gets installed as part of the Mono installation
54  
55 After that, make sure to set-up your opensim.ini!
56  
57  
58 OpenSSL can be found:
59 http://www.slproweb.com/products/Win32OpenSSL.html
60  
61 httpcfg.exe for windowsXP can be found:
62 http://www.microsoft.com/downloads/details.aspx?FamilyID=49ae8576-9bb9-4126-9761-ba8011fabf38&displaylang=en
63  
64 Windows Vista users need to use netsh http!
65  
66 ---------------------------------------------------
67  
68 Additional notes
69  
70 To create your own CA
71  
72 openssl genrsa -out yourCA.key 2048
73 openssl req -new -key yourCA.key -x509 -days 3620 -out yourCA.crt
74  
75 and the final step.. (AND THIS IS IMPORTANT)
76  
77 openssl x509 -in CA.crt -out yourCA.pem -outform PEM
78  
79 The last step will produce a certificate in the PEM format that you can append to the Linden client's app_settings/CA.pem file
80 so that it can validate certificates that are generated from your CA.
81  
82 One last important thing!
83  
84 All users that connect with linden clients
85 using SSL NEED the pem file you created in that last step appended to theirs, or their client will give them a weird error about
86 their clock being wrong!