1. 运行react项目出现Something is already running on port 3000
出现这种问题的原因是自己在没有使用命令退出项目终端而直接关机,导致终端占用
这是默认端口,显示有服务运行在3000端口上,用了网上的各种办法,杀进程,或者退出node服务都没有办法解决
解决办法:
是hosts文件中映射到本地主机的映射不正确(或者没有映射),并且与端口没有任何关系
10.2.224.130 localhost
只需将其更改回
127.0.0.1 localhost
或者下在switch host
这两个默认文件使其自动运行
内容如下
MY host
# My hosts
199.232.68.133 raw.githubusercontent.com
199.232.68.133 user-images.githubusercontent.com
199.232.68.133 avatars2.githubusercontent.com
199.232.68.133 avatars1.githubusercontent.com
backup:
##
# Host Database
#
# localhost is used to configure the loopback interface
# when the system is booting. Do not change this entry.
##
127.0.0.1 localhost
255.255.255.255 broadcasthost
::1 localhost
然后再重新运行项目就OK了