博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
linux环境搭建前期配置
阅读量:5086 次
发布时间:2019-06-13

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

一、永久修改主机名

1、修改network文件

# vim /etc/sysconfig/network

加入 HOSTNAME=主机名

保存退出

2、修改hosts文件

# vim /etc/hosts

修改主机名和别名

3、修改hostname文件

#vim /etc/hostname

修改为主机名

 

二、安装iptables防火墙

1、关闭firewall

# systemctl stop firewalld.service 

2、禁止firewall开机启动

# systemctl disable firewalld.service

3、安装iptables

# yum install iptables-services

4、清空原有规则链

#iptables -F

#iptables -X

#iptables -Z

5、保存配置

#service iptables save

6、重启iptables

#service iptables restart

7、设置iptables开机启动

#systemctl enable iptables.service

 (防火墙规则链后期另开一篇配置)

三、更改ssh远程连接端口

1、编辑sshd_config

#vim /etc/ssh/sshd_config

2、找到#Port 22一段,这里是标识默认使用22端口,去掉注释,换行加上 Port 8888

保存退出

3、重启sshd

#service sshd restart

 

 

转载于:https://www.cnblogs.com/shizhongyang/p/9510380.html

你可能感兴趣的文章
leetcode Range Sum Query - Mutable
查看>>
20145209&20145309信息安全系统设计基础实验报告 (5)
查看>>
CentOS 6 minimal 安装之后添加gnome
查看>>
关于html转word图片和Word总是要放在绝对的目录下才能显示问题解决
查看>>
总结(三)
查看>>
BLE 5协议栈-直接测试模式
查看>>
从熵增理论中我们到底悟到了什么……
查看>>
Vsphere笔记07 Vcenter 部署流程 2
查看>>
21.使用双重循环打印图形
查看>>
MySQL多线程数据导入导出工具Mydumper
查看>>
向现有的磁盘组加入/删除ASM磁盘
查看>>
mysql处理海量数据时的一些优化查询速度方法
查看>>
把字典按Key的字母顺序排序 IDictionary<string, string>
查看>>
《ios5编程揭秘》第二章 oc语言基础(1)
查看>>
【前端 5】拖拽
查看>>
[java]java String.split()函数的用法分析
查看>>
三种方式都能生成同样的列表
查看>>
vue-router 路由与 angular-route
查看>>
iis7下站点日志默认位置
查看>>
fastmonkey 压力测试
查看>>