Posted On April 1, 2019

Install SSL on ScreenConnect

kimconnect 0 comments
blog.KimConnect.com >> Linux >> Install SSL on ScreenConnect
Generate cert & key from startssl.com
Save the encrypted private key
Decrypt the private key
Download files into a directory on Windows client desktop
Rename ssl.key to screenconnectprivatekey.key
Download ScreenConnectConfigurator
Run ScreenConnectConfigurator and follow the wizard


#ssh to screenconnect server
install vsftp and set selinux & firewall permissions
Use Filezilla to upload the extracted 443.cer & 443.pvk files to the server's /home/kim
ssh to screenconnect server
cd /home/kim
mv 443.cer /opt/screenconnect/App_Runtime/etc/.mono/httplistener/443.cer
mv 443.pvk /opt/screenconnect/App_Runtime/etc/.mono/httplistener/443.pvk
vim /opt/screenconnect/web.config

#Set this value:
<add key="WebServerListenUri" value="https://+:443/"></add>

#Restart screenconnect:
/etc/init.d/screenconnect restart

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Linux Filesystem Hierarchy Standard (FHS)

/bin : binaries to run fundamental Linux functions/boot : boot partition/cdrom : legacy mounting point/dev…

Linux: how to make automounts persistent

# Step 1: discover the device using its current mount path mountPath=/media/kim/Data findmnt | grep…

How to Fix a Broken Ubuntu Upgrade

Sometimes, a power failure or manual interruption during a Linux OS upgrade can render the…