Translate

Saturday 14 February 2015

Vagrant connection timeout

Vagrant Connection Timeout



On running vagrant on windows one of the problems encountered is the connection timeout.
This can be resolved by:
  1. Installing a software called peccy and knowing whether virtualization is supported and enabled or not. It is disabled by default in new systems.
  2. If virtualization is supported but disabled, then it should be enabled by restarting the system and going to the bios setting of the system and finding the virtualization option and turning it on.
  3. Save and restart the system and check again through peccy software, it should now be enabled.
Now hopefully connection timeout error would be resolved.

Django Ssh agent

Django ssh-agent



On windows using git bash ssh-agent can be started using following commands:

  • eval `ssh-agent -s`
  • ssh-add ~/.ssh/id_rsa
Provided private git keys are already present on users/account-name/.ssh folder.