登录 主页

运行 ./sthp-linux 报错说:The application panicked (crashed). error binding to 0.0.0.0:8090: error creating server listener: Address already in use (os error 98)

2023-10-18 11:56AM

$  ./sthp-linux  -p 8090 -s 127.0.0. 1:1090
The application panicked (crashed).
Message:  error binding to 0.0.0.0:8090: error creating server listener: Address already in use (os error 98)
Location: /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hyper-0.14.26/src/server/server.rs:79

Backtrace omitted. Run with RUST_BACKTRACE=1 environment variable to display it.
Run with RUST_BACKTRACE=full to include source snippets.

运行 $ lsof -i :8090 检查是否有其他应用程序正在使用 0.0.0.0:8090 地址。

$ lsof -i :8090
COMMAND    PID  USER   FD   TYPE DEVICE SIZE/OFF NODE NAME
sthp-linu 9832 meiyi    6u  IPv4  71607      0t0  TCP *:8090 (LISTEN)

使用 kill -9 结束这个 PID:9832 进程

$ kill -9 9832

然后再重新运行  $ ./sthp-linux  -p 8090 -s 127.0.0.1:1090 就可以了

返回>>

登录

请登录后再发表评论。

评论列表:

目前还没有人发表评论