全程参考张善友写的CentOS安装Mono教程指引,将其中的一些版本换成最近版。但在CentOS 7上有几个地方需要注意。
1.yum install的时候少了两个包,一个是解压的,另一个是wget。
2.安装完jexus后,无法访问。最后确认是防火墙的问题,需修改防火墙配置。因CentOS7默认使用的firewall,所以需进行下述配置:
firewall-cmd --permanent --zone=public --add-service=http
firewall-cmd --reload
然后看看是否配置好
firewall-cmd --list-all
得到如下结果
public (default, active)
interfaces: eno16777736
sources:
services: dhcpv6-client http ssh
ports:
masquerade: no
forward-ports:
icmp-blocks:
rich rules:
经过上述配置后,可正常访问jexus提供的http服务了
时间: 2024-10-24 16:52:31