Add new attachment

Only authorized users are allowed to upload new attachments.

This page (revision-19) was last changed on 13-Jun-2022 03:22 by Ben Spink

This page was created on 29-Dec-2020 05:25 by Ben Spink

Only authorized users are allowed to rename pages.

Only authorized users are allowed to delete pages.

Difference between version and

At line 34 added one line
[no]: yes
At line 35 changed 70 lines
<i>***type "yes" if the above is accurate and correct</i><br/>
[no]: yes<br/>
Enter key password for -crushftp-<br/>
<i>***do yourself a favor and use the same password (just hit return, or re-key it.)</i><br/>
(RETURN if same as keystore password): <br/>
<br/>
</font>
<b>PART 2</b><br/>
That was the easy part. You now have a cert waiting to be signed. Now we get a certificate request that we give to GoDaddy to generate our certificate.<br/>
<br/>
<i>(" [ " indicates the beginning of a line, and " ] " indicates the end. You should not enter those two characters in terminal though.</i><br/>
<br/>
<font size="-2" face="courier"> [ keytool -certreq -keyalg RSA -alias crushftp -file crushftp.csr -keystore crushftp.keystore ] <br/>
Enter keystore password: <br/>
<i>***enter your password you used from above.</I><br/>
<br/>
</font>
Now you take this resulting "crushftp.csr" file and copy its contents and paste into GoDaddy's CSR request page.<br/>
<br/>
<i>***KEEP your "crushftp.keystore" file! You must have it to finish the steps once you get your certificate from GoDaddy.</i><br/>
<br/>
<b>PART 3</b><br/>
After completing the cert request through GoDaddy, you will be given a link to download your certificate package. This .zip file expands into a folder with the following files:<br/>
gd_bundle.crt<br/>
gd_cross_intermediate.crt<br/>
gd_intermediate.crt<br/>
www.crushftp.com.crt<br/>
<br/>
(Instead of www.crushftp.com.crt, you will have one corresponding to your domain.)<br/>
You still need one more file. Go to GoDaddy to get their root certificate:<br/>
https://certificates.starfieldtech.com/Repository.go<br/>
<br/>
Download the "valicert_class2_root.crt" file. Place it in the same folder with all the other certificates.<br/>
<br/>
Copy in your "crushftp.keystore" file created above in Part 1. Be sure to use a COPY in case anything goes wrong!<br/>
<br/>
Now use OS X terminal again to finish building your fully trusted certificate.<br/>
<br/>
<i>(" [ " indicates the beginning of a line, and " ] " indicates the end. You should not enter those two characters in terminal though.</i><br/>
<br/>
<font size="-2" face="courier">
<i>***import the root certificate</i><br/>
[ keytool -import -alias root -keystore crushftp.keystore -trustcacerts -file valicert_class2_root.crt ] <br/>
<i>***enter your password from above</i><br/>
Trust this certificate? [no]: yes<br/>
<i>***enter "yes"</i><br/>
Certificate was added to keystore<br/>
<br/>
<i>***import the "cross" certificate</i><br/>
[ keytool -import -alias cross -keystore crushftp.keystore -trustcacerts -file gd_cross_intermediate.crt ] <br/>
<i>***enter your password from above</i><br/>
<br/>
<i>***import the "intermediate" certificate</i><br/>
[ keytool -import -alias intermed -keystore crushftp.keystore -trustcacerts -file gd_intermediate.crt ] <br/>
<i>***enter your password from above</i><br/>
<br/>
<i>***finally import your signed certificate which updates your pre-existing unsigned certificate</i><br/>
[ keytool -import -alias crushftp -keyalg RSA -keystore crushftp.keystore -trustcacerts -file www.crushftp.com.crt ] <br/>
<i>***substitute your certificates name instead of "www.crushftp.com.crt"</i><br/>
<i>***enter your password from above</i><br/>
<br/>
</font>
Now the resulting crushftp.keystore is a complete signed certificate chain. Place this file where ever you like, but that might as well be in the CrushFTP folder. Then go to the preferences of CrushFTP. Choose encryption on the left, then SSL. Browse and locate your crushftp.keystore file.<br/>
<br/>
For the passwords, enter in the password you used above everywhere. Set both the keystore password and the cert password. They should be the same as long as you followed directions above.<br/>
<br/>
Lastly, either restart CrushFTP, or choose stop all servers, start all servers to make the server items load the new certificate.<br/>
<br/>
If you already have a certificate for Apache, you may be able to convert it to a Java keystore and use it with CrushFTP. I provide this information untested, but it in theory looks like it would work.<br/>
<a href="http://www.ks.uiuc.edu/Research/biocore/localServer/install/installCert.shtml">Install Apache Cert</a><br/>
Type "yes" if the above is accurate and correct.
{{{
Enter key password for -crushftp-
(RETURN if same as keystore password):
}}}
Do yourself a favor and use the same password (just hit return, or re-key it.)
*PART 2
You now have a self singed cert waiting to be signed by a certificate authority. Now we get make a certificate request that we give to GoDaddy to sign.
{{{
keytool -certreq -keyalg RSA -alias crushftp -file crushftp.csr -keystore crushftp.keystore
Enter keystore password:
}}}
Enter your password you used from above.
Now you take this resulting "crushftp.csr" file and copy its contents and paste into GoDaddy's CSR request page.
*WARNING! Keep your "crushftp.keystore" file! (Maybe even make a backup of it just in case you make a mistake in step 3.) You must have this original keystore file to apply the signed certificate GoDaddy gives back.
*PART 3
After completing the cert request through GoDaddy, you will be given a link to download your certificate package. This .zip file expands into a folder with the following files:
{{{
gd_bundle.crt
gd_cross_intermediate.crt
gd_intermediate.crt
www.crushftp.com.crt
}}}
(Instead of www.crushftp.com.crt, you will have one corresponding to your domain.)
You still need one more file. Go to GoDaddy to get their root certificate:
[https://certificates.starfieldtech.com/Repository.go]
Download the "valicert_class2_root.crt" file. Place it in the same folder with all the other certificates.
Copy in your "crushftp.keystore" file created above in Part 1. Be sure to use a COPY in case anything goes wrong, you can go back to your backup you made!
Now a few more command lines to finish building your fully trusted certificate. The password is the one from part 1.
{{{
keytool -import -alias root -keystore crushftp.keystore -trustcacerts -file valicert_class2_root.crt
Trust this certificate? [no]: yes
Certificate was added to keystore<br/>
keytool -import -alias cross -keystore crushftp.keystore -trustcacerts -file gd_cross_intermediate.crt
keytool -import -alias intermed -keystore crushftp.keystore -trustcacerts -file gd_intermediate.crt ]
}}}
Finally import your signed certificate which updates your pre-existing unsigned certificate.
{{{
keytool -import -alias crushftp -keyalg RSA -keystore crushftp.keystore -trustcacerts -file www.crushftp.com.crt
}}}
(Substitute your certificates name instead of "www.crushftp.com.crt".)
Now the resulting crushftp.keystore is a complete signed certificate chain. Place this file where ever you like, but that might as well be in the CrushFTP folder. Then go to the preferences of CrushFTP. Choose encryption on the left, then SSL. Browse and locate your crushftp.keystore file.
For the passwords, enter in the password you used above everywhere. Set both the keystore password and the cert password. They should be the same as long as you followed directions above.
Lastly, either restart CrushFTP, or choose stop all servers, start all servers to make the server items load the new certificate.
If you already have a certificate for Apache, you may be able to convert it to a Java keystore and use it with CrushFTP. I provide this information untested, but it in theory looks like it would work.
[http://www.ks.uiuc.edu/Research/biocore/localServer/install/installCert.shtml]
Version Date Modified Size Author Changes ... Change note
19 13-Jun-2022 03:22 6.064 kB Ben Spink to previous
18 29-Dec-2020 05:25 5.769 kB Ben Spink to previous | to last SSL ==> SSL_CLI
17 29-Dec-2020 05:25 5.769 kB Ben Spink to previous | to last
16 29-Dec-2020 05:25 5.637 kB Ben Spink to previous | to last
15 29-Dec-2020 05:25 5.4 kB Ben Spink to previous | to last
14 29-Dec-2020 05:25 5.401 kB Ben Spink to previous | to last
13 29-Dec-2020 05:25 5.406 kB Ben Spink to previous | to last
12 29-Dec-2020 05:25 5.436 kB Ben Spink to previous | to last
11 29-Dec-2020 05:25 5.525 kB Ben Spink to previous | to last
10 29-Dec-2020 05:25 5.398 kB Ben Spink to previous | to last
9 29-Dec-2020 05:25 5.36 kB Ben Spink to previous | to last
8 29-Dec-2020 05:25 5.356 kB Ben Spink to previous | to last
7 29-Dec-2020 05:25 5.35 kB Ben Spink to previous | to last
6 29-Dec-2020 05:25 5.3 kB Ben Spink to previous | to last
5 29-Dec-2020 05:25 5.262 kB Ben Spink to previous | to last
4 29-Dec-2020 05:25 5.197 kB Ben Spink to previous | to last
3 29-Dec-2020 05:25 5.027 kB Ben Spink to previous | to last
2 29-Dec-2020 05:25 4.954 kB Ben Spink to previous | to last
1 29-Dec-2020 05:25 6.147 kB Ben Spink to last
« This page (revision-19) was last changed on 13-Jun-2022 03:22 by Ben Spink
G’day (anonymous guest)
CrushFTP10 | What's New

Referenced by
SSL

JSPWiki