Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SOCKET ERROR: [Errno 111] Connection refused on Ubuntu

Traceback (most recent call last):
   s = smtplib.SMTP('localhost')
  File "/usr/lib/python2.7/smtplib.py", line 251, in __init__
    (code, msg) = self.connect(host, port)
  File "/usr/lib/python2.7/smtplib.py", line 311, in connect
    self.sock = self._get_socket(host, port, self.timeout)
  File "/usr/lib/python2.7/smtplib.py", line 286, in _get_socket
    return socket.create_connection((host, port), timeout)
  File "/usr/lib/python2.7/socket.py", line 571, in create_connection
    raise err
socket.error: [Errno 111] Connection refused

Q: I am getting this error on my ubuntu machine. Question is why so? The reason being when I execute the same code on Mac OS X 10.7 I don't see this error. And I did not do any special configuration on Mac for this to work.

like image 484
Ankur Agarwal Avatar asked Nov 26 '25 17:11

Ankur Agarwal


1 Answers

Make sure that your system is running smtp server:

netstat -nlt | grep '\<25\>'

If your system is running the smtp server, the above command will show somehting like this:

tcp        0      0 0.0.0.0:25              0.0.0.0:*               LISTEN     
like image 132
falsetru Avatar answered Nov 28 '25 06:11

falsetru



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!