码迷,mamicode.com
首页 > 其他好文 > 详细

centos 6.5 安装jenkins

时间:2015-04-03 13:16:42      阅读:423      评论:0      收藏:0      [点我收藏+]

标签:

Installation

Start/Stop

  • sudo service jenkins start/stop/restart

注意,可能要安装Java,要不不能启动Jenkins。

安装Java:

yum list jdk,然后yum install xxx,xxx可能长得类似java-1.6.0-openjdk.x86_64

 

安装Java后,可能还会遇到下面的问题。

/tmp 目录挂载时使用了noexec选项:

Jenkins启动失败,java.lang.unsatisfiedlinkerror failed to map segment from shared object operation not permitted

失败原因是,/tmp directory is mounted with the noexec option

解决办法是,Removing the noexec option from our /tmp in our /etc/fstab and remounting it

具体来说,(要用root身份)先vi /etc/fstab,将 /tmp 挂载点的option 中的noexec 改成 exec,然后reboot,再 sudo service jenkins start 就可以了

别忘了防火墙的设置

 在浏览器中显示http://IP:8080   

参考http://blog.csdn.net/yasi_xi/article/details/8593520

centos 6.5 安装jenkins

标签:

原文地址:http://www.cnblogs.com/cuizhipeng/p/4389610.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!