{"id":125,"date":"2010-02-26T18:11:20","date_gmt":"2010-02-26T18:11:20","guid":{"rendered":"http:\/\/psyphi.net\/blog\/?p=125"},"modified":"2010-02-26T19:18:26","modified_gmt":"2010-02-26T19:18:26","slug":"configuring-hudson-continuous-integration-slaves","status":"publish","type":"post","link":"https:\/\/psyphi.net\/blog\/2010\/02\/configuring-hudson-continuous-integration-slaves\/","title":{"rendered":"Configuring Hudson Continuous Integration Slaves"},"content":{"rendered":"<p>Roughly this time last year I set up <a title=\"Hudson-CI\" href=\"http:\/\/hudson-ci.org\/\" target=\"_blank\">Hudson<\/a> at the office to do Oxford Nanopore&#8217;s continuous integration builds. It&#8217;s been a pleasure to roll-out the automated-testing work-ethic for developers and (perhaps surprisingly) there&#8217;s been less resistance than I expected. Hudson is a great weapon in the arsenal and is dead easy to set up as a master server. This week though I&#8217;ve had to do something new &#8211; configure one of our product simulators as my first Hudson slave server. Again this proved to be a doddle &#8211; thanks Hudson!<\/p>\n<p>My slave server is called &#8220;device2&#8221; &#8211; Here&#8217;s what I needed to set up on the master (ci.example.net).<\/p>\n<p>&#8220;Manage Hudson&#8221; =&gt; &#8220;Manage Nodes&#8221; =&gt; &#8220;New Node&#8221; =&gt; node name = &#8220;device2&#8221;, type is &#8220;dumb slave&#8221; =&gt; number of executors = 1, remote fs root = &#8220;\/home\/hudson\/ci&#8221;, leave for tied jobs only, launch by JNLP.<\/p>\n<p>Then on device2:<\/p>\n<pre><code>adduser hudson\r\nsu hudson\r\ncd\r\nmkdir ci\r\ncd ci\r\nwget http:\/\/ci.example.net\/jnlpJars\/slave.jar<\/code><\/pre>\n<p>Made a new file \/etc\/init.d\/hudson-slave with these contents:<\/p>\n<pre><code>#!\/bin\/bash\r\n#\r\n# Init file for hudson server daemon\r\n#\r\n# chkconfig: 2345 65 15\r\n# description: Hudson slave\r\n\r\n. \/etc\/rc.d\/init.d\/functions\r\n\r\nRETVAL=0\r\nNODE_NAME=\"device2\"\r\nHUDSON_HOST=ci.example.net\r\nUSER=hudson\r\nLOG=\/home\/hudson\/ci\/hudson.log\r\nSLAVE_JAR=\/home\/hudson\/ci\/slave.jar\r\n\r\npid_of_hudson() {\r\n    ps auxwww | grep java | grep hudson | grep -v grep | awk '{ print $2 }'\r\n}\r\n\r\nstart() {\r\n    echo -n $\"Starting hudson: \"\r\n    COMMAND=\"java -jar $SLAVE_JAR -jnlpUrl \\\r\n        http:\/\/${HUDSON_HOST}\/computer\/${NODE_NAME}\/slave-agent.jnlp \\\r\n        2&gt;$LOG.err \\\r\n        &gt;$LOG.out\"\r\n    su ${USER} -c \"$COMMAND\" &amp;\r\n    sleep 1\r\n    pid_of_hudson &gt; \/dev\/null\r\n    RETVAL=$?\r\n    [ $RETVAL = 0 ] &amp;&amp; success || failure\r\n    echo\r\n}\r\n\r\nstop() {\r\n    echo -n \"Stopping hudson slave: \"\r\n    pid=`pid_of_hudson`\r\n    [ -n \"$pid\" ] &amp;&amp; kill $pid\r\n    RETVAL=$?\r\n    cnt=10\r\n    while [ $RETVAL = 0 -a $cnt -gt 0 ] &amp;&amp;\r\n        { pid_of_hudson &gt; \/dev\/null ; } ; do\r\n        sleep 1\r\n        ((cnt--))\r\n    done\r\n\r\n    [ $RETVAL = 0 ] &amp;&amp; success || failure\r\n    echo\r\n}\r\n\r\nstatus() {\r\n    pid=`pid_of_hudson`\r\n    if [ -n \"$pid\" ]; then\r\n        echo \"hudson (pid $pid) is running...\"\r\n        return 0\r\n    fi\r\n    echo \"hudson is stopped\"\r\n    return 3\r\n}\r\n\r\n#Switch on called\r\ncase \"$1\" in\r\n    start)\r\n        start\r\n        ;;\r\n    stop)\r\n        stop\r\n        ;;\r\n    status)\r\n        status\r\n        ;;\r\n    restart)\r\n        stop\r\n        start\r\n        ;;\r\n    *)\r\n        echo $\"Usage: $0 (start|stop|restart|status}\"\r\n        exit 1\r\nesac\r\n\r\nexit $RETVAL<\/code><\/pre>\n<pre><code>chkconfig --add hudson-slave\r\nchkconfig hudson-slave on\r\nservice hudson-slave start<\/code><\/pre>\n<p>and that&#8217;s pretty much all there was to it &#8211; refreshing the node-status page on the hudson master showed the slave had registered itself, then reconfiguring one of the existing jobs to be tied to the &#8220;device2&#8221; slave immediately started assigning jobs to it. Tremendous!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Roughly this time last year I set up Hudson at the office to do Oxford Nanopore&#8217;s continuous integration builds. It&#8217;s been a pleasure to roll-out the automated-testing work-ethic for developers and (perhaps surprisingly) there&#8217;s been less resistance than I expected. Hudson is a great weapon in the arsenal and is dead easy to set up &hellip; <a href=\"https:\/\/psyphi.net\/blog\/2010\/02\/configuring-hudson-continuous-integration-slaves\/\" class=\"more-link\">Continue reading<span class=\"screen-reader-text\"> &#8220;Configuring Hudson Continuous Integration Slaves&#8221;<\/span><\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_uf_show_specific_survey":0,"_uf_disable_surveys":false,"footnotes":""},"categories":[17],"tags":[217,220,218,219],"class_list":["post-125","post","type-post","status-publish","format-standard","hentry","category-sysadmin","tag-ci","tag-configuration","tag-hudson","tag-testing"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"Roughly this time last year I set up Hudson at the office to do Oxford Nanopore&#039;s continuous integration builds. It&#039;s been a pleasure to roll-out the automated-testing work-ethic for developers and (perhaps surprisingly) there&#039;s been less resistance than I expected. Hudson is a great weapon in the arsenal and is dead easy to set up\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Roger Pettett\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/psyphi.net\/blog\/2010\/02\/configuring-hudson-continuous-integration-slaves\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"psyphi.net blog - Another collection of braingunk and technolint\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Configuring Hudson Continuous Integration Slaves - psyphi.net blog\" \/>\n\t\t<meta property=\"og:description\" content=\"Roughly this time last year I set up Hudson at the office to do Oxford Nanopore&#039;s continuous integration builds. It&#039;s been a pleasure to roll-out the automated-testing work-ethic for developers and (perhaps surprisingly) there&#039;s been less resistance than I expected. Hudson is a great weapon in the arsenal and is dead easy to set up\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/psyphi.net\/blog\/2010\/02\/configuring-hudson-continuous-integration-slaves\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2010-02-26T18:11:20+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2010-02-26T19:18:26+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Configuring Hudson Continuous Integration Slaves - psyphi.net blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Roughly this time last year I set up Hudson at the office to do Oxford Nanopore&#039;s continuous integration builds. It&#039;s been a pleasure to roll-out the automated-testing work-ethic for developers and (perhaps surprisingly) there&#039;s been less resistance than I expected. Hudson is a great weapon in the arsenal and is dead easy to set up\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/2010\\\/02\\\/configuring-hudson-continuous-integration-slaves\\\/#blogposting\",\"name\":\"Configuring Hudson Continuous Integration Slaves - psyphi.net blog\",\"headline\":\"Configuring Hudson Continuous Integration Slaves\",\"author\":{\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/author\\\/rmp\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/#organization\"},\"datePublished\":\"2010-02-26T18:11:20+00:00\",\"dateModified\":\"2010-02-26T19:18:26+00:00\",\"inLanguage\":\"en-US\",\"commentCount\":2,\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/2010\\\/02\\\/configuring-hudson-continuous-integration-slaves\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/2010\\\/02\\\/configuring-hudson-continuous-integration-slaves\\\/#webpage\"},\"articleSection\":\"sysadmin, ci, configuration, hudson, testing\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/2010\\\/02\\\/configuring-hudson-continuous-integration-slaves\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/psyphi.net\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/category\\\/sysadmin\\\/#listItem\",\"name\":\"sysadmin\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/category\\\/sysadmin\\\/#listItem\",\"position\":2,\"name\":\"sysadmin\",\"item\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/category\\\/sysadmin\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/2010\\\/02\\\/configuring-hudson-continuous-integration-slaves\\\/#listItem\",\"name\":\"Configuring Hudson Continuous Integration Slaves\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/2010\\\/02\\\/configuring-hudson-continuous-integration-slaves\\\/#listItem\",\"position\":3,\"name\":\"Configuring Hudson Continuous Integration Slaves\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/category\\\/sysadmin\\\/#listItem\",\"name\":\"sysadmin\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/#organization\",\"name\":\"psyphi.net blog\",\"description\":\"Another collection of braingunk and technolint\",\"url\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/author\\\/rmp\\\/#author\",\"url\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/author\\\/rmp\\\/\",\"name\":\"Roger Pettett\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/2010\\\/02\\\/configuring-hudson-continuous-integration-slaves\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f715f8335258578c567eb8c22335f1cee22c971c2aff8be27c4d8d934c436503?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Roger Pettett\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/2010\\\/02\\\/configuring-hudson-continuous-integration-slaves\\\/#webpage\",\"url\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/2010\\\/02\\\/configuring-hudson-continuous-integration-slaves\\\/\",\"name\":\"Configuring Hudson Continuous Integration Slaves - psyphi.net blog\",\"description\":\"Roughly this time last year I set up Hudson at the office to do Oxford Nanopore's continuous integration builds. It's been a pleasure to roll-out the automated-testing work-ethic for developers and (perhaps surprisingly) there's been less resistance than I expected. Hudson is a great weapon in the arsenal and is dead easy to set up\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/2010\\\/02\\\/configuring-hudson-continuous-integration-slaves\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/author\\\/rmp\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/author\\\/rmp\\\/#author\"},\"datePublished\":\"2010-02-26T18:11:20+00:00\",\"dateModified\":\"2010-02-26T19:18:26+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/\",\"name\":\"psyphi.net blog\",\"description\":\"Another collection of braingunk and technolint\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Configuring Hudson Continuous Integration Slaves - psyphi.net blog","description":"Roughly this time last year I set up Hudson at the office to do Oxford Nanopore's continuous integration builds. It's been a pleasure to roll-out the automated-testing work-ethic for developers and (perhaps surprisingly) there's been less resistance than I expected. Hudson is a great weapon in the arsenal and is dead easy to set up","canonical_url":"https:\/\/psyphi.net\/blog\/2010\/02\/configuring-hudson-continuous-integration-slaves\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/psyphi.net\/blog\/2010\/02\/configuring-hudson-continuous-integration-slaves\/#blogposting","name":"Configuring Hudson Continuous Integration Slaves - psyphi.net blog","headline":"Configuring Hudson Continuous Integration Slaves","author":{"@id":"https:\/\/psyphi.net\/blog\/author\/rmp\/#author"},"publisher":{"@id":"https:\/\/psyphi.net\/blog\/#organization"},"datePublished":"2010-02-26T18:11:20+00:00","dateModified":"2010-02-26T19:18:26+00:00","inLanguage":"en-US","commentCount":2,"mainEntityOfPage":{"@id":"https:\/\/psyphi.net\/blog\/2010\/02\/configuring-hudson-continuous-integration-slaves\/#webpage"},"isPartOf":{"@id":"https:\/\/psyphi.net\/blog\/2010\/02\/configuring-hudson-continuous-integration-slaves\/#webpage"},"articleSection":"sysadmin, ci, configuration, hudson, testing"},{"@type":"BreadcrumbList","@id":"https:\/\/psyphi.net\/blog\/2010\/02\/configuring-hudson-continuous-integration-slaves\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/psyphi.net\/blog#listItem","position":1,"name":"Home","item":"https:\/\/psyphi.net\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/psyphi.net\/blog\/category\/sysadmin\/#listItem","name":"sysadmin"}},{"@type":"ListItem","@id":"https:\/\/psyphi.net\/blog\/category\/sysadmin\/#listItem","position":2,"name":"sysadmin","item":"https:\/\/psyphi.net\/blog\/category\/sysadmin\/","nextItem":{"@type":"ListItem","@id":"https:\/\/psyphi.net\/blog\/2010\/02\/configuring-hudson-continuous-integration-slaves\/#listItem","name":"Configuring Hudson Continuous Integration Slaves"},"previousItem":{"@type":"ListItem","@id":"https:\/\/psyphi.net\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/psyphi.net\/blog\/2010\/02\/configuring-hudson-continuous-integration-slaves\/#listItem","position":3,"name":"Configuring Hudson Continuous Integration Slaves","previousItem":{"@type":"ListItem","@id":"https:\/\/psyphi.net\/blog\/category\/sysadmin\/#listItem","name":"sysadmin"}}]},{"@type":"Organization","@id":"https:\/\/psyphi.net\/blog\/#organization","name":"psyphi.net blog","description":"Another collection of braingunk and technolint","url":"https:\/\/psyphi.net\/blog\/"},{"@type":"Person","@id":"https:\/\/psyphi.net\/blog\/author\/rmp\/#author","url":"https:\/\/psyphi.net\/blog\/author\/rmp\/","name":"Roger Pettett","image":{"@type":"ImageObject","@id":"https:\/\/psyphi.net\/blog\/2010\/02\/configuring-hudson-continuous-integration-slaves\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/f715f8335258578c567eb8c22335f1cee22c971c2aff8be27c4d8d934c436503?s=96&d=mm&r=g","width":96,"height":96,"caption":"Roger Pettett"}},{"@type":"WebPage","@id":"https:\/\/psyphi.net\/blog\/2010\/02\/configuring-hudson-continuous-integration-slaves\/#webpage","url":"https:\/\/psyphi.net\/blog\/2010\/02\/configuring-hudson-continuous-integration-slaves\/","name":"Configuring Hudson Continuous Integration Slaves - psyphi.net blog","description":"Roughly this time last year I set up Hudson at the office to do Oxford Nanopore's continuous integration builds. It's been a pleasure to roll-out the automated-testing work-ethic for developers and (perhaps surprisingly) there's been less resistance than I expected. Hudson is a great weapon in the arsenal and is dead easy to set up","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/psyphi.net\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/psyphi.net\/blog\/2010\/02\/configuring-hudson-continuous-integration-slaves\/#breadcrumblist"},"author":{"@id":"https:\/\/psyphi.net\/blog\/author\/rmp\/#author"},"creator":{"@id":"https:\/\/psyphi.net\/blog\/author\/rmp\/#author"},"datePublished":"2010-02-26T18:11:20+00:00","dateModified":"2010-02-26T19:18:26+00:00"},{"@type":"WebSite","@id":"https:\/\/psyphi.net\/blog\/#website","url":"https:\/\/psyphi.net\/blog\/","name":"psyphi.net blog","description":"Another collection of braingunk and technolint","inLanguage":"en-US","publisher":{"@id":"https:\/\/psyphi.net\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"psyphi.net blog - Another collection of braingunk and technolint","og:type":"article","og:title":"Configuring Hudson Continuous Integration Slaves - psyphi.net blog","og:description":"Roughly this time last year I set up Hudson at the office to do Oxford Nanopore's continuous integration builds. It's been a pleasure to roll-out the automated-testing work-ethic for developers and (perhaps surprisingly) there's been less resistance than I expected. Hudson is a great weapon in the arsenal and is dead easy to set up","og:url":"https:\/\/psyphi.net\/blog\/2010\/02\/configuring-hudson-continuous-integration-slaves\/","article:published_time":"2010-02-26T18:11:20+00:00","article:modified_time":"2010-02-26T19:18:26+00:00","twitter:card":"summary_large_image","twitter:title":"Configuring Hudson Continuous Integration Slaves - psyphi.net blog","twitter:description":"Roughly this time last year I set up Hudson at the office to do Oxford Nanopore's continuous integration builds. It's been a pleasure to roll-out the automated-testing work-ethic for developers and (perhaps surprisingly) there's been less resistance than I expected. Hudson is a great weapon in the arsenal and is dead easy to set up"},"aioseo_meta_data":{"post_id":"125","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2024-05-16 13:02:10","updated":"2025-08-15 17:24:03","focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/psyphi.net\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/psyphi.net\/blog\/category\/sysadmin\/\" title=\"sysadmin\">sysadmin<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tConfiguring Hudson Continuous Integration Slaves\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/psyphi.net\/blog"},{"label":"sysadmin","link":"https:\/\/psyphi.net\/blog\/category\/sysadmin\/"},{"label":"Configuring Hudson Continuous Integration Slaves","link":"https:\/\/psyphi.net\/blog\/2010\/02\/configuring-hudson-continuous-integration-slaves\/"}],"_links":{"self":[{"href":"https:\/\/psyphi.net\/blog\/wp-json\/wp\/v2\/posts\/125","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/psyphi.net\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/psyphi.net\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/psyphi.net\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/psyphi.net\/blog\/wp-json\/wp\/v2\/comments?post=125"}],"version-history":[{"count":12,"href":"https:\/\/psyphi.net\/blog\/wp-json\/wp\/v2\/posts\/125\/revisions"}],"predecessor-version":[{"id":136,"href":"https:\/\/psyphi.net\/blog\/wp-json\/wp\/v2\/posts\/125\/revisions\/136"}],"wp:attachment":[{"href":"https:\/\/psyphi.net\/blog\/wp-json\/wp\/v2\/media?parent=125"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/psyphi.net\/blog\/wp-json\/wp\/v2\/categories?post=125"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/psyphi.net\/blog\/wp-json\/wp\/v2\/tags?post=125"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}