转载自网络
运维中关键技术点解剖:1 大量高并发网站的设计方案 ;2 高可靠、高可伸缩性网络架构设计;3 网站安全问题,如何避免被黑?4 南北互联问题,动态CDN解决方案;5 海量数据存储架构
一、什么是大型网站..
没有多大技术含量,就是将之前的这篇文章http://shanker.blog.51cto.com/1189689/815403写成shell了。
#!/bin/bash #CentOS6.2+PXE+Apache+DHCP+tftp+kickstart #Author:shanker #Date:201..
转载老师的文章:http://blog.chinaunix.net/uid-1749708-id-3189315.html
在RHEL6下的Yum软件仓库,可以有效的解决安装RPM分发的软件包在安装时候的依赖问题。下面是Yum数据仓库的配置方法:
1、拷贝..
转自:http://www.tsnc.edu.cn/tsnc_wgrj/doc/sed.htm
1. Sed简介
sed是一种在线编辑器,它一次处理一行内容。处理时,把当前处理的行存储在临时缓冲区中,称为“模式空间”(pattern space)..
转自南非蚂蚁老师的文章, http://www.itlearner.com/article/4553
一、影响Linux服务器性能的因素
1. 操作系统级
CPU
内存
磁盘I/O带宽
网络I/O带宽
&nb..
翻译自: https://www.shell-tips.com/2007/04/15/bash-help-sheet/
Forgot a command or a shortcut in your favorite shell ? Here is a small help sheet with most used commands !
I read i..
#!/bin/bash #intruder_detect #author:shanker #date:2012/4/23 #detect the invlaid users AUTHLOG=/var/log/secure if [ -n "$1&q..
grep 'root' /etc/passwd >/dev/null 2>&1 if [ $? -eq 0 ] then .....
你还在用这样的判断方式吗?..