Por que Jenkins não está puxando em um navegador?

2

Eu instalei o Jenkins no meu servidor Debian. Ele está definido na porta 8080 e quando tento conectar-me, nada acontece. Eu sei que está correndo porque quando eu faço:

root@jini01:/etc/default# /etc/init.d/jenkins restart

Eu recebo isso de volta.

[ ok ] Restarting Jenkins Continuous Integration Server: jenkins.

Aqui está o meu arquivo de configuração do jenkins:

# defaults for jenkins continuous integration server

# pulled in from the init script; makes things easier.
NAME=jenkins

# location of java
JAVA=/usr/bin/java

# arguments to pass to java
#JAVA_ARGS="-Xmx256m"
#JAVA_ARGS="-Djava.net.preferIPv4Stack=true" # make jenkins listen on IPv4 address

PIDFILE=/var/run/jenkins/jenkins.pid

# user id to be invoked as (otherwise will run as root; not wise!)
JENKINS_USER=jenkins

# location of the jenkins war file
JENKINS_WAR=/usr/share/jenkins/jenkins.war

# jenkins home location
JENKINS_HOME=/var/lib/jenkins

# set this to false if you don't want Hudson to run by itself
# in this set up, you are expected to provide a servlet container
# to host jenkins.
RUN_STANDALONE=true

# log location.  this may be a syslog facility.priority
JENKINS_LOG=/var/log/jenkins/$NAME.log
#HUDSON_LOG=daemon.info

# OS LIMITS SETUP
#   comment this out to observe /etc/security/limits.conf
#   this is on by default because http://github.com/jenkinsci/jenkins/commit/2fb288474e980d0e7ff9c4a3b768874835$
#   reported that Ubuntu's PAM configuration doesn't include pam_limits.so, and as a result the # of file
#   descriptors are forced to 1024 regardless of /etc/security/limits.conf
MAXOPENFILES=8192

# port for HTTP connector (default 8080; disable with -1)
HTTP_PORT=8080

# port for AJP connector (disabled by default)
AJP_PORT=-1

# servlet context, important if you want to use apache proxying
PREFIX=/jenkins

# arguments to pass to jenkins.
# --javahome=$JAVA_HOME
# --httpPort=$HTTP_PORT (default 8080; disable with -1)
# --httpsPort=$HTTP_PORT
# --ajp13Port=$AJP_PORT
# --argumentsRealm.passwd.$ADMIN_USER=[password]
# --argumentsRealm.passwd.$ADMIN_USER=[password]
# --argumentsRealm.$ADMIN_USER=admin
# --webroot=~/.jenkins/war
# --prefix=$PREFIX

Quando faço:

ps aux | grep -i java

Eu recebo:

root     12912  0.0  0.0   7676   892 pts/0    S+   19:04   0:00 grep -i java

Por que ele não aparecerá em um navegador mesmo quando eu especificar a porta 8080?

    
por jini 29.04.2012 / 21:03

3 respostas

0

Tente:

$ /sbin/sysctl net.ipv6.bindv6only

Se este valor for 1, você precisa desativar a configuração:

$ sudo /sbin/sysctl net.ipv6.bindv6only=0

Para uma correção persistente: verifique /etc/sysctl.conf e /etc/sysctl.d/* para essa configuração e reinicie depois de alterá-la.

    
por 23.05.2012 / 16:53
0

Você está faltando alguma linha no final do seu arquivo (/ etc / default / jenkins) como

JENKINS_ARGS="--webroot=/var/cache/$NAME/war --httpPort=$HTTP_PORT --ajp13Port=$AJP_PORT"
JENKINS_ARGS="$JENKINS_ARGS  --prefix=$PREFIX"
    
por 18.12.2015 / 19:05
0

Tente fazer telnet <server-ip> 8080 . Se nada acontecer, significa que você tem um firewall bloqueando essa porta

    
por 25.07.2018 / 03:50