0

私は本当にジェンキンスが初めてです。今日、私はインストールして遊んでみました。確かに私は鍵を紛失しています。

私の環境: java -version Java バージョン "1.6.0_24" OpenJDK ランタイム環境 (IcedTea6 1.11.4) (rhel-1.49.1.11.4.el6_3-x86_64) OpenJDK 64 ビット サーバー VM (ビルド 20.0-b12、混合モード)

tomcat6

CentOS 6.3

コマンドラインから jenkins.war as を実行すると、結果は次のようになります。

java -jar jenkins.war --httpPort=8082 --ajp13Port=-1

Running from: /var/lib/tomcat6/webapps/jenkins.war
webroot: $user.home/.jenkins
Sep 20, 2012 1:32:55 PM winstone.Logger logInternal
INFO: Beginning extraction from war file
Jenkins home directory: /home/admin/.jenkins found at: $user.home/.jenkins
Sep 20, 2012 1:32:56 PM winstone.Logger logInternal
INFO: HTTP Listener started: port=8082
Sep 20, 2012 1:32:56 PM winstone.Logger logInternal
INFO: Winstone Servlet Engine v0.9.10 running: controlPort=disabled
Sep 20, 2012 1:32:56 PM jenkins.InitReactorRunner$1 onAttained
INFO: Started initialization
Sep 20, 2012 1:32:57 PM jenkins.InitReactorRunner$1 onAttained
INFO: Listed all plugins
Sep 20, 2012 1:32:57 PM jenkins.InitReactorRunner$1 onAttained
INFO: Prepared all plugins
Sep 20, 2012 1:32:57 PM jenkins.InitReactorRunner$1 onAttained
INFO: Started all plugins
Sep 20, 2012 1:32:57 PM jenkins.InitReactorRunner$1 onAttained
INFO: Augmented all extensions
Sep 20, 2012 1:32:57 PM jenkins.InitReactorRunner$1 onAttained
INFO: Loaded all jobs
Sep 20, 2012 1:33:00 PM org.apache.sshd.common.util.SecurityUtils$BouncyCastleRegistration run
INFO: Trying to register BouncyCastle as a JCE provider
Sep 20, 2012 1:33:00 PM org.apache.sshd.common.util.SecurityUtils$BouncyCastleRegistration run
INFO: Registration succeeded
Sep 20, 2012 1:33:00 PM org.jenkinsci.main.modules.sshd.SSHD start
INFO: Started SSHD at port 34921
Sep 20, 2012 1:33:01 PM jenkins.InitReactorRunner$1 onAttained
INFO: Completed initialization
Sep 20, 2012 1:33:01 PM hudson.TcpSlaveAgentListener <init>
INFO: JNLP slave agent listener started on TCP port 59382
Sep 20, 2012 1:33:01 PM hudson.WebAppMain$2 run
INFO: Jenkins is fully up and running

だから私はすべてが大丈夫だと思った。

ブラウザから、これのどれも機能していません

http://IP:8080/jenkins
http://IP:8082/jenkins

誰かがこれについて私を助けることができますか?

よろしく、 アジェイフォ

4

3 に答える 3

2

Why are you adding the /jenkins at the end? http://:8082 should be enought Furthermore, have you checked your firewall,proxy or your antivirus? Can you access locally your installation by typing localhost:8082 in your browser? If yes then one of the above or some other network configuration may be the problem

于 2012-09-20T05:51:07.183 に答える
0

ファイアウォールを無効にする

いくつかの港のパラファイアを無効にする必要があるかもしれません 港の例: 8080 ルニックスの命令

firewall-cmd --zone=public --add-port=8080/tcp --permanent

firewall-cmd --zone=public --add-service=http --permanent

firewall-cmd --reload

コマンドは VM 上の CentOS でテストされています

于 2016-09-06T13:59:08.977 に答える