Skip to content

Instantly share code, notes, and snippets.

View roozbehk's full-sized avatar

Roozbeh K roozbehk

View GitHub Profile

Effective Engineer - Notes

What's an Effective Engineer?

  • They are the people who get things done. Effective Engineers produce results.

Adopt the Right Mindsets

@roozbehk
roozbehk / gist:37d169026eda98018853
Created April 17, 2015 19:49
Windows Firewall Check Firewall Port
Since you are on the Windows machine, these things can be done,
Execute the following command and look for a ":3306" listener (you did not mention UDP/TCP). This will confirm there is something running on the port.
netstat -a -n
After this, if you are expecting incoming connections on this port and feel that the firewall may be blocking them, you could start windows firewall logging and check the logs for dropped connections
Go to the Windows Firewall, Advanced settings
Click on the Settings button next to "Local Area Connection"
; Open an elevated command-line window.
; At the command prompt, type
net stop WAS
; and press ENTER; type Y and then press ENTER to also stop W3SVC.
; To restart the Web server, type
net start W3SVC
Barebones Server Setup
Current Linux Distro: Ubuntu 10.04 LTS
###
Optional:
or UPDATE distro in /etc/apt/sources.list run apt-get update and apt-get dist-upgrade
solve perl: warning: Setting locale failed.
https://gist.github.com/panchicore/1269109