stf启动笔记

1、启动stf服务端 指定ip和允许远程连接启动:stf local --public-ip xx.xx.xx.xx --allow-remote

2、访问stf的地址:192.168.1.100:7100(本机IP:7100)

3、启动stf后,配置爱丁堡host连接windows上的设备:stf provider --name mikezhoudeMac-mini.local --min-port 7400 --max-port 7700 --connect-sub tcp://127.0.0.1:7114 --connect-push tcp://127.0.0.1:7116 --group-timeout 20000 --public-ip 172.17.9.49(stf的机器) --storage-url http://localhost:7100/ --adb-host 172.17.9.20(有手机,需要连线的主机) --adb-port 5037 --vnc-initial-size 600x800 --allow-remote

解析: 1、对于上层连接,我们需要指定 --connect-sub 及 --connect-push 这两个参数,这两个参数的值需要对应 triproxy dev 中的 --bind-pub 和 --bind-pull 的参数。

            2、下层连接我这里指的就是和 adb server 的连接了,只有两个参数:--adb-host 和 --adb-port。使用默认值的话会连接 provider 所在机器的 adb server 。 在可以装上 stf 的操作系统上(Linux,Mac),直接启动新的 stf provider 就可以了,结构比较简单,而且也没太大必要配置这两个参数。 但在 windows 上,由于 stf 不支持 windows ,所以只能通过配置 adb host 的方式来让其它机器的 provider 连接 windows 上启动的 adb server 。


一、检查哪个应用占用了改端口

     1、netstat -ano | findstr "5037"回车,记下最后一位数字,即PID

      2、tasklist|findstr "PID"或是使用任务管理器来查找该PID所对应的程序


你可能感兴趣的:(stf启动笔记)