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

jumpserver开源跳板机系统部署

时间:2017-04-07 18:05:21      阅读:312      评论:0      收藏:0      [点我收藏+]

标签:eve   用户   enforce   设置   系统   rzsz   txt   iptables   登录   

##环境准备
[root@jumpserver ~]# cat /etc/redhat-release 
CentOS release 6.6 (Final)
[root@jumpserver ~]# uname -r
2.6.32-504.el6.x86_64


[root@jump ~]# /etc/init.d/iptables status
iptables: Firewall is not running.


[root@jump ~]# getenforce 
Disabled

#准备yum源环境:
wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-6.repo
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo
yum repolist

#安装依赖包:
yum -y install epel-release
yum -y install git python-pip mysql-devel gcc automake autoconf python-devel vim sshpass lrzsz readline-devel 
rpm -q git python-pip mysql-devel gcc automake autoconf python-devel vim sshpass lrzsz readline-devel

#安装jump-server
cd /home/oldboy/tools
git clone https://github.com/jumpserver/jumpserver.git
##or rz ==>本地上传软件包

#升级pip
cd jumpserver/install/
pip install --upgrade pip
pip install -r requirements.txt

#查看安装结果:
pip freeze

#配置jumpServer
安装完成jumpserver以后需要对其进行初始化的设置

[root@jump install]# python install.py 
开始关闭防火墙和selinux
setenforce: SELinux is disabled
请输入您服务器的IP地址,用户浏览器可以访问 [192.168.30.128]: 
是否安装新的MySQL服务器? (y/n) [y]: y
开始安装设置mysql (请手动设置mysql安全)
默认用户名: jumpserver 默认密码: 5Lov@wife
………………此处略去好多字………………
Starting mysqld:                                           [  OK  ]
连接数据库成功
请输入SMTP地址: stmp.163.com
请输入SMTP端口 [25]: 25
请输入账户: 88888888@163.com
请输入密码: **************
timed out
是否跳过(y/n) [n]? : y
请登陆邮箱查收邮件, 然后确认是否继续安装
是否继续? (y/n) [y]: y
开始写入配置文件
………………
请输入管理员用户名 [admin]: admin
请输入管理员密码: [5Lov@wife]: admin  
请再次输入管理员密码: [5Lov@wife]: admin
Starting jumpserver service:                               [确定]


安装成功,Web登录请访问http://ip:8000, 祝你使用愉快。
请访问 https://github.com/jumpserver/jumpserver/wiki 查看文档

 

访问地址:(自己服务器IP地址+8000)

技术分享

 

jumpserver开源跳板机系统部署

标签:eve   用户   enforce   设置   系统   rzsz   txt   iptables   登录   

原文地址:http://www.cnblogs.com/nulige/p/6679353.html

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