22端口作为远程登录服务器的知名端口,如果22端口暴露在互联网必然会引起攻击。
以下示例是在你知道服务器root用户账密的前提下操作,不要老想着如何ssh 攻击, 本文旨在合理正确使用服务器。
以redHat为例子
编辑此文件/etc/ssh/sshd_config
将此注释打开并修改为你希望的一个端口,主要不要和知名端口重复。
重启sshd 服务即可。
]#service sshd restart
Stopping sshd: [ OK ]
Starting sshd: [ OK ]
]#service sshd status
openssh-daemon (pid 31599) is running...
我们的redhat是6 所以用service。看到网上很多教程让使用systemctl。 后者是比较新的Linux 版本使用的服务管理工具。
systemd是Linux系统最新的初始化系统(init),作用是提高系统的启动速度,尽可能启动较少的进程,尽可能更多进程并发启动。
systemd对应的进程管理命令是systemctl
1)systemctl命令兼容了service
即systemctl也会去/etc/init.d目录下,查看,执行相关程序
systemctl redis start systemctl redis stop # 开机自启动 systemctl enable redis
systemctl 管理服务的启动、重启、停止、重载、查看状态等常用命令区分
System V init 命令(RHEL 6) systemctl 命令(RHEL 7) 作用
service foo start systemctl start foo.service 启动服务
service foo restart systemctl restart foo.service 重启服务
service foo stop systemctl stop foo.service 停止服务
service foo reload systemctl reload foo.service 重新加载配置文件(不终止服务)
service foo status systemctl status foo.service 查看服务状态
systemctl 设置服务开机启动、不启动、查看各级别下服务启动状态等常用命令
System V init 命令(RHEL 6) systemctl 命令(RHEL 7) 作用
chkconfig foo on systemctl enable foo.service 开机自动启动
chkconfig foo off systemctl disable foo.service 开机不自动启动
chkconfig foo systemctl is-enabled foo.service 查看特定服务是否为开机自动启动
chkconfig --list systemctl list-unit-files --type=service 查看各个级别下服务的启动与禁用情况
service命令其实是去/etc/init.d目录下,去执行相关程序
# service命令启动redis脚本 service redis start # 直接启动redis脚本 /etc/init.d/redis start # 开机自启动 update-rc.d redis defaults