Windows BarrierServer Setup #1616
Replies: 1 comment
-
Recently, @ludificorpayne mentioned in this issue that one way to get our hands on the Actually, as many others suggested, the following one-liner should suffice:
Though, per my case, I found the Git-version of
I don't have a good method to create the file. It took hours of tinkering to settle with the following configuration. It has been working well for years. (Though, to start from scratch, I found the Synergy document very helpful.) Click to expand the configuration file, with A1-A5 belong to AW (server).Here, Surface 7 and T480 are two clients. One runs Win 10, and one runs Win 11.
|
Beta Was this translation helpful? Give feedback.
-
I am installing barrier in server mode 2.4.0 on Windows 10. The gui install does not create the SSL cert for the server component.
After install using gui install, there is NO barrier/config file created and neither are the ssl cert files (.pem or fingerprint)
I have tried running this:
MKDIR "%LocalAppData%\Barrier\SSL\Fingerprints" >NUL 2>&1 SET OPENSSL_CONF=C:\Program Files\Barrier\barrier.conf SET RANDFILE=%LocalAppData%\Barrier\SSL\.rnd "C:\Program Files\Barrier\openssl.exe" req -x509 -nodes -days 365 -subj /CN=Barrier -newkey rsa:2048 -keyout "%LocalAppData%\Barrier\SSL\Barrier.pem" -out "%LocalAppData%\Barrier\SSL\Barrier.pem" IF EXIST "%RANDFILE%" DEL "%RANDFILE%" FOR /F "tokens=2 delims=^=" %a in ('""C:\Program Files\Barrier\openssl.exe" x509 -fingerprint -sha1 -noout -in "%LocalAppData%\Barrier\SSL\Barrier.pem""') DO ECHO %a > "%LocalAppData%\Barrier\SSL\Fingerprints\Local.txt"
But this doesn't work due to Windows not allowing writing to the C:\Program Files\Barrier directory
Can someone provide guidance on how to properly setup SSL cert on the server?
Beta Was this translation helpful? Give feedback.
All reactions