jumpserver安装

安装步骤

按照官网上步骤安装:

  1. 安装依赖

    yum -y install git

  2. 下载jumpserver

    cd /opt
    git clone https://github.com/jumpserver/jumpserver.git

  3. 安装

    cd jumpserver/install/
    ./install.py

安装时,第3部出现错误,提示PyCrypto安装不上,于是就自己下载软件包,把PyCrypto安装上:

wget http://ftp.dlitz.net/pub/dlitz/crypto/pycrypto/pycrypto-2.6.tar.gz
tar -zxvf pycrypto-2.6.tar.gz
cd pycrypto-2.6/
python setup.py build && python setup.py install

然后再次执行上面的3.安装步骤,done!

来两张权限分配好后的截图:

原文地址:https://www.cnblogs.com/youqc/p/9306117.html