博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Centos7 配置
阅读量:4978 次
发布时间:2019-06-12

本文共 1094 字,大约阅读时间需要 3 分钟。

参考文章:

 

1. 查看时区是否正确timedatectl,若不正确则设置时区 timedatectl set-timezone Asia/Shanghai

2. 更改root用户密码,输入passwd,数字、大小写、标点符号,15位以上

3. 增加一个普通用户"adduser username",设置密码"passwd username"

4. 禁止root ssh登陆"vim /etc/ssh/sshd_config","#PermitRootLogin yes"改为"PermitRootLogin no",重启ssh服务"systemctl restart sshd.service"

5. 修改ssh端口"vim /etc/ssh/sshd_config","#Port 22"改为"Port xxxx"(xxxx为1024 – 65535中的数字),重启ssh服务"systemctl restart sshd.service"。启动自带防火墙"systemctl start firewalld",修改防火墙ssh端口"cp /usr/lib/firewalld/services/ssh.xml /etc/firewalld/services/","vim /etc/firewalld/services/ssh.xml",查找port="22",改为设定的端口,保存,重启防火墙"firewall-cmd --reload"。

6. 启用公钥验证登入ssh,提交本机id_rsa.pub到服务器的.ssh/authorized_keys。开启双重验证,"vim /etc/ssh/sshd_config",末尾添加"AuthenticationMethods publickey,password",重启ssh服务"systemctl restart sshd.service"

7. 自动更新软件"yum -y update"更新一下软件,安装"yum -y install cronie yum-cron",修改配置文件"vim /etc/yum/yum-cron.conf",改为"apply_updates = yes",开启自动更新服务"systemctl start crond","systemctl start yum-cron"

8. 配置防火墙,"yum install firewalld","firewall-cmd --list-all"

 

转载于:https://www.cnblogs.com/chemandy/p/4857786.html

你可能感兴趣的文章
FFmpeg命令详解
查看>>
`ln`命令创建软链接错误
查看>>
mysqlDOS命令
查看>>
jquery $(document).ready() 与window.onload的区别
查看>>
day13_自动抽取数据——监控存储过程
查看>>
[转]http返回头中content-length与Transfer-Encoding: chunked的问题释疑
查看>>
课程作业1
查看>>
flume安装和使用
查看>>
vc++中用listcontrol显示时间时,其格式若未指定,将和系统的时间格式一致,这点尤其要注意...
查看>>
老蜗牛写采集-开篇
查看>>
汽车制造中的先进方法与最佳实践
查看>>
display:table / display:table-cell 用法
查看>>
UITableView优化
查看>>
iOS 点击事件传递及响应
查看>>
谷歌应用商城打开
查看>>
Oracle RMAN备份
查看>>
实时监听输入框值变化的完美方案:oninput & onpropertychange
查看>>
【C】枚举用例分析
查看>>
JS限制文本框只能输入数字
查看>>
一套完整系统对人生的意义
查看>>