当前位置: 首页 > 工具软件 > GateOne > 使用案例 >

centos7 gateone安装

傅玮
2023-12-01

原文地址:https://www.cnblogs.com/hale-chen/p/5755391.html


ateOne是一款不错的webshell,至于为什么在有了xshell等很多客户端模式的软件以后,还需要web形式的,很多人已经给出了比较详细的答案,可以去百度一下。本文是在全新的centos7环境下对GateOne安装调试运行,步骤如下:
        1.全新的centos7环境下需要安装pip
          
          sudo yum -y install epel-release
          sudo yum -y install python-pip
 
        2.下载GateOne
          
          wget https://github.com/liftoff/GateOne/archive/master.zip
 
        3.解压
          
         unzip master.zip -d/opt
          
         4.安装所需要的模块
          
          将pip更新到最新:pip install --upgrade pip
          
          安装tornado框架:pip install tornado
          
          将setuptools升级:pip install --upgrade setuptools
          
           安装html5lib: pip install html5lib
 
          5.安装GateOne
          
          进入GateOne目录:cd /opt/GateOne-master
          
          安装GateOne:python setip.py install
          6.启动
          
          关闭防火墙:systemctl stop firewalld.service
          启动:python run_gateone.py
          访问:https:ip:10443

        如果还访问不了,可能是端口号没打开

          打开端口号:iptables -A INPUT -p tcp --dport  端口号-j ACCEPT

 类似资料: