我是Coding and Computer Science的新手,我在Android Studio上使用React-native。每当我开始在机器上使用模拟器时它会问我:
ERROR Packager无法侦听端口8081 很可能另一个进程已经在使用此端口 运行以下命令以找出哪个进程:
我已经杀死了上一次我启动模拟器时收听端口8081的过程,但它问我agaain。想要了解使用taskkill / f / pid $$$$杀死端口8081后分配的端口
答案 0 :(得分:0)
嘿,即使我有同样的问题,我通过以下方式解决了这个问题:
1.) lsof -i :8081
2.) kill -9 <PID> kill the process that is running on the port 8081 by specifing the PID that you get as a result of step 1.
OR
You can try running it on another port by using the command 'react-native start --port=8088'
如果您收到错误消息“无法连接到开发服务器”,请尝试使用npm start,它应该可以正常工作。