摘要:
在使用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 重启或者执行 ... 阅读全文
摘要:
以下是在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.. 阅读全文