当我尝试在S3_PING发现协议上使用bucket_name + bucket端点时出现以下错误
MSC000001:无法启动服务jboss.jgroups.channel.cluster:服务jboss.jgroups.channel.cluster中的org.jboss.msc.service.StartException:java.security.PrivilegedActionException:java.net.ConnectException:连接超时超时(连接超时) 在org.infinispan.server.jgroups.spi.service.ChannelBuilder.start(ChannelBuilder.java:79)
答案 0 :(得分:0)
在将hostname属性添加到S3_PING协议后,我能够使集群将文件上传到s3存储桶:
<protocol type="S3_PING">
<property name="host">
hostname
</property>
<property name="access_key">
xxxxxxxxxxxxxxx
</property>
<property name="secret_access_key">
xxxxxxxxxxxx
</property>
<property name="location">
S3_BUCKET_NAME
</property>
<property name="timeout">
60000
</property>
</protocol>