jumpserver的安装
安装jumpserver 1.关闭防火墙 关闭SElinux systemctl stop firewalld.service systemctl disable firewalld.service setenforce 0 2.修改字符,防止乱码(这步完事之后就变成中文的虚拟机了。。。我的天) localedef -c -f UTF-8 -i zh_CN zh_CN.UTF-8 export LC_ALL=zh_CN.UTF-8 echo 'LANG=zh_CN.UTF-8' > /etc/sysconfig/i18n 3.下载依赖包 yum -y install wget libselinux-python sqlite-devel xz gcc automake zlib-devel openssl-devel epel-release git 4.进到src目录下 cd /usr/local/src/ 5.下载python包 wget https://www.python.org/ftp/python/3.6.1/Python-3.6.1.tar.xz 6.解压python包 tar xvf Python-3.6.1.tar.xz 7.进入到Python-3.6.1目录下 cd Python-3.6.1 8.对于python进行编译安装 ./configure make