Installing Hudson on CentOS [closed]

Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it’s on-topic for Server Fault. Closed 6 years ago. Improve this question Following the instructions here: http://wiki.hudson-ci.org/display/HUDSON/Installing+Hudson+using+RPM+repository fails at the very first step: sudo wget -O /etc/yum.repos.d/hudson.repo http://hudson-ci.org/redhat/hudson.repo Connecting to hudson-ci.org|137.254.56.22|:80… connected. HTTP request sent, … Read more

Setting up Hudson on ec2 and configuring with web gui

I would like to setup hudson on a ec2 micro linux instance. My question is exactly how to configure hudson after i install it remotely via ssh on the ec2 instance. I would like to configure using the hudson web gui. When I have done this locally, this was available at http://localhost:8080/hudson. what about through … Read more

Nginx as reverse proxy to Hudson-Logout issue

I have configured nginx as a reverse proxy to our hudson build server as follows: server { listen 80; server_name koala.proxy.internal; location /hudson/ { proxy_pass http://build.example.com/hudson/; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Host $host; proxy_set_header Host $http_host; proxy_redirect off; } The backend hudson server is configured to authenticate users with Active Directory using the … Read more

Hudson Shellscript for exporting Sourcecode from SVN repository into production folder

I have one dedicated server which has the whole Lamp-Stack, SVN and Hudson installed. I would like to create a freestyle Hudson job, that gets the latest sourcecode out of my SVN-repository and puts it into my /var/www/myWebApp Folder. How does the shell script need to look like? Answer If you’re not worried about history, … Read more

Apache – redirecting subdomain to other port on the same machine

I’m running apache server on my machine and let’s say I’m using domain xyz.com. I have a Hudson CI server running on the same machine on it’s default port 8080. I’d like to make it accessible by hudson.xyz.com. What I have to do to point this subdomain to 8080 port? Answer Take a look at … Read more

How to start Hudson with the existing configuration?

I had Hudson running via: cd /usr/lib/hudson java -jar hudson.war Unfortunately, I restarted that server and on accessing the Hudson Url, I found that all the configuration is missing. However, I can see that all the configuration files were saved under ~/.hudson Has anyone run into this before? How can I restart Hudson and point … Read more

Running Sonatype Nexus in Tomcat 7.0, Tomcat blocking PUT requests

I was previously running Nexus 1.8 on OSX and uploading jars for releases without any issues. The OSX box died, so I moved to a FreeBSD server. Since Nexus doesn’t have binaries for FreeBSD, I decided to run it in my Tomcat container. Now, I have set up Nexus 1.9 in Tomcat 7.0 on FreeBSD. … Read more