This article is dedicated to Ansible lovers. Here, I am going to explain to setup Ansible for windows user as Ansible can only run on linux platform. Lots of developer are finding difficult to use Ansible in windows machine therefore,…
External API Integration with Angular 2+ service and component
How to create (Oracle,Other)SQL DB configuration using spring and maven
How to create the best MongoDB configuration with spring
Objective: This blog is to give an insight to create the NoSQL DB configuration using spring and maven. Pre-requisite: To create MongoDB/NoSQL configuration, following are required. Running MongoDB/NoSQL DB, could be protected by user name and password Maven dependencies Maven…
How to set proxy for git, npm, windows, linux and mac OSX
Objective: In this blog, a quick overview to set the proxy for different operating systems and software like git, npm etc. Window Command Prompt
1 2 3 |
set HTTP_PROXY=https://[username:password]@[proxyserver]:[port] set HTTPS_PROXY=%HTTP_PROXY% |
Linux Command Prompt
1 2 3 |
export HTTP_PROXY=https://[username:password]@[proxyserver]:[port] export HTTPS_PROXY=$HTTP_PROXY |
Mac OSX Command Prompt
1 2 3 |
export HTTP_PROXY=https://[username:password]@[proxyserver]:[port] export HTTPS_PROXY=$HTTP_PROXY |
NPM Command Prompt
1 2 3 |
npm config set proxy https://[username:password]@[proxyserver]:[port] npm config set https_proxy https://[username:password]@[proxyserver]:[port] |
GIT Command Prompt
1 2 3 |
git config --global http.proxy https://[username:password]@[proxyserver]:[port] git config --global https.proxy https://[username:password]@[proxyserver]:[port] |
How to get Web Package Version using maven
How to Create Websphere Profile Using Command Line
Objective: To demonstrate some command to create websphere profile using command line in case of PMT(Profile Management Tool) doesn’t work. I will also explain to set different JDK version to the profile. Create Profile using Command Line
1 |
[WAS installation directory]\bin>manageprofiles.bat -create -profileName AppServ01 -profilePath ../profiles/AppSrv01 |
Command to…