-
I have installed the Windows 10 and Linux versions of Barrier via BarrierSetup-2.4.0-release.exe for Windows and Snap Install(ver. 2.4.0-release-ac5a1bfd). Both show the Barrier software setting SSL "Fingerprint: Disabled" with no option of enabling the setting. I have viewed several tutorials on youtube on how to get it up and running. I am able to follow along and input the needed info, however, most if not all of the videos show the SSL Fingerprint are with some type of certificate address or something. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Goto https://stackoverflow.com/questions/67343804/error-ssl-certificate-doesnt-exist-home-rsvay-snap-barrier-kvm-2-local-shar Stay in the SSL directory to run the script mentioned. (You have to create a text file Local.txt in the Fingerprints directory but run the script from SSL). |
Beta Was this translation helpful? Give feedback.
-
Summary of ResolutionsNote: Windows requires https://gitforwindows.org/ Windows# Powershell
Set-Alias openssl "C:\Program Files\Git\usr\bin\openssl.exe"
cd ~\AppData\Local\Barrier\SSL\
openssl req -x509 -nodes -days 365 -subj /CN=Barrier -newkey rsa:4096 -keyout Barrier.pem -out Barrier.pem REM cmd
cd C:\Users\%USERNAME%\AppData\Local\Barrier\SSL\
openssl req -x509 -nodes -days 365 -subj /CN=Barrier -newkey rsa:4096 -keyout Barrier.pem -out Barrier.pem Linux, macOS, and unix stylePick your ### Ubuntu 22 Apt
BARRIER_SSL_PATH=~/.local/share/barrier/SSL/
### Ubuntu Snap
BARRIER_SSL_PATH=~/snap/barrier/current/.local/share/barrier/SSL
### Fedora Snap
BARRIER_SSL_PATH=~/snap/barrier-kvm/current/.local/share/barrier/SSL/
### macOS
BARRIER_SSL_PATH=~/Library/Application Support/barrier/SSL
mkdir -p "${BARRIER_SSL_PATH}" && cd "${BARRIER_SSL_PATH}"
openssl req -x509 -nodes -days 365 -subj /CN=Barrier -newkey rsa:4096 -keyout Barrier.pem -out Barrier.pem Use the unix version with the correct path for your system. Find the path in the Barrier log. 2023-02-26: Git for Windows dependency added Cheers Originally Posted here: #231 (comment) |
Beta Was this translation helpful? Give feedback.
Goto https://stackoverflow.com/questions/67343804/error-ssl-certificate-doesnt-exist-home-rsvay-snap-barrier-kvm-2-local-shar
The paths may not align but if you follow the steps, you'll get it working. Win 10 & Ubuntu 20.04.4. Had to go to ~/snap/barrier/<3digit#>/.local/share/barrier/SSL and created the Fingerprints folder.
Stay in the SSL directory to run the script mentioned.
(You have to create a text file Local.txt in the Fingerprints directory but run the script from SSL).
I don't have enough points to thank you properly @ stackoverflow however, many times over... Thank U for your solution!!!