I have a bitnami-wordpress virtual machine running on windows 7. I'm trying to set up a SSH server to access files in the virtual machine.
I used this video as reference ; SSH guide. my network preference is bridged
Then I login into my bitnami-wordpress, at this point I can access my Wordpress page. I then installed the ssh package with this command. this wasn't in the video but it was instructed by my lecturer
sudo apt-get install openssh-server
- I run putty and enter the host name as my virtual ip, 192.168.1.123, port 22, connection type SSH.
Putty refused to connect unfortunately. This was the log
2016-12-17 10:17:20 Looking up host "192.168.1.123"
2016-12-17 10:17:20 Connecting to 192.168.1.123 port 22
2016-12-17 10:17:20 We claim version: SSH-2.0-PuTTY_Release_0.67
2016-12-17 10:17:21 Failed to connect to 192.168.1.123: Network error: >Connection refused
2016-12-17 10:17:21 Network error: Connection refused
Still not sure what I missed, would appreciate any inputs
EDIT
added ipconfig results from my windows system: ipconfig
You need to actually start the SSH server by invoking the following command:
sudo service ssh start
Also make sure sure that there is no firewall blocking network between client and server.