zoukankan      html  css  js  c++  java
  • Linux小技巧2:如何修改SSH登陆端口

    >vim /etc/ssh/sshd_config

    Port 22

    改为

    Port XXXX

    > service sshd restart //重启SSHD服务,使修改生效

    修改完成后将防火墙放行你修改后的端口,centos 7 后的系统管理selinux

    关闭seLinux:

    1. 永久有效

    修改 /etc/selinux/config 文件中的 SELINUX="" 为 disabled ,然后重启。

    2. 即时生效

    setenforce 0

    关闭防火墙:

    1. 永久性生效

    开启:chkconfig iptables on

    关闭:chkconfig iptables off

    2. 即时生效,重启后失效

    开启:service iptables start

    关闭:service iptables stop

    当你觉得自己的想法很创新时,十有八九是知识面太窄。
  • 相关阅读:
    LeetCode.152
    python
    python
    python
    python
    python
    python
    python
    PyCharm2020.1激活码破解教程
    Python GUI编程(Tkinter)17、Menu鼠标右键菜单
  • 原文地址:https://www.cnblogs.com/flankershen/p/6519277.html
Copyright © 2011-2022 走看看