centos模板機制作前修改配置

2021-09-20 17:27:22 字數 4077 閱讀 2021

1.關閉selinux

sed -i 's#selinux=enforcing#selinux=disabled#g' /etc/selinux/config

setenforce 0 臨時生效,想要長期生效,重啟系統

getenforce 檢視selinux狀態

2.關閉防火牆

/etc/init.d/iptables stop

/etc/init.d/iptables stop 要關閉至少2次

chkconfig iptables off

3.精簡開機自啟動服務

chkconfig|egrep -v "crond|sshd|network|rsyslog|sysstat"|awk ''|bash

export lang=en

chkconfig --list|grep 3:on

4.提權oldboy可以sudo

useradd oldboy

\cp /etc/sudoers /etc/sudoers.ori

echo "oldboy all=(all) nopasswd:all">>/etc/sudoers

tail -l /etc/sudoers

visudo -c

5.中文字符集

先檢視[root@oldboy ~]# cat /etc/sysconfig/i18n 

lang="en_us.utf-8"

sysfont="latarcyrheb-sun16"

再備份[root@oldboy ~]# cp /etc/sysconfig/i18n /etc/sysconfig/i18n.ori

再修改[root@oldboy ~]# echo 'lang="zh_cn.utf-8"'>/etc/sysconfig/i18n

[root@oldboy ~]# source /etc/sysconfig/i18n 

#使上文修改生效

[root@oldboy ~]# echo $lang

檢視當前字符集狀態

6.時間同步

[root@oldboy ~]# echo '#time sync by oldboy at 2010-2-1'>>/var/spool/cron/root

[root@oldboy ~]# echo '*/5 * * * * /usr/sbin/ntpdate time.nist.gov >/dev/null 2>&1' >>/var/spool/cron/root

[root@oldboy ~]# crontab -l

#time sync by oldboy at 2010-2-1

*/5 * * * * /usr/sbin/ntpdate time.nist.gov >/dev/null 2>&1

7.命令列安全

[root@oldboy ~]# #time sync by oldboy at 2010-2-1

[root@oldboy ~]# echo 'export tmout=300' >>/etc/profile

[root@oldboy ~]# echo 'export histsize=5' >>/etc/profile          

[root@oldboy ~]# echo 'export histfilesize=5' >>/etc/profile

[root@oldboy ~]# tail -3 /etc/profile

[root@oldboy ~]# . /etc/profile

8.加大檔案描述

[root@oldboy ~]# echo '*        -       nofile       65535' >>/etc/security/limits.conf

[root@oldboy ~]# tail -1 /etc/security/limits.conf  

*        -       nofile       65535

9.核心優化

cat >>/etc/sysctl.confnet.ipv4.tcp_tw_recycle = 1

net.ipv4.tcp_syncookies = 1

net.ipv4.tcp_keepalive_time = 600

net.ipv4.ip_local_port_range = 400065000

net.ipv4.tcp_max_syn_backlog = 16384

net.ipv4.tcp_max_tw_buckets = 36000

net.ipv4.route.gc_timeout = 100

net.ipv4.tcp_syn_retries = 1

net.ipv4.tcp_synack_retries = 1

net.core.somaxconn = 16384

net.core.netdev_max_backlog = 16384

net.ipv4.tcp_max_orphans = 16384

#以下引數是對iptables防火牆的優化,防火牆不開會提示,可以忽略不理。

#以下引數是對iptables防火牆的優化。

#centos 6.x:

net.netfilter.nf_conntrack_max = 25000000

net.netfilter.nf_conntrack_tcp_timeout_established = 180

net.netfilter.nf_conntrack_tcp_timeout_time_wait = 120

net.netfilter.nf_conntrack_tcp_timeout_close_wait = 60

net.netfilter.nf_conntrack_tcp_timeout_fin_wait = 120

#注意:在此優化過程中可能會有報錯

#舉例:

#5.8版本上

error: "net.ipv4.ip_conntrack_max"is an unknown key

error: "net.ipv4.netfilter.ip_conntrack_max"is an unknown key

error: "net.ipv4.netfilter.ip_conntrack_tcp_timeout_established"is an unknown key

error: "net.ipv4.netfilter.ip_conntrack_tcp_timeout_time_wait"is an unknown key

error: "net.ipv4.netfilter.ip_conntrack_tcp_timeout_close_wait"is an unknown key

error: "net.ipv4.netfilter.ip_conntrack_tcp_timeout_fin_wait"is an unknown key

#6.4版本上

error: "net.nf_conntrack_max"isan unknown key

error: "net.netfilter.nf_conntrack_max"isan unknown key

error: "net.netfilter.nf_conntrack_tcp_timeout_established"isan unknown key

error: "net.netfilter.nf_conntrack_tcp_timeout_time_wait"isan unknown key

error: "net.netfilter.nf_conntrack_tcp_timeout_close_wait"isan unknown key

error: "net.netfilter.nf_conntrack_tcp_timeout_fin_wait"isan unknown key

#6.4版本上

error: "net.bridge.bridge-nf-call-ip6tables"isan unknown key

error: "net.bridge.bridge-nf-call-iptables"isan unknown key

error: "net.bridge.bridge-nf-call-arptables"isan unknown key

eofsandshell

c 模板機制

一 函式的模板 函式模板其實就是乙個模子,用這個模子可以澆注出許多功能相同 引數型別和返回型別不同函式,從而實現 的重用。一般的模板是template,當然新標準c 又增加了乙個關鍵字typename,可以替換class,如 template 為了向下相容,不建議用typename。廢話少說,上程式...

從PHP的模板引擎看Discuz 模板機制

此文 第七期,看看人家寫的東西。鑑於對php的熟悉度及以後的維護,最近想把那個asp的分類資訊網改一下,前台基本改版 完畢,使用了fleaphp提供的架構 對比了thinkphp與fleaphp最終還是選擇了後者 其中的檢視使用了smarty模板,平台環境使用 了apmserv,開發環境使用了zen...

centos7安裝docker實驗模板機搭建

1 清除環境,沒有安裝可以略過 yum y remove docker docker client docker client latest docker common docker latest docker latest logrotate docker logrotate docker sel...