开放端口号
/sbin/iptables -I INPUT -p tcp --dport 8080 -j ACCEPT
指定输出日志文件 指定端口
nohup java -jar jiaotou.jar --server-port=8763 > myout.file 2>&1 &
nohup java -jar jiaotou.jar >/dev/null &
查看java项目是否运行
ps -ef|grep java
Feign服务负载均衡时,配置文件添加部分(避免重复转发):
#Feign是自带断路器的,在D版本的Spring Cloud之后,它没有默认打开。需要在配置文件中配置打开它
feign:
hystrix:
enabled: true
#配置断路器超时时间,默认是1000(1秒)
hystrix:
command:
default:
execution:
isolation:
thread:
timeoutInMilliseconds: 2001
service-receive-data: #指定服务设置负载超时时间
ribbon:
#配置首台服务器重试1次
MaxAutoRetries: 0
#配置其他服务器重试两次
MaxAutoRetriesNextServer: 0
#链接超时时间
ConnectTimeout: 2500
#请求处理时间
ReadTimeout: 10000
#每个操作都开启重试机制
OkToRetryOnAllOperations: false