ubuntu16.04防火墙开启

ubuntu16.04防火墙开启和常用命令:

1
2
3
4
5
6
sudo apt-get install ufw #安装防火墙
sudo ufw status #防火墙状态
sudo ufw enable #开启防火墙
sudo ufw allow 22 #开启端口
sudo ufw reload #重启防火墙
sudo ufw delete allow 8001/tcp #关闭端口

LCN 错误: attempts to join the non-existent transaction group

错误信息:

1
2
3
4
5
com.codingapi.txlcn.logger.AbstractTxLogger.error(AbstractTxLogger.java:70) - business code error

attempts to join the non-existent transaction group

rpc execute service error. action: joinGroup

解决办法:
在tx-lcn项目配置如下内容,即可解决:

1
2
# 分布式事务执行总时间(ms). 默认为36000
tx-lcn.manager.dtx-time=600000

配置完需要重新打包。

参考资料:
LCN 错误: attempts to join the non-existent transaction group