我们正在尝试在 Linux 中创建一个侦听端口 80 的代理。到目前为止,我们已经创建了代理,使用 mqsichangeproperties 设置了端口,并尝试重新启动代理。但是,当我们使用 netstat -an | grep 80,端口 80 没有出现在被监听的端口列表中。这些命令在 Windows 中完美运行,但是,在 Linux 中创建代理是必需的。有任何想法吗?
问问题
150 次
1 回答
1
Linux in general does not allow non root owned processes to bind to ports below 1024.
Check out this server fault question for more info and possible ways to solve it. https://serverfault.com/questions/268099/bind-to-ports-less-than-1024-without-root-access
于 2013-06-10T08:35:58.280 回答