我正在尝试在 Ubuntu 18.04 上使用 adb,但是当我使用任何命令时,除了“adb version”之外,它会下降到下一行并且什么都不做。我试过有和没有 sodo。
Android Debug Bridge version 1.0.39
Version 1:8.1.0+r23-5~18.04
Installed as /usr/lib/android-sdk/platform-tools/adb
有人遇到过这个问题吗?
请告诉我我做错了什么。我有一个配置,其中 apache 侦听外部接口,托管域,并充当几个内部服务器的代理。在大多数情况下,这非常有效。当特定 url 与 proxypass 指令匹配时,apache 会转发到内部站点。但是,我正在尝试使用 NAT 转发到另一个虚拟服务器,但它一直转发到主机,但只能从外部转发。例如,这是代理的配置:
<VirtualHost *:80>
ServerName example.com
主机侦听名为 example.com 的端口 12000。ProxyPass 将域的根转发到计算机,hostmachine
ProxyPass / http://hostmachine:12000/
代理将 /billing 转发到主机上的端口 2080,使用 vbox NAT 将其从端口 2080 转发到端口 80,名称为 example.com/billing
ProxyPass /billing http://hostmachine:2080/billing/
我正在使用 NAT 将主机上的端口 2080 转发到虚拟服务器的端口 80。
vboxmanage showvminfo server1
...
NIC 1 Rule(0): name = http, protocol = tcp, host ip = , host port = 2080, guest ip = , guest port = 80
这是问题所在,当我将内部(甚至代理服务器)浏览器定向到 hostmachine:2080 时,我从虚拟server1获得了预期的 html 文件。当我尝试从外部访问它时,通过代理路由我从主机获取 html文件
从内部计算机:
telnet hostmachine 2080
Trying 10.28.45.100...
Connected to hostmachine.
Escape character is '^]'.
GET /billing/index.html
test billing server1
Connection closed by foreign host.
从外部浏览器:
http://example.com/billing
test billing hostmachine
从外面看,这就是应该发生的事情
example.com:80/billing -> ProxyPass -> hostmachine:2080 -> 2080:NAT:80 -> server1:80/billing
怎么了
example.com:80/billing -> ProxyPass -> hostmachine:80