Objective: In my previous blog, I explained and demonstration NoSQL DB configuration and this blog is to give an insight to create the relational SQL DB configuration using spring and maven with proper transaction manager and entity manager factory configuration…
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…
Setup Websphere from scratch using IBM Installation Manager
How to do Zero Downtime Deployment in simple steps
Java Access Modifiers
How to publish domain name over the internet with different hosting provider
Objective: Here, to explain the steps to publish the web site/application and different combination of hosting provider and domain provider. Prerequisite: One web site/application up and running Domain and Hosting Provider Combination: There are only two combination of domain and…