惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园_首页
Vercel News
Vercel News
Last Week in AI
Last Week in AI
罗磊的独立博客
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
IT之家
IT之家
美团技术团队
U
Unit 42
Google DeepMind News
Google DeepMind News
P
Proofpoint News Feed
J
Java Code Geeks
V
V2EX
量子位
腾讯CDC
S
SegmentFault 最新的问题
The GitHub Blog
The GitHub Blog
G
Google Developers Blog
D
DataBreaches.Net
雷峰网
雷峰网
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园 - 聂微东
L
LangChain Blog
C
Check Point Blog

博客园 - 泡面 @ 幸福

nodejs&wsl&vscode&docker开发环境搭建 python中list数组指定类型 windows10安装Trading View出错解决办法 windows or linux 64位安装ta-lib包 在centos7开启SSH服务 在centos7升级nodejs到最新版本 一张自画的RBAC用户、组、角色、权限、指令、资源图 JSON树形格式从子级获取所有父级ID JSON数据格式生成无限级树结构 MYSQL查询上级和下级 码云push时提示 DeployKey does not support push code fatal: Could not read from remote repository. git常用命令 thinkjs框架发布上线PM2管理,静态资源访问配置 登陆服务器提示“You need to run "nvm install N/A" to install it before using it.” CentOS 7.x 用shell增加、删除端口 Centos 7.x nginx隐藏版本号 centos7磁盘挂载及取消 CentOS 7.4上网速度慢,修改DNS! Centos7.4 安装Docker
CentOS 7.X 安全手记
泡面 @ 幸福 · 2018-12-20 · via 博客园 - 泡面 @ 幸福

一、安装云锁

  1、报错

    Install Selinux Policy Module:yunsuo_install/install: line 371: checkmodule: command not found

     

  2、关闭SeLinux

    #vim /etc/selinux/config

    将 SELINUX=enforcing

    改 SELINUX=disabled

    

  3、重启系统

    #reboot now

二、Centos7相关的操作

  1、防火墙(firewall-cmd)

    1)、禁止被ping(禁止ICMP协议)

        #vim /etc/sysctl.conf

        #net.ipv4.icmp_echo_ignore_all = 1  
        #sysctl -p               //使配置生效。

    2)、关闭SMTP简单邮件传输协议,25端口

        #关闭

        #systemctl stop postfix.service

        #chkconfig postfix off

        #开启

        #chkconfig postfix on

        #systemctl start postfix.service