This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
Two common cases which make the install of Python packages harder due to networking issues are: a) Install behind a Proxy b) Install without access to the internet
In the case where the target machine connects to the internet over a network proxy, export the following environment vars, as appropriate - http_proxy
and https_proxy
. Eg:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Example EFM Config | |
# Web UI users authenticate using Knox SSO | |
# MiNiFi Agents authenticate using two-way TLS with client certificates | |
# Web Server TLS Properties | |
efm.server.ssl.enabled=true | |
efm.server.ssl.keyStore=./conf/keystore.jks | |
efm.server.ssl.keyStoreType=jks | |
efm.server.ssl.keyStorePassword=yourKeyStorePasswordHere | |
efm.server.ssl.keyPassword=yourKeyPasswordHere |