日历存档: 2012 年 2 月 25 日

Mysql清理日志文件

分类:运维技术日期:2012-02-25 - 23:12:45评论:16条作者:老谢

Mysql运行中,默认会生成日志,这是众所周知的,而且网上很多网友反映硬盘空间不足了,最后检查都是被mysql的日志占掉了大量的空间,对于这些日志文件,我们应该如何清理呢?

Putty
[root@xj123 data]# ls
micro mysql-bin.000002 mysql-bin.000005 wp
mysql mysql-bin.000003 mysql-bin.index xj123.info.err
mysql-bin.000001 mysql-bin.000004 mysql-bin.000005 xj123.info.pi

[root@xj123 data]# du ./ -h
18M ./wp
168K ./micro
988K ./mysql
120M ./

继续阅读…

Nginx打开目录浏览功能

分类:运维技术日期:2012-02-25 - 11:07:36评论:2条作者:老谢

Apache的目录浏览默认是打开的,而Nginx的目录浏览默认是关闭的,演示传送门 ==> VPS软件下载

要打开该功能,非常简单,只需要添加autoindex on;参数即可,下面是vps.xj123.info的例子:

nginx.conf
server {
listen 80;
server_name vps.xj123.info;
autoindex on;
autoindex_exact_size off;
autoindex_localtime on;

location / {
root html/vps;
index index.html index.htm;
}
}

autoindex_exact_size off;
默认为on,显示出文件的确切大小,单位是bytes。
改为off后,显示出文件的大概大小,单位是kB或者MB或者GB

autoindex_localtime on;
默认为off,显示的文件时间为GMT时间。
改为on后,显示的文件时间为文件的服务器时间