Report this

What is the reason for this report?

trying to send a GET http to my Ubuntu LAMP on 14.04 install, I get a code 500. wonder if this is a firewall issue

Posted on July 16, 2017

Temperature: 65.98 F [HTTP] begin… [HTTP] GET… [HTTP] GET… code: 500

this is from my device that is sending to droplet



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.

Hello,

A 500 error wouldn’t be related to your firewall; as it’s a server error. This means the request has reached your server, but the server isn’t processing it normally for some reason.

It’s impossible to know from this error what the exact problem is, for that you’d need to check your Apache logs. You can do this with:

sudo tail -20 /var/log/apache2/error.log

That should tell you exactly why that request is failing.

Regards, Darian Platform Support Advocate

This comment has been deleted

Hi @rbjassoc

No, error code 500 means that something went wrong on the server. Read more here: https://www.digitalocean.com/community/tutorials/how-to-troubleshoot-common-http-error-codes#500-internal-server-error

But we have to look at the error log to see more information. Unless the default error log location is changed, then use this command to show the last 30 lines:

tail -30 /var/log/apache2/error.log

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.