Linux终端在HTTP呼叫

时间:2017-06-13 10:32:13

标签: apache http ubuntu-14.04

我正在使用ubuntu 14.04,LAMP堆栈工作并在端口80上侦听。 我不记得出了什么问题,现在我从终端发出任何http请求,它尝试连接到端口8888上的127.0.0.1(端口8888不存在)。任何有关解决此问题的指导将不胜感激。

wget http //nmap.org/dist/nmap-5.51.tar.bz2
--2017-06-13 15:20:11--  http://http/
Connecting to 127.0.0.1:8888... failed: Connection refused.
//nmap.org/dist/nmap-5.51.tar.bz2: Scheme missing.

git pull
fatal: unable to access 'https://github.com/SwipBox/admin.git/': Failed to connect to 127.0.0.1 port 8888: Connection refused

1 个答案:

答案 0 :(得分:1)

此命令

wget http //nmap.org/dist/nmap-5.51.tar.bz2

需要:

wget http://nmap.org/dist/nmap-5.51.tar.bz2

此外,请确保您没有定义任何环境变量,例如http_proxy。如果有疑问,请将--no-proxy传递给wget的命令行。