我正在尝试在AWS CENTOS7 EC2实例上安装jenkins。 我已经执行了以下提到的步骤:
sudo yum install java-1.8.0-openjdk-devel
curl --silent --location http://pkg.jenkins-ci.org/redhat-stable/jenkins.repo |
sudo tee /etc/yum.repos.d/jenkins.repo
sudo rpm --import https://jenkins-ci.org/redhat/jenkins-ci.org.key
sudo yum install jenkins
sudo systemctl start jenkins
systemctl status jenkins
systemctl status jenkins
显示以下输出:
我也尝试过禁用防火墙:
systemctl stop firewalld
systemctl disable firewalld
此外,以下安全组已添加到我的实例中:
在尝试使用以下命令访问jenkins主页时,我仍然面对 ERR_CONNECTION_TIMED_OUT :
http://Client_PublicIP:8080/jenkins
请帮助我,是否想念其他东西。