当前位置: 首页 > article >正文

Centos7 系统初始化

centos 7初始化系统
1、关闭selinux:

setenfore 0 
sed -i “s/enable/disabled/” /etc/config/selinx

2、关闭firewalld:sys:

systemctl stop firewalld
systemctl disabled firewalld

3、设置会话连接超时时间和History历史记录配置:在/etc/profile文件中末尾添加2行:

vim /etc/profile

export TMOUT=1800
export HISTTIMEFORMAT="%F %T whoami "

4、更新阿里云yum源
备份yum源

mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup

下载阿里云yum源

wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo

清理yum源缓存

 yum -y clean all

产生缓存

 yum makecache

查看当前源

 yum repolist

更新软件

yum -y update

5、配置时间同步:

yum install -y vim && yum install -y ntpdate && /usr/sbin/ntpdate 1.cn.pool.ntp.org 

执行

crontab -e

命令,添加:

0 * * * * /usr/sbin/ntpdate 1.cn.pool.ntp.org

内容

6、YUM安装必要软件:

yum install -y wget epel-release net-tools vim

7、关闭不必要的服务

systemctl stop postfix && systemctl disable postfix
systemctl stop NetworkManager && systemctl disable NetworkManager

8、内核优化

cat > /etc/sysctl.conf << EOF
net.core.rmem_max = 16777216
net.core.wmem_max = 16777216
fs.file-max = 131072
kernel.panic=1
net.ipv4.tcp_rmem = 4096 87380 16777216
net.ipv4.tcp_wmem = 4096 65536 16777216
net.ipv4.tcp_timestamps = 0
net.ipv4.tcp_window_scaling = 1
net.ipv4.tcp_sack = 1
net.ipv4.tcp_no_metrics_save = 1
net.core.netdev_max_backlog = 3072
net.ipv4.tcp_max_syn_backlog = 4096
net.ipv4.tcp_max_tw_buckets = 720000
net.ipv4.ip_local_port_range = 1024 65000
net.ipv4.tcp_fin_timeout = 5
net.ipv4.tcp_tw_recycle = 1
net.ipv4.tcp_retries1 = 2
net.ipv4.tcp_retries2 = 10
net.ipv4.tcp_synack_retries = 2
net.ipv4.tcp_syn_retries = 2
net.ipv4.tcp_syncookies = 1
EOF

sysctl -p

cat >> /etc/security/limits.conf << EOF
* soft nproc 2048
* hard nproc 16384
* soft nofile 8192
* hard nofile 65536
EOF

9、设置静态ip

  • 首先进入 /etc/sysconfig/network-scripts/ifcfg-ens33
 vim /etc/sysconfig/network-scripts/ifcfg-ens33
  • 然后把原内容删除设置以下内容
TYPE=Ethernet
BOOTPROTO=static
NAME=ens33
DEVICE=ens33
ONBOOT=yes
IPADDR=192.168.229.10
NETMASK=255.255.255.0
GATEWAY=192.168.229.2
DNS1=8.8.8.8
DNS2=114.114.114.114
  • 保存并退出

这样就可以得到一个系统初始化好的CentOS 7 系统,进行快照就可以重复使用


http://www.kler.cn/a/448295.html

相关文章:

  • 【优选算法---归并排序衍生题目】剑指offer51---数组中的逆序对、计算右侧小于当前元素的个数、翻转对
  • 微服务——技术选型与框架
  • Idean 处理一个项目引用另外一个项目jar 但jar版本低的问题
  • 消息队列 Kafka 架构组件及其特性
  • git remote -v(--verbose)显示你的 Git 仓库配置的远程仓库的详细信息
  • 你好Python
  • MySQL LIST Partitioning 问题求解/吐槽
  • 解锁大数据治理的“密码”与应用奥秘
  • ApacheStruts2 目录遍历与文件上传漏洞复现(CVE-2024-53677,S2-067)(附脚本)
  • 《测试开发方法论》-追踪溯源
  • 【钉钉群聊机器人定时发送消息功能实现】
  • C++ 哈希表封装unordered_map 和 unordered_set
  • 浅谈ORACLE中间件SOA BPM,IDM,OID,UCM,WebcenterPortal服务器如何做迁移切换
  • FLV视频封装格式详解
  • SSM 驱动的 JAVA 网络直播带货查询系统设计及 JSP 成功实现解析
  • 如何确保Java爬虫不超出API使用限制:策略示例
  • Vue 环境变量配置、使用方法、注意事项
  • HTML综合案例
  • C++设计模式:享元模式 (附文字处理系统中的字符对象案例)
  • pro文件转换为CMakeLists.txt文件,QT官方工具使用教程
  • vue+springboot+cas配置及cookie传递问题
  • 现代密码学总结(下篇)
  • Golang中的Map是怎么遍历的
  • 面试题整理9----谈谈对k8s的理解1
  • Rocky Linux 9安装RabbitMQ
  • 设计模式之结构型