Best way to bypass a corporate NLTM proxy with PX proxy, not CNTLM

Working in a corporate ecosystem can be difficult sometimes. You may need to specify proxy settings for the applications which need to connect to the internet. Especially if your company have a windows proxy with NTLM authentication, that can be a nightmare. Even if you have a username password for proxy, you cannot just set that proxy to many applications like NPM, Maven, SourceTree.. because they don’t have support for NLTM authentication. To solve this problem, you need to configure another proxy that will connect to company NTLM proxy, and applications will connect that proxy. You have a few options … Continue reading Best way to bypass a corporate NLTM proxy with PX proxy, not CNTLM

How to Install SSH Client on Windows

The answer is really simple, you may have already it on your pc. If you are looking for SSH probably you are a developer and you have installed git before. And the news is, GIT has ssh in their binaries. Go to C:\Program Files\Git\usr\bin and check for ssh.exe or C:\Program Files\Git\usr\bin for old versions And then add ” C:\Program Files\Git\usr\bin” to PATH at System variables. And now you can execute ssh commands with command line. Continue reading How to Install SSH Client on Windows

How to setup Keycloak 6 with Oracle Database

Keycloak comes with H2 database for quick prototyping and simplification to bootstrap. But in production, you may want to change it to a more mature database like Oracle, MySQL, PostgreSQL etc. To do that, there are 2 simple steps you need to follow 1) Add Oracle Oracle JDBC Thin driver Go to modules folder and create below path modules\system\layers\keycloak\com\oracle\ojdbc6\main Create a module.xml at main folder with below content <?xml version=”1.0″ ?><module xmlns=”urn:jboss:module:1.3″ name=”com.oracle.ojdbc6″> <resources> <resource-root path=”ojdbc6″/> </resources> <dependencies> <module name=”javax.api”/> <module name=”javax.transaction.api”/> </dependencies></module> Copy ojdbc6.jar to main folder ( I use 11.2.0.4 version). You can download ojdbc.jar with below url. … Continue reading How to setup Keycloak 6 with Oracle Database