MavericksからYosemiteにアップグレードしたところ、curl
ループバックホスト名が表示されなくなりました。
テストする単純なhttpサーバーをセットアップします。
$ python -m SimpleHTTPServer
Serving HTTP on 0.0.0.0 port 8000 ...
これで、クロームでlocalhost:8000にアクセスできます。私もそれを得ることができます。しかし、カールでは、これが起こります:
$ curl localhost:8000
curl: (7) Failed to connect to localhost port 8000: Connection refused
ただし、これは機能します。
$ curl 127.0.0.1:8000
私はwgetプロキシ設定に関するこの回答を読みましたが、これは機能するため、助けにはなりませんでした:
$ wget --proxy=off localhost:8000
/etc/hosts
ファイルにいくつかの異なるループバックホスト名がリストされているため、アプリをローカルで開発でき、curlでデバッグするのに慣れているため、これは非常にイライラします。
osxに同梱されているcurlのバージョンで試しました。
$ curl --version
curl 7.37.1 (x86_64-apple-darwin14.0) libcurl/7.37.1 SecureTransport zlib/1.2.5
Protocols: dict file ftp ftps gopher http https imap imaps ldap ldaps pop3 pop3s rtsp smtp smtps telnet tftp
Features: AsynchDNS GSS-Negotiate IPv6 Largefile NTLM NTLM_WB SSL libz
$ curl localhost:8000
curl: (7) Failed to connect to localhost port 8000: Connection refused
$ curl 127.0.0.1 # works
そして、私はカールをbrewでコンパイルしようとしました:
$ /usr/local/Cellar/curl/7.38.0/bin/curl --version
curl 7.38.0 (x86_64-apple-darwin14.0.0) libcurl/7.38.0 SecureTransport zlib/1.2.5
Protocols: dict file ftp ftps gopher http https imap imaps ldap ldaps pop3 pop3s rtsp smtp smtps telnet tftp
Features: IPv6 Largefile NTLM NTLM_WB SSL libz
$ /usr/local/Cellar/curl/7.38.0/bin/curl localhost:8000
curl: (7) Failed to connect to localhost port 8000: Connection refused
$ /usr/local/Cellar/curl/7.38.0/bin/curl 127.0.0.1:8000 # works