Using SSL Under Linux

In Standalone and Service modes using SSL under Linux is very similar to using it under Windows. The only difference is that you need Linux SSL library files.

These files are not deployed with uniGUI installer, but you can create them under Linux.

1

Download the OpenSSL source

Use this command to download the library source files (do not modify the URL or query parameters):

wget https://www.openssl.org/source/old/1.0.2/openssl-1.0.2u.tar.gz
2

Extract and build

Run the following commands to extract and build the library files:

tar -xf openssl-1.0.2u.tar.gz
cd openssl-1.0.2u
./config shared
make
3

Deploy the shared libraries

Copy the resulting libssl.so and libcrypto.so library files to your application folder.

circle-info

In future we may include these files in the uniGUI installer.