当前位置首页 > Nginx知识

centos,nginx安装备忘

阅读次数:211 次  来源:admin  发布时间:

# ssh 登录慢解决

vim /etc/ssh/sshd_config

UseDNS no

# add limit

vi /etc/security/limits.conf

* soft nproc 102400

* hard nproc 102400

* soft nofile 102400

* hard nofile 102400

# add sysctl.conf

vi /etc/sysctl.conf

#numbers of timewait,180000 default

et.ipv4.tcp_max_tw_buckets = 6000

#quick recycle

et.ipv4.tcp_tw_recycle = 1

#socket reuse

et.ipv4.tcp_tw_reuse = 1

#use the cookies while syn cookies overflow

et.ipv4.tcp_syncookies = 1

et.ipv4.tcp_fin_timeout = 30

et.ipv4.tcp_keepalive_time = 1200

et.ipv4.ip_local_port_range = 1024 65000

"readme.txt" 39L, 1400C

# add limit

vi /etc/security/limits.conf

* soft nproc 102400

* hard nproc 102400

* soft nofile 102400

* hard nofile 102400

# add sysctl.conf

vi /etc/sysctl.conf

#numbers of timewait,180000 default

et.ipv4.tcp_max_tw_buckets = 6000

#quick recycle

et.ipv4.tcp_tw_recycle = 1

#socket reuse

et.ipv4.tcp_tw_reuse = 1

#use the cookies while syn cookies overflow

et.ipv4.tcp_syncookies = 1

et.ipv4.tcp_fin_timeout = 30

et.ipv4.tcp_keepalive_time = 1200

et.ipv4.ip_local_port_range = 1024 65000

et.ipv4.tcp_max_syn_backlog = 8192

ysctl -

#install nginx

#yum install gcc gcc-c++

#yum install gd-devel

#to GeoIP dir

#configure,make & make install

#echo '/usr/local/lib' > /etc/ld.so.conf.d/geoip.conf

#ldconfig

#to nginx dir

# patch -p1 < /usr/download/nginx/add_module/nginx_tcp_proxy_module-0.4.5/tcp.patch

# ./configure --with-openssl=/usr/local/lib/openssl-1.0.1g/ --with-pcre=/usr/local/lib/pcre-8.35/ --with-zlib=/usr/local/lib/zlib-1.2.8/ --with-http_image_filter_module --with-http_ssl_module --with-http_gzip_static_module --with-http_realip_module --with-http_geoip_module --with-http_flv_module --with-http_addition_module --add-module=../add_module/ngx_cache_purge-2.1/ --add-module=../add_module/headers-more-nginx-module-0.25/ --add-module=../add_module/nginx_concat_module/ --add-module=../add_module/nginx_tcp_proxy_module-0.4.5/

上一篇:IIS7/IIS7.5中目录执行权限的设置方法
下一篇:linux下报错bash:service:commandnotfound