主要从事linux,云原生架构改造,服务网格,elk,python,golang等相关技术。
发布时间:2015-06-26 20:12:53
linux下iptables配置详解
如果你的iptables基础知识还不了解,建议先去看看.
开始配置
我们来配置一个filter表的防火墙.
(1)查看本机关于iptables的设置情况
[root@vm ~]# iptables -l -n
chain input (policy accept)
target .........
发布时间:2015-06-24 09:33:41
深入分析各种raid模式 本文从低层原理上,深入透析了目前存在的7种模式的组成原理,结构,并深刻分析了各种级别相对于单盘io速率的变化。raid0 raid0是这样一种模式:我们拿5块盘的raid0为例子。.........
发布时间:2015-06-23 23:24:45
raid是“redundant array of independent disk”的缩写,中文意思是独立冗余磁盘阵列。简单地解释,就是将n台硬盘通过raid controller(分hardware,software)结合成虚拟单台大容量的硬盘使用。raid的采用为存储系统(或者服务器的内置存储)带来巨大利益,其中提高传输速率和提供容错功能是最大的优点。简单的说,r.........
发布时间:2015-06-22 21:13:47
每天定时切割 nginx 日志的脚本 1) vi /usr/local/nginx/sbin/cut_nginx_log.sh 点击(此处)折叠或打开 #!/bin/bash # this script run at 00:00 # the nginx logs path logs_path="/usr/local/nginx/logs/" mkdir -p ${logs_path}$(dat.........
发布时间:2015-06-22 20:47:42
内核参数优化 vi /etc/sysctl.confnet.ipv4.tcp_max_syn_backlog = 65536net.core.netdev_max_backlog = 32768net.core.somaxconn = 32768net.core.wmem_default = 8388608net.core.rmem_default = 8388608net.core.rmem_max = 16777216net.core.wmem_max = 16777216net.ipv4.tcp_timestamps = 0net.ipv4.tcp_syn.........