欢迎光临IT网Linux学习频道

当前位置: > Linux服务器 >
  • [nginx] Nginx 负载均衡 Nginx Load Balancing 日期:2014-12-01 02:02:45 点击:185 好评:0

    原文地址: http://nginx.com/resources/admin-guide/load-balancer/ Nginx Load Balancing nginx 负载均衡 This section describes how to use NGINX and NGINX Plus as aload balancer. 本章将讨论如何使用Nginx和Nginx加做负载均衡 器 。 In This Section...

  • [nginx] nginx 提供静态内容 日期:2014-12-01 02:02:03 点击:182 好评:0

    Serving Static Content 提供静态内容 原文地址: http://nginx.com/resources/admin-guide/serving-static-content/ This section describes how to serve static content, how to use different ways of setting up the paths to look for files, and how...

  • [nginx] nginx进程和实时控制 日期:2014-12-01 02:01:36 点击:161 好评:0

    原文地址: http://nginx.com/resources/admin-guide/processes-and-runtime-control/ Processes and Runtime Control 进程和实时控制 This section describes the processes NGINX starts at run time and how to control them. 本文讨论Nginx开始运行时的...

  • [nginx] nginx 日志和监控 日期:2014-12-01 02:01:08 点击:125 好评:0

    原文地址: http://nginx.com/resources/admin-guide/logging-and-monitoring/ Logging and Monitoring 日志和监控 This section describes how to configure logging of errors and processed requests, as well as how to use the runtime monitoring serv...

  • [nginx] Nginx vs Apache 日期:2014-12-01 02:00:26 点击:164 好评:0

    原文地址:https://anturis.com/blog/nginx-vs-apache/ Nginx vs Apache What is the Nginx web and proxy server and how does it compare to Apache? Should you use one of these servers or both? Here we explore some answers to these questions. Ngi...

  • [nginx] Nginx 性能调优 Tuning NGINX for Performance 日期:2014-12-01 01:59:38 点击:150 好评:0

    原文地址: http://nginx.com/blog/tuning-nginx/ Tuning NGINX for Performance Nginx 性能调优 NGINX is well known as a high performanceload balancer,cacheandweb server, powering over 40% of the busiest websites in the world. Most of the defau...

  • [nginx] Nginx内容缓存 Nginx content cache 日期:2014-12-01 01:58:29 点击:53 好评:0

    原文地址: http://nginx.com/resources/admin-guide/caching/ Nginx content cache Nginx内容缓存 This chapter describes how to enable and configure caching responses received from proxied servers. When caching is enabled NGINX saves responses...

  • [nginx] Nginx web 服务器 NGINX Web Server 日期:2014-12-01 01:57:18 点击:85 好评:0

    原文地址: http://nginx.com/resources/admin-guide/web-server/ NGINX Web Server Nginx web 服务器 This section describes: the most common configuration of a web server how to set up virtual servers and define locations for request processing...

  • [nginx] Nginx 反向代理 NGINX Reverse Proxy 日期:2014-12-01 01:56:17 点击:120 好评:0

    原文地址: http://nginx.com/resources/admin-guide/reverse-proxy/ NGINX Reverse Proxy Nginx 反向代理 This section describes the basic configuration of a proxy server. You will learn how to: pass a request from NGINX to proxied servers over...

  • [nginx] NGINX 反向代理 日期:2014-12-01 01:45:13 点击:188 好评:0

    前言: 我想通过上一章如何测试Nginx的高性能,想必大家对于NGINX作为一个高性能的web服务器毫无异议;但是NGINX的功能绝不局限于简单的web服务器,NGINX在互联网扮演的角色也并非只是作为web服务器,其实在实际的应用场景下,NGINX更多是用来做web的反向代...

  • [环境配置] 搭建基于Linux6.3+Nginx1.2+PHP5+MySQL5.5的Web服务器全过程 日期:2014-12-01 01:43:39 点击:84 好评:0

    之前的Web服务器都是通过yum搭建的,想要添加新模块或者更新某些软件都很不方便(牵一发而动全身啊!)。所以,现在准备将环境改为源码编译安装,这样便于调整,性能上也会比yum方式好很多。以下是我的安装步骤,我的系统是CentOS6.3 64位。 注意:本文所以...

  • [nginx] CentOS 6.3下Nginx性能调优 日期:2014-12-01 01:41:55 点击:81 好评:0

    一.Nginx优化配置 1.主配置文件优化: # vi /usr/local/nginx/conf/nginx.conf ----------------------------------------- user nginx nginx; worker_processes 8; worker_cpu_affinity 00000001 00000010 00000100 00001000 00010000 00100000 01000000; er...

  • [nginx] CentOS 6.3下配置Nginx加载ngx_pagespeed模块 日期:2014-12-01 01:40:45 点击:168 好评:0

    ngx_pagespeed 是一个 Nginx 的扩展模块,可以加速你的网站,减少页面加载时间,它会自动将一些提升web性能的实践应用到网页和相关的资源(CSS、JS和图片)上,无需你修改内容和流程。 功能包括: 图片优化: stripping meta-data, dynamic resizing, recompr...

  • [nginx] Nginx 反向代理脚本 日期:2014-12-01 01:35:59 点击:103 好评:0

    一 概述 反向代理 (Reverse Proxy)方式是指以代理服务器来接受Internet上的连接请求,然后将请求转发给内部网络上的服务器;并将从服务器上得到的结果返回给Internet上请求连接的客户端,此时代理服务器对外就表现为一个服务器。 通常的代理服务器,只用于...

  • [监控工具] 系统之锹sysdig:Linux服务器监控和排障利器 日期:2014-12-01 00:13:33 点击:161 好评:0

    当你需要追踪某个进程产生和接收的系统调用时,首先浮现在你脑海中的是什么?你可能会想到strace,那么你是对的。你会使用什么样的命令行工具来监控原始网络通信呢?如果你想到了tcpdump,你又作出了一个极佳的选择。而如果你碰到必须追踪打开的文件(在Unix...

  • [Git] 在Github和Git上fork之简单指南 日期:2014-11-30 23:57:57 点击:57 好评:0

    以我的经验来看,刚接触Git和GitHub时,最困扰的一件事情就是尝试解决下面的问题:在Git和GitHub上,我能做什么? Git教程往往不会解决这个问题,因为它集中篇幅来教你Git命令和概念,并且不认为你会使用GitHub。GitHub帮助教程一定程度上弥补了这一缺陷,但...

  • [apache] linux下apache启动停止与重启命令 日期:2014-11-30 19:30:04 点击:186 好评:0

    操作方法: 假定apahce安装目录为/usr/local/apache2 apahce启动命令: 推荐/usr/local/apache2/bin/apachectl start apache启动 apache停止命令 /usr/local/apache2/bin/apachectl stop 停止 apache重新启动命令: /usr/local/apache2/bin/apachectl restar...

  • [环境配置] LNMP升级及Nginx、MySQL/MariaDB、PHP升级说明 日期:2014-11-30 16:08:42 点击:119 好评:0

    如果目前运行环境没什么问题,不建议直接运行新版进行覆盖,覆盖升级可能会存在问题,也可能会导致数据丢失。如想用新版可以备份数据后./uninstall.sh 后重新下载新版安装,或直接rebuild重装系统后安装新版,前提都是备份数据!! 在LNMP目前LNMP v1.1中已经...

  • [nginx] LNMP下Nginx如何设置域名301重定向 日期:2014-11-30 16:07:57 点击:171 好评:0

    LNMP下的Nginx如果想将域名lnmp.org 301重定向到www.lnmp.org,同时www.lnmp.org已经通过/root/vhost.sh添加上,可以按如下步骤修改 使用命令编辑器vi、nano或winscp图形管理软件编辑对应的虚拟主机,一般虚拟主机配置文件位于:/usr/local/nginx/conf/vhost...

  • [SSH] linux ssh公钥验证登陆 日期:2014-11-30 16:07:22 点击:102 好评:0

    SecureCRT key登录linux ssh设置 一、首先用secureCrt创建密钥 1.使用SecureCRT创建私钥和公钥. SecureCRT quick Connect- Authentiation - Public Key - Properties -Create Identity File - DSA/RSA - Set Passphrase - Done 这个时候在指定目录会生成两个...

  • [服务器设置] LAMP编译安装 日期:2014-11-30 16:06:28 点击:185 好评:0

    Lamp(linux+apache+mysql+php)源码包最新版编译安装步骤 本次基于CentOS Minimal系统搭建 #!/bin/sh ##########################WrittenByQitan#################################### ##################BLOG:http://blog.catjia.com#####################...

  • [nginx] lnmp Nginx 301 重定向 换域名重定向 日期:2014-11-30 16:04:24 点击:105 好评:0

    更换了域名应该将旧域名 301 重定向到新域名,那么 Nginx 中该如何做呢? 网上找了大把的资料都是把 同一个域名www转发到不带www的。 查看了nginx的官方文档后,修改成功。修改记录如下。 PS:本站采用的lnmp。 比如本站的旧域名是itnetcn.com,新域名是 it.net.c...

  • [SSH] linux下的ssh配置 日期:2014-11-30 16:03:45 点击:171 好评:0

    配置/etc/ssh/ssh_config文件 /etc/ssh/ssh_config 文件是OpenSSH系统范围的配置文件,允许你通过设置不同的选项来改变客户端程序的运行方式。这个文件的每一行 包含关键词-值的匹配,其中关键词是忽略大小写的。下面列出来的是最重要的关键词,用man命令查...

  • [SSH] linux下ssh服务配置 日期:2014-11-30 16:03:00 点击:119 好评:0

    linux 下ssh 服务配置 SSH 服务器: 既然 telnet 不是很安全,那么我又需要以远程联机服务来操控我的 Linux 主机,那么应该怎么办呀!?最好的方法当然就是以较为安全的联机机制的方案来解决联机的问题啰!那么该如何解决这样的问题呢?这也不难啦,使用 SSH...

  • [监控工具] Cacti网络性能与系统监测 日期:2014-11-30 15:53:35 点击:184 好评:0

    目录: 一Cacti介绍 二Cacti架构 三Cacti工作流程 四Cacti的安装 五Cacti基本设置 六Cacti的使用 七Cacti插件和模板的使用 八问题解决 一、Cacti介绍 无论是稍有规模的 IT 公司还是大型的 ICP 、 ISP ,都需要面对一个问题,就是如何实现对网络和服务器的性...

  • [监控工具] 搭建ICINGA监控 日期:2014-11-30 15:51:29 点击:124 好评:0

    一、环境: OS: CentOS 6.2 Minimal IP: 172.16.51.9 HOSTNAME: icinga.hqew.com 二、搭建 源码包存放位置:/usr/local/src 1、安装基本软件包 # yum install -y make automake gcc-c++ httpd gcc glibc glibc-common gd gd-devel libjpeg libjpeg-devel lib...

  • [VPN] Linux VPN(PPTPD)+Windows AD统一认证 日期:2014-11-30 15:44:36 点击:87 好评:0

    拓扑图: 说明:首先公司内网环境需要有域的支持; 前端两台VPN服务器为Linux操作系统; 绿色线条表示网络环境的物理链路; 红色则表示认证的方式; ##当用户请求链接VPN时,使用域账号进行登录,由DNSPOD判断为电信还是联通(网通)资源,然后交给相应的vpn...

  • [环境配置] Linux下Nginx+Tomcat整合的安装与配置 日期:2014-11-30 15:42:28 点击:163 好评:0

    一、安装Tomcat和JDK 1、上传apache-tomcat-6.0.18.tar.gz和jdk-6u12-linux-i586.bin至/usr/local 2、执行如下命令安装tomcat: #cd/usr/local #tarzxvfapache-tomcat-6.0.18.tar.gz 解压完成后将apache-tomcat-6.0.18重命名为tomcat 3、执行如下命令安装JDK...

  • 首页
  • 上一页
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 下一页
  • 末页
  • 1935400
栏目列表
推荐内容