关于CentOS5 VPS中的yum源的配置
蓝鹰 | CentOS | 2014-09-25
CentOS中的yum能很方便的更新安装软件包,它能够自动解决rpm包之间的依赖关系,就像Debian中的apt-get一样。 使用yum必须要配置yum源地址,在国内的网络情况下,配置一个速度快的yum源还真不容易。不像Debian的apt源,国内有很多。本文介绍一些我们配置yum源的经验。
不使用国内的yum源
以前也以为国内的yum源速度快,但不知实际情况却恰恰相反。国内的... [阅读全文]
有关nginx日志分析的一点记录
蓝鹰 | CentOS | 2014-09-25
由于网站需要进行防止内容抓取,就要对各大引擎的user-agent进行判断,自己搜索了一下
各大搜索引擎的User-agent
google (Googlebot)
baidu (Baiduspider)
soso (Sosospider)
sogou (Sogou web spider)
yahoo (Yahoo! Slurp China)
bing (bingbot)
nginx日志格式:
默认格式:
log_format combined '$remote_addr - $remote_user [$time_loc... [阅读全文]
squid中的X-Cache和X-Cache-Lookup的意义
蓝鹰 | CentOS | 2014-09-25
在做的CDN的机器的http头中,我们常常见到X-Cache和X-Cache-Lookup的二个参数,那这二个参数分别是什么意思,有什么分别啦.
HTTP/1.0 200 OK
Expires: Mon, 23 Jun 2008 09:16:40 GMT
Cache-Control: max-age=60
Content-Type: text/html
Accept-Ranges: bytes
ETag: “985899363”
Last-Modified: Mon, 23 Jun 2008 08:17:40 GMT
Content-Len... [阅读全文]
centos setup 卻出現 setup: command not found
蓝鹰 | CentOS | 2014-09-23
在RHEL/CentOS中,可以很方便使用setup配置工具配置网络、防火墙、服务等很多关键配置项,使用非常方便,然而采用最小化安装后,默认并没有安装该工具,运行该命令提示如下:
[root@localhost ~]# setup
-bash: setup: command not found
此时需要我们手动安装了,具体如下:
#安装setup主工具
[root@localhost ~]# yum install setuptool
#安装setup中... [阅读全文]
centOS 开机自启动配置方法
蓝鹰 | CentOS | 2014-09-23
centOS 配置开机自启动两种方式:
1.vi /etc/rc.d/rc.local
在此文件中加入启动的脚本
2.chkconfig 增加自己的脚本
–add
–list
–del
步骤:
1.自己定义脚本格式如下:
必须添加的
#!/bin/sh
#chkconfig: 2345 80 80
#description: auto start web server
第一句:必须的
声明sh
第二句:必须的
2345 表示linux 有 0-6种状态 在2345下... [阅读全文]
LINUX找出两个文件内容的相同与不同
蓝鹰 | CentOS | 2014-09-23
comm命令
在我们的开发和运营中,特别是对业务进行监控的时候,我们常常需要写一些监控shell脚本,而这些脚本需要求两个文件的共同的记录列表或者只出现在第一个文件但不出现在第二个文件的记录列表的场景,此时,comm命令则是您解决此类问题的利器和助手。
功能说明:比较两个已排过序的文件。(使用sort排序)
comm [-123][–help][–versi... [阅读全文]
Linux Shell检测文件是否修改
蓝鹰 | CentOS | 2014-07-23
#!/bin/bash
funmd5_1() {
find /root/passwd -type f | xargs md5sum > /tmp/funmd5_1.log
}
funmd5_2() {
find /root/passwd -type f | xargs md5sum > /tmp/funmd5_2.log
}
if [ ! -f /tmp/funmd5_1.log ];then
funmd5_1
fi
funmd5_2
diff /tmp/funmd5_1.log /tmp/funmd5_2.log > /tmp/diff.log
Status=$?
if [ $Status = 0 ];then
exit
el... [阅读全文]
修复/lib/ld-linux.so.2: bad ELF interpreter: No such file or directory问题
蓝鹰 | CentOS | 2014-07-20
1、在64系统里执行32位程序如果出现/lib/ld-linux.so.2:
bad ELF interpreter: No such file or directory,安装下glic即可
yum install glibc.i686
2、error while loading shared libraries: libz.so.1:
cannot open shared object file: No such file or directory
yum install zlib.i686
[阅读全文]
CentOS Linux中zip压缩和unzip解压缩命令详解
蓝鹰 | CentOS | 2014-07-09
实例演示:
以下命令均在/home目录下操作
cd /home #进入/home目录
1、把/home目录下面的mydata目录压缩为mydata.zip
zip -r mydata.zip mydata #压缩mydata目录
2、把/home目录下面的mydata.zip解压到mydatabak目录里面
unzip mydata.zip -d mydatabak
3、把/home目录下面的abc文件夹和123.txt压缩成为abc123.zip
zip -r abc123.zip abc 123.txt
4、... [阅读全文]
htaccess 文件用法集锦
蓝鹰 | CentOS | 2014-06-12
使用Linux服务器的童鞋建站过程中经常会接触到htaccess,其实它除了常用的伪静态,301转发以外,还有很多强大的功能哦。
1.时区设置
有些时候,当你在PHP里使用date或mktime函数时,由于时区的不同,它会显示出一些很奇怪的信息。下面是解决这个问题的方法之一。就是设置你的服务器的时区。你可以在这里找到所有支持的时区的清单。
SetEnv TZ Australia... [阅读全文]