欢迎光临IT网Linux学习频道

当前位置: > Linux服务器 >
  • [iptables] iptables 怎样才能关闭端口 日期:2016-05-22 15:59:46 点击:83 好评:0

    sudo iptables -L 结果: Chain INPUT (policy ACCEPT) target prot opt source destination REJECT tcp -- anywhere anywhere tcp dpt:5900 reject-with icmp-port-unreachable REJECT tcp -- anywhere anywhere tcp dpt:5900 reject-with icmp-port-unreach...

  • [VPN] Ubuntu14.04下搭建VPN服务 日期:2016-05-22 15:55:40 点击:93 好评:0

    1.第一步需要安装PPTP,以用来提供VPN服务. sudo apt-get install pptpd 2.装好了之后我们需要进行配置一下以让它可以使用. sudo vi /etc/pptpd.conf 取消掉以下 2 行的注释(192.168.0.1改为你的服务器固定IP,234-238根据需要改变区间): localip 192.168....

  • [VPN] CentOS 6.4 配置VPN服务教程 日期:2016-05-22 15:55:00 点击:192 好评:0

    1.#rpm-Uvhhttp://poptop.sourceforge.net/yum/stable/rhel6/pptp-release-current.noarch.rpm 2. yuminstallpptpd 3.配置pptp.首先我们要编辑/etc/pptpd.conf文件: #vim /etc/pptpd.conf 找到locapip和remoteip这两个配置项,将前面的;注释符去掉,更改为你期...

  • [iptables] iptables 开启80端口 日期:2016-05-22 15:38:50 点击:95 好评:0

    经常使用CentOS的朋友,可能会遇到和我一样的问题。开启了防火墙导致80端口无法访问,刚开始学习centos的朋友可以参考下。 经常使用CentOS的朋友,可能会遇到和我一样的问题。最近在Linux CentOS防火墙下安装配置 ORACLE 数据库的时候,总显示因为网络端口而...

  • [nginx] nginx 限速 日期:2016-05-22 13:12:09 点击:109 好评:0

    nginx限制ip并发数,也是说限制同一个ip同时连接服务器的数量 1.添加limit_zone 这个变量只能在http使用 vi /usr/local/nginx/conf/nginx.conf limit_zone one $remote_addr 10m; 2.添加limit_conn 这个变量可以在http, server, location使用 我只限制一个站...

  • [nginx] nginx日志管理与限速 日期:2016-05-22 13:11:01 点击:55 好评:0

    1、日志简介 nginx日志主要有两种:访问日志和错误日志。访问日志主要记录客户端访问nginx的每一个请求,格式可以自定义;错误日志主要记录客户端访问nginx出错时的日志,格式不支持自定义。两种日志都可以选择性关闭。 通过访问日志,你可以得到用户地域来...

  • [nginx] nginx的限速相关(nginx limit download rate) 日期:2016-05-22 13:09:33 点击:140 好评:0

    CoreModule 限速 指令名称: limit_rate、limit_rate_after \\limit_rate_after用于设置http请求传输多少字节后开始限速 使用环境: http, server, location, if in location 示例: location /download { limit_rate_after 4m; limit_rate 512k; } 限制单个I...

  • [nginx] nginx针对爬虫进行限速配置 日期:2016-05-22 13:08:24 点击:178 好评:0

    网络爬虫一方面可以给网站带来一定的流量,便于搜索引擎收录,利于用户搜素,同时也会给服务器带来一定的压力,在网络爬虫对网站内容进行收录时,会引起服务器负载高涨。有没有什么方法既不阻止网络爬虫对网站内容进行收录,同时对其连接数和请求数进行一定...

  • [nginx] nginx下载限速-lnmp带宽优化 日期:2016-05-22 13:04:49 点击:111 好评:0

    Nginx的高并发有目共睹,不过这种环境下也有性能瓶颈:网络带宽。改善这一瓶颈需要对连接进行限速。 今天整理了Nginx的网络限速记录下来: 示例: limit_zone one $binary_remote_addr 32k; server { listen 80; server_name 192.168.1.222; location / { roo...

  • [nginx] nginx安装SSL证书 日期:2016-05-22 13:04:22 点击:125 好评:0

    生成CRS和密钥 方便一点的做法是使用在线的生成器,或者通过openSSL生成: openssl req -nodes -newkey rsa:2048 -nodes -keyout your_key_name.key -out your_csr_name.csr -subj /C=GB/ST=London/L=London/O=your_server/OU=IT/CN=your_server 将CRS提交给...

  • 首页
  • 上一页
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 下一页
  • 末页
  • 5405398
栏目列表
推荐内容