学以致用

focus on Python , C++, and some interest in Go and R

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

2011年11月24日

摘要: 在使用CentOS做server的时候有时会碰到server拒绝client连接的情况,client会受到connection reset by peer等错误,究其原因应该是server默认的file descriptor为1024,此时已经超过了1024,为安全起见server拒绝服务所导致的。增加file descriptor的操作如下:一、临时增加file descriptor ulimit -n 4096二、永久增加file descriptor 2.1 # vi /etc/sysctl.conf 2.2 增加 fs.file-max = 100000 2.3 重启或者执行 ... 阅读全文
posted @ 2011-11-24 16:34 Jerry.Kwan 阅读(906) 评论(0) 推荐(0) 编辑

摘要: 以下是在CentOS5.5上安装postgresql9.1的相关记录(1) 从http://yum.pgrpms.org/repopackages.php 下载postgresql9.1 rpm安装包 [root@server1~]#wget http://yum.pgrpms.org/9.1/redhat/rhel-5-i386/pgdg-centos91-9.1-4.noarch.rpm(2)安装pgdg-centos91-9.1-4.noarch.rpm [root@server1~]#rpm-ipgdg-centos91-9.1-4.noarch.rpm (3)更改CentOS-B.. 阅读全文
posted @ 2011-11-24 13:42 Jerry.Kwan 阅读(7393) 评论(0) 推荐(0) 编辑