Report this

What is the reason for this report?

How to enable port 25 on my Ubuntu server?

Posted on December 1, 2015

So I am running Spree e-commerce in Rails. When I click on ‘place order’ after I have added items to my cart and proceed to checkout i got this error. (same question as this person)

Errno::ECONNREFUSED in Spree::CheckoutController#update
Connection refused - connect(2) for "localhost" port 25

I believe it has something to do with the email but I am not 100 percent sure. As for spree is defaulted to port 25 as referred to here

I checked my port using

telnet mydroplet'sIPaddress 25

and it said (as expected)

telnet: Unable to connect to remote host: Connection refused

I tried a solution to unblock my port 25 by adding the line below as suggested in another question here.

iptables -I INPUT -p tcp -m tcp --dport 25 -j ACCEPT

and recheck using the same method and still no good.

I even went to setup my firewall using ufw and made sure my port 25 is available by following this tutorial

sudo ufw allow 25/tcp

still no good…

PLEASE HELP!

How do I enable my port 25?

I am running Ubuntu Ruby on Rails on 14.04 (Postgres, Nginx, Unicorn).

My IP address is 128.199.95.219 if anyone wants to try my port 25.



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

+1, this is very upsetting.

Just open SSH to the server and allow it: ufw allow 25

Facing same problem and no apparent solution

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.