【踩坑实录】

文章目录

  • Eclipse篇
    • eclipse配置
  • rabbitMQ篇
    • 登陆时提示Not management user
  • PGadmin篇
    • 登陆报错could not connect to server: Connection refused (0x0000274D/10061) Is the server running on host"localhost" (:1) and acceptingTCP/IP connections on port 5433 ?

Eclipse篇

eclipse配置

本地导入的代码配置过一次,如果从SVN重新down代码下来,配置可能需要重新设置一下,不然bpel文件里Find code时可能出现cannot find class information,please check setting information的问题。

rabbitMQ篇

登陆时提示Not management user

localhost:15672(或者127.0.0.1:15672)
解决办法:设置用户为管理员
语法:rabbitmqctl set_user_tags 【用户名】 administrator
在这里插入图片描述

PGadmin篇

登陆报错could not connect to server: Connection refused (0x0000274D/10061) Is the server running on host"localhost" (:1) and acceptingTCP/IP connections on port 5433 ?

解决:启动postgres服务
win + R:services.msc,在弹窗中找到postgres,右键->启动

你可能感兴趣的:(经验分享)