How to SSH Login without password using key pair
In last post we saw how to use Expect Script for login to remote server using SSH. The problem with Expect script …
In last post we saw how to use Expect Script for login to remote server using SSH. The problem with Expect script …
I have to deal with a lot of unix servers in my daily life, whether its at work or it’s my hosting …
I use SVN as repository management tool and usually work on multiple projects simultaneously. I was looking for some way using SVN …
Recently I started working on a huge project that was using Maven as build and deployment tool, when I tried to build …
Recently I installed memcached server on CentOS operating system to use as caching mechanism for my VBulletin forum. To make sure that …
Few days back, my apache server crashed and my website was down for almost 3 hours. I only find it out when …
I use SVN for my projects version control system, sometimes I need to see the difference between two tags or two branches …
Like any website owner, I always crave to change my website themes and wordpress plugin layouts to get better presentation. Most of …
If you are tech and gadget savvy, then you must be aware of QR codes. You will find it everywhere these days …
Recently in one of my project I had to connect to a remote database that was setup on SSH enabled server. Since it was on SSH enabled server, we can’t connect it directly using JDBC connection API. To achieve this, we first need to create SSH session and then using Port Forwarding we can forward the request to server and connect to database. I achieved this using JSch Port Forwarding and then connecting to database.