Tag Archives: server

Cannot SSH localhost

I was trying to connect to localhost machine via SSH but was not able to do so on my Ubuntu box. That is because SSH server needs to be installed and running on port 22. You can do so by executing the following command on Ubuntu: sudo apt-get install openssh-server You can then check it’s […]

0  

Generating Certificates using Keytool

In Windows 7, make sure you open Command Prompt under Administrative mode. On Server machine: $ keytool -genkey -alias SrvKeystore -keypass abcd123 -keystore SrvKeystore -storepass abcd123 What is your first and last name? [Unknown]: G P What is the name of your organizational unit? [Unknown]: GauZ What is the name of your organization? [Unknown]: GauZ […]

0