• jumpserver篇--安装


    参考:https://github.com/jumpserver/jumpserver/wiki/%E5%AE%89%E8%A3%85%E5%9B%BE%E8%A7%A3

    服务器环境:

    ip:192.168.1.72

    系统:Centos6.8 mini

    适用于版本:v0.3.1-2
    1. 安装git
        yum -y install git
    2. 下载jumpserver
        cd /opt
        git clone https://github.com/jumpserver/jumpserver.git
        注:不要安装在/root、/home 等目录下,以免权限问题
    3. 执行安装脚本
        cd jumpserver/install
        python install.py

    4.jms安装错误汇总

    You should consider upgrading via the 'pip install --upgrade pip' command.
    Collecting django==1.6 (from -r requirements.txt (line 1))
    /usr/lib/python2.6/site-packages/pip/_vendor/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning.
      InsecurePlatformWarning
      Downloading Django-1.6-py2.py3-none-any.whl (6.7MB)
        25% |████████                        | 1.7MB 6.7kB/s eta 0:12:28Exception:
    Traceback (most recent call last):
      File "/usr/lib/python2.6/site-packages/pip/basecommand.py", line 223, in main
        status = self.run(options, args)
      File "/usr/lib/python2.6/site-packages/pip/commands/install.py", line 290, in run
        requirement_set.prepare_files(finder)
      File "/usr/lib/python2.6/site-packages/pip/req/req_set.py", line 334, in prepare_files
        functools.partial(self._prepare_file, finder))
      File "/usr/lib/python2.6/site-packages/pip/req/req_set.py", line 321, in _walk_req_to_install
        more_reqs = handler(req_to_install)
      File "/usr/lib/python2.6/site-packages/pip/req/req_set.py", line 491, in _prepare_file
        session=self.session)
      File "/usr/lib/python2.6/site-packages/pip/download.py", line 825, in unpack_url
        session,
      File "/usr/lib/python2.6/site-packages/pip/download.py", line 673, in unpack_http_url
        from_path, content_type = _download_http_url(link, session, temp_dir)
      File "/usr/lib/python2.6/site-packages/pip/download.py", line 886, in _download_http_url
        _download_url(resp, link, content_file)
      File "/usr/lib/python2.6/site-packages/pip/download.py", line 621, in _download_url
        for chunk in progress_indicator(resp_read(4096), 4096):
      File "/usr/lib/python2.6/site-packages/pip/utils/ui.py", line 133, in iter
        for x in it:
      File "/usr/lib/python2.6/site-packages/pip/download.py", line 586, in resp_read
        decode_content=False):
      File "/usr/lib/python2.6/site-packages/pip/_vendor/requests/packages/urllib3/response.py", line 307, in stream
        data = self.read(amt=amt, decode_content=decode_content)
      File "/usr/lib/python2.6/site-packages/pip/_vendor/requests/packages/urllib3/response.py", line 267, in read
        raise ReadTimeoutError(self._pool, None, 'Read timed out.')
    ReadTimeoutError: HTTPSConnectionPool(host='pypi.python.org', port=443): Read timed out.

    安装JumpServer 依赖的python库失败!

    解决方法:指定源安装
    pip install -r requirements.txt -i http://pypi.douban.com/simple --trusted-host pypi.douban.com

    ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)
    ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)
    数据库连接失败 (1045, "Access denied for user 'jumpserver'@'localhost' (using password: YES)")

    解决方法(说明本地已经存在数据库了):

    mysql -e "create database jumpserver charset='utf8';"
    mysql -e "grant all on jumpserver.* to 'jumpserver'@'127.0.0.1' identified by '5Lov@wife';"
    mysql -e "flush privileges;"


    是否安装新的MySQL服务器? (y/n) [y]: n (忽略即可)

    5.安装成功

    请输入管理员用户名 [admin]: admin
    请输入管理员密码: [5Lov@wife]: 5Lov@wife
    请再次输入管理员密码: [5Lov@wife]: 5Lov@wife
    Starting jumpserver service:                               [  OK  ]

    安装成功,Web登录请访问http://ip:8000, 祝你使用愉快。
    请访问 https://github.com/jumpserver/jumpserver/wiki 查看文档
    [root@jumpserver1 install]# cat /etc/redhat-release  

  • 相关阅读:
    Vue项目中全局过滤器的使用(格式化时间)
    vue-photo-preview 图片放大功能
    mongoimport导入json文件
    node后台,MongoDB作为数据库,vue前端获取数据并渲染
    JeasyUI,导出Excel
    EasyUI的textbox的disable ,readonly 用法
    EasyUI 中 Combobox里的onChange和onSelect事件的区别
    NullReferenceException 的可恨之处
    最新国家行政区划代码,来自国家统计局2018年底最新数据
    把旧系统迁移到.Net Core 2.0 日记 (20) --使用MiniProfiler for .NET
  • 原文地址:https://www.cnblogs.com/521football/p/6069574.html
Copyright © 2020-2023  润新知