在启动run-modules-system.bat时遇到了一些问题,在网上搜索无果后,排查解决完毕
1.启动nacos时,报错如下
Error creating bean with name 'grpcClusterServer': Invocation of init method failed; nested exception is java.io.IOException: Failed to bind to address 0.0.0.0/0.0.0.0:9849
这是因为新版nacos启动需要使用端口9849,这个端口现在被占用了,所以打不开,我们使用命令
netstat -ano | findstr 9848
查找占用的进程PID号
然后使用
taskkill /F /PID 20036 /T
即可成功启动nacos
2.提示Access denied
解决方案:
打开nacos客户端http://localhost:8848/nacos/
找到该配置文件
修改password即可
后面又报错6379denied
推测是redis没启动所以没访问到该端口,启动windows上的redis即可解决该问题!
启动成功