centos 系统初始化

#!/bin/bash
# author cfwl create date of 2012-10-21
# blog http://cfwlxf.blog.51cto.com
# source user shell variable
PATH=/sbin:/bin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin
export PATH
# Source system network library.
. /etc/sysconfig/network
# Source system function library.
. /etc/init.d/functions
SYSTEM_HOSTNAME(){
# Source system network library.
. /etc/sysconfig/network
# Update name of system host
printf "\033[33mplease input system host name:\033[0m " STR
read STR
# Judge system hostname
hostname $STR
sed -i "s/HOSTNAME=$HOSTNAME/HOSTNAME=$STR/" /etc/sysconfig/network
# Judge system hostname if equal user input name
HOSTNAME=$(awk -F '=' '/HOSTNAME/{print $2}' /etc/sysconfig/network)
if [ "$HOSTNAME" = "$STR" ]
then
sleep 2
printf "\033[35msystem host name is update by: $STR\033[0m $str\n"
else
printf "\033[35msystem host name is not update\033[0m\n"
exit 0
fi
}
# Update System SSH Service Port
SYSTEM_SSH_PORT(){
SSH_CONFIG=/etc/ssh/sshd_config
#Backup SSH configuration
cp -a ${SSH_CONFIG} ${SSH_CONFIG}.save
#Chage SSH server of port
sed -i '/^#Port/s/#Port 22/Port 65535/g' $SSH_CONFIG
sed -i '/^#UseDNS/s/#UseDNS yes/UseDNS no/g' $SSH_CONFIG
sed -i 's/#PermitRootLogin yes/PermitRootLogin no/g' $SSH_CONFIG
sed -i 's/#PermitEmptyPasswords no/PermitEmptyPasswords no/g' $SSH_CONFIG
sleep 2
#Prompt user if restart SSH service
printf "\033[32myou need to restart the SSH service,configuration to take effect.
1> Input \"y\", Now restart to SSH service.
2> Input \"n\", Later in the manual restart.
Please input string \"y/n\": \033[0m" RETVAL
read RETVAL
[ "$RETVAL" = "y" ] && sleep 2 && /etc/init.d/sshd restart
[ "$RETVAL" = "n" ] && sleep 2 && action "Later on please manual restart SSH service" true
}
# Close system Selinux and iptables function
SYSTEM_IPV4_FORWARD(){
#Close syetem selinux and iptalbes forward
sed -i '/^SELINUX/s/SELINUX=enforcing/SELINUX=disabled/g' /etc/selinux/config
RETVAL=$(awk -F '=' '/^SELINUX=/{print $NF}' /etc/selinux/config)
[ "$RETVAL" = "disabled" ] && sleep 1 && printf "\033[36mSelinux Change [$RETVAL], please restart system by tack effect.\033[0m\n"
sleep 2
#Close syetem iptables forward
/etc/init.d/iptables stop && chkconfig iptables off
}
#Optimizing The System Service and Rsync System Time
CLOSE_SYSTEM_SERVER(){
#Stop All System Serivce
for server in `chkconfig --list | awk '{print $1}'`;do chkconfig $server off;done
#Start Up Assign System Service
for server in sshd messagebus rngd network crond rsyslog irqbalance;do chkconfig --level 35 $server on;done
#Print modify alter of service
RETVAL=$(chkconfig --list | egrep '3:on|5:on' | awk '{print $1}' | xargs)
printf "\033[35mPrint current system auto start of server: $RETVAL\033[0m\n"
#Rsync System Local Time
RETVAL=$(rpm -qa ntp | wc -l)
if [ $RETVAL = 1 ]
then
echo "5 * * * * ntpdate ntp.api.bz > /dev/null 2>&1" >> /var/spool/cron/root
else
yum install ntp
echo "5 * * * * ntpdate ntp.api.bz > /dev/null 2>&1" >> /var/spool/cron/root
fi
}
#Update Yum Source
UPDATE_YUM_SOURCE(){
# Judge YUM_BACK_DIR directory if exist
getDT=`date -d "today" +"%Y%m%d_%H%M%S"`
export getDT=$getDT YUM_BACK_DIR=/etc/yum.repos.d/backup_$getDT/
YUM_DIR=/etc/yum.repos.d/
[ ! -d ${YUM_BACK_DIR} ] && mkdir ${YUM_BACK_DIR}
echo ${YUM_BACK_DIR}
#sleep 1000s cd ${YUM_DIR}
find . -type f -name "*.repo" | xargs mv -t ${YUM_BACK_DIR}
RETVAL=0
#Determine the return value if 0.
[ $? = ${RETVAL} ] && printf "\033[32m
1.Inland 163 yum source
2.Inland sohu yum source
Judge:please input install 163 or sohu yum source:\033[0m" STR
read STR
case "$STR" in
163)
wget http://mirrors.163.com/.help/CentOS7-Base-163.repo
RETVAL=0
[ $? = ${RETVAL} ] && printf "\033[35mYum source is download successfully of 163 mirrors.\n\033[0m"
sleep 2
rpm --import http://mirror.centos.org/centos/RPM-GPG-KEY-CentOS-7
yum update
yum makecache
;;
sohu)
wget http://mirrors.sohu.com/help/CentOS-Base-sohu.repo
RETVAL=0
[ $? = ${RETVAL} ] && printf "\033[35mYum source is download successfully of sohu mirrors.\n\033[0m"
sleep 2
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-*
yum update
yum makecache
;;
*)
echo -e "\033[31m Error: plase you input 163 or sohu.\033[0m"
UPDATE_YUM_SOURCE
exit 0
esac
}
#By the user to enter the digital implementation corresponding function
echo -e "\033[32m ----------------------------------------------------------------------------------------------------------------
| welcome to syetem initialize scripts |
----------------------------------------------------------------------------------------------------------------
|Judge: Scripts Can realize the function as follows: |
|(1)Modification system host name . |
|(2)Close system SELINXU and iptables. |
|(3)Modification SSH service port as configure. |
|(4)Close System Don't use of Service and update system time |
|(5)Update System Yum Source |
----------------------------------------------------------------------------------------------------------------\033[0m"
read -p "Please according number input you want execute of function: " number
case "$number" in
1)
SYSTEM_HOSTNAME
RETVAL=0
[ $? = $RETVAL ] && action "System host name update successfully,please restart system." true
;;
2)
SYSTEM_IPV4_FORWARD
;;
3)
SYSTEM_SSH_PORT
RETVAL=0
[ $? = $RETVAL ] && action "Update System SSH Service Port already successfully." true
;;
4)
CLOSE_SYSTEM_SERVER
RETVAL=0
[ $? = $RETVAL ] && action "Initialize Sytem Service already successfully." true
;;
5)
UPDATE_YUM_SOURCE
RETVAL=0
[ $? = $RETVAL ] && action "Update System Yum Source already successfully." true
;;
*)
printf "\033[36mError: please you input prompt dialog box of number:1-5\033[0m\n"
;;
esac

  

centos 系统初始化的更多相关文章

  1. centos系统初始化流程及实现系统裁剪

    Linux系统的初始化流程: POST:ROM+RAM BIOS: Boot Sequence MBR: 446:bootloader 64: 分区表 2: 5A kernel文件:基本磁盘分区 /s ...

  2. centos系统初始化配置

    .改主机名: sed -i 's#HOSTNAME=.*#HOSTNAME=u05mix06.yaya.corp#g' /etc/sysconfig/network && hostna ...

  3. CentOS系统初始化---不断更新中

    注意EOF不能有空格tab键 #get os version release=$(rpm -q --qf "%{VERSION}" $(rpm -q --whatprovides ...

  4. centos系统初始化脚本

    #!/bin/bash #检测是否为root用户 ];then echo "Must be root can do this." exit fi #检测网络 echo " ...

  5. bash-1 初始化CentOS系统的初始化脚本

    初始化CentOS系统的初始化脚本 #!/bin/bash # #******************************************************************* ...

  6. Centos 7 x64 系统初始化

    前言 Hi,小伙伴们,系统初始化是运维工作中重要的一环,它能有效的提升工作效率,并且是标准化规范化的前提:它能省去要用时再去下载的麻烦,另外,还可以避免因未初始化引起的一些故障问题,可谓好处多多.系统 ...

  7. CentOS系统MySQL双机热备配置

    1  概述 在集成项目中需要应对不同环境下的安装配置,主流操作系统大致可以分为三种:Linux.Windows以及UNIX.其中Linux备受青睐的主要原因有两个: 首先,Linux作为自由软件有两个 ...

  8. CentOS系统下Redis安装和自启动配置的步骤

    相信大家都知道Redis是一个C实现的基于内存.可持久化的键值对数据库,在分布式服务中常作为缓存服务.所以这篇文章将详细介绍在CentOS系统下如何从零开始安装到配置启动服务.有需要的可以参考借鉴. ...

  9. 【linux】系统初始化的shell脚本

    根据参考网上的一些文章,总结出来一个系统初始化的shell脚本 1.初始化脚本 #!/bin/bash cat << EOF +------------------------------ ...

随机推荐

  1. JVM培训之一些GC算法的理论知识

    很精彩的一次内部分享,介绍了大部分的GC算法理论知识,JVM博大精深,本篇文章只是结合本次内部分享总结的一些理论知识,如果有大佬有疑问,欢迎留言指出! Concurrent:并发,程序一边运行一边做G ...

  2. Myeclipse2014无法启动,启动十分之一自动闪退,闪退

    现象: Myeclipse2014 无法启动 闪退 配图:  解决办法: 删掉 {workspace}/.metadata/.plugins/org.eclipse.e4.workbench/work ...

  3. Docker 常用命令——容器

    1.新建并启动容器 docker run [option] images [command][arg]    #根据镜像新建容器并运行.如果本地没有镜像则从docker hub上拉取. --name ...

  4. Web前端---HTTP协议

    目录 HTTP协议 一.http协议概述 二.http请求报文 1.GET请求 2.POST请求 三.http响应报文 1.响应报文内容 2.状态码(Status Code) HTTP协议 一.htt ...

  5. MySql 5.7.21免安装版本win10下的配置

    1.解压到想要安装的位置,创建my.ini文件 my.ini的内容如下 [mysql] # 设置mysql客户端默认字符集 default-character-set=utf8 [mysqld] #设 ...

  6. IComparer 与 IComparable

    static void Main() { var people = new ArrayList(); people.AddRange(new ArrayList { }, }, }, } }); Co ...

  7. iOS开发者证书-详解/生成/使用

    本文假设你已经有一些基本的Xcode开发经验, 并注册了iOS开发者账号. 相关基础 加密算法 现代密码学中, 主要有两种加密算法: 对称密钥加密 和 公开密钥加密. 对称密钥加密 对称密钥加密(Sy ...

  8. node.js(二)

    今天我们学习如何运行起来一个项目,我还不会新建项目,所以我们打开一个小伙伴创建的项目,我用的开发工具是vscode 选择项目所在文件夹就好了. 打开后是这样子的 我们还要安装一下npm, 在这里安装, ...

  9. go语言带cookie的net客户端请求与[]byte转string

    前些日子参加了一个叫Advent of Code的编程大赛,每天一道题,快活似神仙.这每道题都有自己的拼图数据输入puzzle input,要做题就需要用到该数据,把数据复制过来感觉又太麻烦,于是就兴 ...

  10. ASP.NET 并发控制

    当多个用户试图同时修改数据时,需要建立控制机制来防止一个用户的修改对同时操作的其他用户所作的修改产生不利的影响.处理这种情况的系统叫做“并发控制”. 并发控制的类型 通常,管理数据库中的并发有三种常见 ...