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

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

hot3.png

关闭防火墙,Selinux

systemctl stop firewalldsystemctl disable firewalldsetenforce 0sed -i 's/SELINUX=enforcing/SELINUX=disabled/g' /etc/selinux/config

配置yum源

mkdir /etc/yum.repos.d/OldRepomv /etc/yum.repos.d/*.repo /etc/yum.repos.d/OldRepo/curl -so /etc/yum.repos.d/epel-7.repo http://mirrors.aliyun.com/repo/epel-7.repocurl -so /etc/yum.repos.d/Centos-7.repo http://mirrors.aliyun.com/repo/Centos-7.reposed -i '/aliyuncs.com/d' /etc/yum.repos.d/Centos-7.repo /etc/yum.repos.d/epel-7.repo

时间同步

yum install -y ntpdatentpdate ntp1.aliyun.comhwclock -wecho "*/20 * * * * $(which ntpdate) ntp1.aliyun.com > /dev/null 2>&1 && $(which hwclock) -w" > /var/spool/cron/rootchmod 600 /var/spool/cron/root

快速启动

sed -i 's/timeout=.*/timeout=1/g' /boot/grub2/grub.cfg

快速关机

cat <
>/etc/systemd/system.confDefaultTimeoutStartSec=15sDefaultTimeoutStopSec=15sEOFsystemctl daemon-reload

资源限制

cat <
>/etc/security/limits.conf# add limits* soft nofile 65536* hard nofile 65536* soft nproc 65536* hard nproc 65536* soft memlock unlimited* hard memlock unlimitedEOF

使用脚本

curl https://gitee.com/yx571304/my_oschina/raw/master/init.sh | sh

转载于:https://my.oschina.net/yx571304/blog/2231426

你可能感兴趣的文章
多线程问题(JVM重排序)
查看>>
LeetCode 459 Repeated Substring Pattern
查看>>
POJ 3268 Silver Cow Party
查看>>
EMLS项目推进思考
查看>>
Eclipse快捷键 10个最有用的快捷键
查看>>
2018-2019-1 20165302 实验五 通讯协议设计
查看>>
Golang 知识点总结
查看>>
JAVA 8 特性
查看>>
算法设计 - LCS 最长公共子序列&&最长公共子串 &&LIS 最长递增子序列
查看>>
WebService之Axis2快速入门(7): Spring与axis整合发布为WebServic
查看>>
Uliweb查看模板调用关系
查看>>
C#与PHP通信压缩
查看>>
关于 Linux
查看>>
图文解析五大外链误区
查看>>
ios开发之导航控制器的原理
查看>>
《Netkiller Blockchain 手札》Hyperledger Fabric Java SDK Demo
查看>>
querySelector 和 querySelectorAll区别
查看>>
Linux系统_Centos7下安装Nginx
查看>>
《PHP和MySQL Web 开发》 第12章 MySQL高级管理
查看>>
数据库设计 Step by Step (6) —— 提取业务规则
查看>>