no ssl certificate #2000
-
installed on windows and linux both logs are saying they cant find ssl certificates the folders there looking in are empty. ERROR: ssl certificate doesn't exist: C:\Users\Tommi\AppData\Local\Barrier\SSL\Barrier.pem |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 4 replies
-
Same here. I unchecked Enable SSL on both the client and server for now, and things work. Are we expected to generate our own certs for SSL to work? |
Beta Was this translation helpful? Give feedback.
-
yeah i think so. i have ssl disabled on both too and its still not working and looking for the file in the logs |
Beta Was this translation helpful? Give feedback.
-
You can also use with SSL enabled, in linux, follow these commenda: and reStart the server |
Beta Was this translation helpful? Give feedback.
-
Please try Deskflow or Input Leap as Barrier is no longer in development. https://github.com/deskflow/deskflow Both are compatible with Barrier client/server so you can try on one of your computers. If this is still an issue in those projects, we would appreciate a cross-post of this issue. Not sure which to use? This depends on your needs, but this comparison may help: You can also check out each project's 'Insights' tab, which may help you decide. |
Beta Was this translation helpful? Give feedback.
You can also use with SSL enabled,
just you need yo create Barrier.pem file at that location:
in linux, follow these commenda:
$ cd /home/adarsh/.local/share/barrier/SSL/
$ mkdir -p Fingerprints
$ openssl req -x509 -nodes -days 365 -subj /CN=barrier -newkey rsa:4096 -keyout Barrier.pem -out Barrier.pem
$ openssl x509 -fingerprint -sha256 -noout -in Barrier.pem > Fingerprints/Local.txt
$ sed -e "s/.*=/v2:sha256:/" -i Fingerprints/Local.txt
and reStart the server