My proxy values suggest that localhost:3128
is being used as a proxy. I should add that I personally added these environmental variables in an .sh
file in my profile.d
folder. A tutorial indicated I needed to do this to enable a particular Google service.
$ env
HTTP_PROXY=http://localhost:3128
HTTPS_PROXY=http://localhost:3128
http_proxy=http://localhost:3128
https_proxy=http://localhost:3128
However when I netstat
the output doesn't indicate that the port is in use. So I assume that setting the environment variables didn't necessarily turn on a proxy although I'm not certain of that.
$ netstat -tuplen
tcp 0 0 127.0.0.1:6379 0.0.0.0:* LISTEN 988 25226 -
tcp 0 0 0.0.0.0:111 0.0.0.0:* LISTEN 0 20028 -
tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 0 26841 -
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 0 26819 -
tcp 0 0 0.0.0.0:443 0.0.0.0:* LISTEN 0 26843 -
tcp6 0 0 :::111 :::* LISTEN 0 20030 -
tcp6 0 0 :::8080 :::* LISTEN 0 32013 -
tcp6 0 0 :::80 :::* LISTEN 0 26842 -
tcp6 0 0 :::22 :::* LISTEN 0 26827 -
tcp6 0 0 :::443 :::* LISTEN 0 26844 -
tcp6 0 0 :::9090 :::* LISTEN 0 21892 -
udp 0 0 0.0.0.0:111 0.0.0.0:* 0 20029 -
udp 0 0 127.0.0.1:323 0.0.0.0:* 0 22534 -
udp6 0 0 fe80::c37:2dff:fe7d:546 :::* 0 28138 -
udp6 0 0 :::111 :::* 0 20031 -
udp6 0 0 ::1:323 :::* 0 22535 -
A second piece of data indicates that something is not right. I'm having trouble with AWS SES.
When I test my connection I get an error.
$ aws ses verify-email-identity --email-address [email protected]
Failed to connect to proxy URL: "http://localhost:3128"
However when I comment out my .sh file and reboot the server the http_proxy
environmental variables are gone and AWS SES works as expected.
So does the output mismatch between env
and netstat
indicate anything? I'm not sure how to approach this problem.
0 Answers