Jumpserver跳转

Posted FikL-09-19

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Jumpserver跳转相关的知识,希望对你有一定的参考价值。

Jumpserver

jumpserver安装脚本

# jumpserver解决了什么
解决了运维资产管理的问题
# jumpserver和ansible的区别
jumpserver是资产管理的问题的工具
ansible是自动化运维的管理工具,两者没有什么先关联
#!/bin/bash
function prepare_check() {
  isRoot=`id -u -n | grep root | wc -l`
  if [ "x$isRoot" != "x1" ]; then
      echo -e "[\\033[31m ERROR \\033[0m] Please use root to execute the installation script (请用 root 用户执行安装脚本)"
      exit 1
  fi
  processor=`cat /proc/cpuinfo| grep "processor"| wc -l`
  if [ $processor -lt 2 ]; then
      echo -e "[\\033[31m ERROR \\033[0m] The CPU is less than 2 cores (CPU 小于 2核,JumpServer 所在机器的 CPU 需要至少 2核)"
      exit 1
  fi
  memTotal=`cat /proc/meminfo | grep MemTotal | awk \'{print $2}\'`
  if [ $memTotal -lt 3750000 ]; then
      echo -e "[\\033[31m ERROR \\033[0m] Memory less than 4G (内存小于 4G,JumpServer 所在机器的内存需要至少 4G)"
      exit 1
  fi
}

function install_soft() {
    if command -v dnf &g

以上是关于Jumpserver跳转的主要内容,如果未能解决你的问题,请参考以下文章

Android从Fragment跳转Activty

在团800运维工作总结之jumpserver分析代码,新加功能

Jumpserver代码规范

Android开发常用代码片段

如何减少页面之间跳转的延迟(片段/活动)

HTML代码片段