博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CentOS7操作系统初始化
阅读量:5236 次
发布时间:2019-06-14

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

生产环境配置需要标准化,将常用操作写成脚本用于操作系统的初始化。

本脚本适用于centos7,根据实际需求修改yum源地址和ntp时钟同步源地址后即可使用。

#!/bin/bash# Filename:    centos7_init.sh# Revision:    1.0# Date:        2017/xx/xx# Author:      xxxx# Email:       xxxx@qq.com# Website:     no# Description:centos7系统初始化#1.定义配置yum源函数function yum(){mkdir -p /etc/yum.repos.d/bak/usr/bin/mv /etc/yum.repos.d/*.repo /etc/yum.repos.d/baktouch /etc/yum.repos.d/http.repocat > /etc/yum.repos.d/http.repo << EOF[http]name=Serverbaseurl=http://192.168.2.252/centos7.3enabled=1gpgcheck=0EOF}#2.定义配置NTP函数function ntp(){/usr/bin/yum -y install ntp#修改配置文件echo '' >/etc/ntp.confcat >>/etc/ntp.conf << EOFdriftfile /var/lib/ntp/driftrestrict default nomodify notrap nopeer noqueryrestrict 127.0.0.1 restrict ::1server 192.168.2.136includefile /etc/ntp/crypto/pwkeys /etc/ntp/keysdisable monitorEOF#同步hwclockcat >>/etc/sysconfig/ntpd<
/dev/null/usr/bin/systemctl disable chronyd &> /dev/null/usr/bin/systemctl start ntpd &> /dev/null/usr/bin/systemctl enable ntpd &> /dev/null}#3.定义关闭防火墙函数function close_firewalld(){ /usr/bin/systemctl stop firewalld.service &> /dev/null /usr/bin/systemctl disable firewalld.service &> /dev/null}#4.定义关闭selinux函数function close_selinux(){ setenforce 0 sed -i 's#SELINUX=enforcing#SELINUX=disabled#g' /etc/selinux/config}#5.内核调优function optimization(){[ -f /etc/sysctl.conf.bak ] && error_show "sysctl.conf.back is exist."/usr/bin/cp /etc/sysctl.conf /etc/sysctl.conf.bakcat>>/etc/sysctl.conf<
> /etc/security/limits.confecho "* hard nofile 65535" >> /etc/security/limits.confecho "* soft nproc 65535" >> /etc/security/limits.confecho "* hard nproc 65535" >> /etc/security/limits.conf}#初始化方法function init(){ yum; ntp; close_firewalld; close_selinux; optimization;}init

转载于:https://www.cnblogs.com/sdhzdtwhm/p/8027928.html

你可能感兴趣的文章
几道面试题
查看>>
Factory Design Pattern
查看>>
python中贪婪与非贪婪
查看>>
guava API整理
查看>>
无锁编程笔记
查看>>
jquery mobile
查看>>
如何在vue单页应用中使用百度地图
查看>>
Springboot使用步骤
查看>>
Spring属性注入
查看>>
Springboot-配置文件
查看>>
Springboot-日志框架
查看>>
SpringBoot-thymeleaf
查看>>
P1908-逆序对
查看>>
P1192-台阶问题
查看>>
一、使用pip安装Python包
查看>>
spring与quartz整合
查看>>
Kattis之旅——Eight Queens
查看>>
3.PHP 教程_PHP 语法
查看>>
Duilib扩展《01》— 双击、右键消息扩展
查看>>
利用Fiddler拦截接口请求并篡改数据
查看>>