0℃
2014年12月16日
⁄ LAMP
⁄ 被围观 19,705次+
准备篇:
CentOS 5.x系统安装配置图解教程
http://www.osyunwei.com/archives/7002.html
1、配置防火墙,开启80端口、3306端口
vi /etc/sysconfig/iptables
-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT
-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT
:wq! #保存退出
添加好规则后的防火墙配置文件如下图所示:
/etc/init.d/iptables restart #重启防火墙使配置生效
2、关闭SELINUX
vi /etc/selinux/config
#SELINUX=enforcing #注释...
Apache, CentOS, LAMP, mysql, php阅读全文
3℃
2014年12月15日
⁄ LNMP
⁄ 被围观 49,449次+
准备篇:
CentOS 6.6系统安装配置图解教程
http://www.osyunwei.com/archives/8398.html
一、配置防火墙,开启80端口、3306端口
vi /etc/sysconfig/iptables #编辑防火墙配置文件
# Firewall configuration written by system-config-firewall
# Manual customization of this file is not recommended.
*filter
:INPUT ACCEPT [0:0]
:FORWARD ACCEPT [0:0]
:OUTPUT ACCEPT [0:0]
-A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
-A INPUT -p icmp -j ACCEPT
-A INPUT -i lo -j ACCEPT
-A INPUT -m sta...
CentOS, lnmp, mysql, nginx, php阅读全文
0℃
2014年11月01日
⁄ LAMP
⁄ 被围观 52,749次+
准备篇:
CentOS 6.6系统安装配置图解教程
http://www.osyunwei.com/archives/8398.html
1、配置防火墙,开启80端口、3306端口
vi /etc/sysconfig/iptables
-A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT
-A INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT
:wq! #保存退出
添加好规则后的防火墙配置文件如下图所示:
/etc/init.d/iptables restart #重启防火墙使配置生效
2、关闭SELINUX
vi /etc/selinux/config
#SELINUX=enforcing #注释掉
#SELINUXTYPE=targeted #注...
CentOS, LAMP阅读全文
0℃
2014年09月19日
⁄ Nginx
⁄ 被围观 35,663次+
说明:
操作系统:CentOS 6.x
web环境:php+nginx+mysql
nginx安装目录:/usr/local/nginx
nginx配置文件:/usr/local/nginx/conf/nginx.conf
nginx默认站点目录:/usr/local/nginx/html/
需求:让nginx能够解析.cgi后缀的文件
具体操作:
一、安装perl-fcgi依赖包,通过安装perl-fcgi来支持nginx运行.cgi
yum install perl-CPAN perl-ExtUtils-CBuilder perl-ExtUtils-MakeMaker
二、安装perl
cd /usr/local/src
wget http://www.cpan.org/src/5.0/perl-5.20.0.tar.gz #下载安装包,需要提前安装wget工具
tar -x...
cig, linux, nginx支持.cig阅读全文
2℃
2014年07月08日
⁄ LNMP
⁄ 被围观 117,902次+
准备篇:
CentOS 7.0系统安装配置图解教程
http://www.osyunwei.com/archives/7829.html
一、配置防火墙,开启80端口、3306端口
CentOS 7.0默认使用的是firewall作为防火墙,这里改为iptables防火墙。
1、关闭firewall:
systemctl stop firewalld.service #停止firewall
systemctl disable firewalld.service #禁止firewall开机启动
2、安装iptables防火墙
yum install iptables-services #安装
vi /etc/sysconfig/iptables #编辑防火墙配置文件
# Firewall configuration written by system-config-firewall
# ...
CentOS, CentOS 7.0, lnmp阅读全文
0℃
2014年07月08日
⁄ LAMP
⁄ 被围观 137,660次+
准备篇:
CentOS 7.0系统安装配置图解教程
http://www.osyunwei.com/archives/7829.html
一、配置防火墙,开启80端口、3306端口
CentOS 7.0默认使用的是firewall作为防火墙,这里改为iptables防火墙。
1、关闭firewall:
systemctl stop firewalld.service #停止firewall
systemctl disable firewalld.service #禁止firewall开机启动
2、安装iptables防火墙
yum install iptables-services #安装
vi /etc/sysconfig/iptables #编辑防火墙配置文件
# Firewall configuration written by system-config-firewall
# ...
CentOS, CentOS 7, LAMP阅读全文
0℃
2014年02月26日
⁄ PHP
⁄ 被围观 45,766次+
说明:
操作系统:CentOS 5.x 64位
已安装php版本:php-5.4.4
已安装php路径:/usr/local/php
实现目的:
在不影响网站访问的情况下,重新编译php,增加对mcrypt扩展的支持
具体操作:
一、下载软件包
1、下载php(版本要与系统安装的一致)
http://museum.php.net/php5/php-5.4.4.tar.gz
2、下载libmcrypt(安装mcrypt需要此软件包)
http://nchc.dl.sourceforge.net/project/mcrypt/Libmcrypt/2.5.8/libmcrypt-2.5.8.tar.gz
3、下载mhash(安装mcrypt需要此软件包)
https://acelnmp.googlecode.com/files/mhas...
linux, mcrypt阅读全文
0℃
2014年01月29日
⁄ IIS
⁄ 被围观 128,504次+
准备篇
一、环境说明:
操作系统:Windows Server 2012 R2
PHP版本:php 5.5.8
MySQL版本:MySQL5.6.15
二、相关软件下载:
1、PHP下载地址:
http://windows.php.net/downloads/releases/php-5.5.8-nts-Win32-VC11-x86.zip
2、MySQL下载地址:
http://cdn.mysql.com/Downloads/MySQLInstaller/mysql-installer-community-5.6.15.0.msi
3、Visual C++ Redistributable for Visual Studio 2012 Update 4(x64)下载地址(安装PHP需要此插件):
http://download.microsoft.com/download/9/C/D/9CD480DC-0301-41B0-AA...
FastCGI, mysql, Windows Server 2012 R2阅读全文
0℃
2014年01月29日
⁄ IIS
⁄ 被围观 28,717次+
说明:
操作系统:Windows Server 2012 R2
Web服务器:IIS 8.5
网站程序:WordPress
网站根目录:C:\inetpub\wwwroot
网站域名:www.osyunwei.com
实现目的:
配置WordPress伪静态
具体操作:
一、确认IIS 8.5是否安装IIS URL Rewrite
打开:控制面板\系统和安全\管理工具\Internet Information Services (IIS)管理器
看到URL重写,说明已经安装了IS URL Rewrite,否则要先安装此插件。
IIS URL Rewrite下载:http://download.microsoft.com/download/4/E/7/4E7ECE9A-DF55-4F90-A354-B497072BDE0A/rewrite_x64_z...
IIS8.5, Windows Server 2012 R2, WordPress, 伪静态阅读全文
0℃
2014年01月27日
⁄ Nginx
⁄ 被围观 23,132次+
说明:
操作系统:CentOS
站点1:bbs.osyunwei.com
站点2:sns.osyunwei.com
Nginx安装路径:/usr/local/nginx
Nginx配置文件路径:/usr/local/nginx/conf/nginx.conf
站点1配置文件路径:/usr/local/nginx/conf/vhost/bbs.osyunwei.com.conf
站点2配置文件路径:/usr/local/nginx/conf/vhost/sns.osyunwei.com.conf
目的:
1、对站点1和站点2的nginx访问日志按天保存,日志路径为:
站点1:/usr/local/nginx/logs/nginx_logs/bbs_logs
站点2:/usr/local/nginx/logs/nginx_logs/sns_logs
2、只保留30天以内的日志...
Nginx日志阅读全文
4℃
2014年01月10日
⁄ LNMP
⁄ 被围观 25,036次+
说明:
操作系统:CentOS 5.10 64位
准备篇:
一、配置好IP、DNS 、网关,确保使用远程连接工具能够连接服务器,服务器时间设置正确
CentOS 5.10系统安装配置图解教程:http://www.osyunwei.com/archives/7002.html
二、配置防火墙,开启80端口、3306端口
vi /etc/sysconfig/iptables #编辑
-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT #允许80端口通过防火墙
-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT #允许3306端口通过防火...
CentOS 5.10, lnmp阅读全文
2℃
2013年09月20日
⁄ Webbench
⁄ 被围观 22,659次+
一、安装编译工具
yum install ctags wget make apr* autoconf automake gcc gcc-c++
二、下载webbench
wget http://home.tiscali.cz/cz210552/distfiles/webbench-1.5.tar.gz #下载
三、安装webbench
tar zxvf webbench-1.5.tar.gz #解压
cd webbench-1.5 #进入解压目录
make #编译
mkdir /usr/local/man #创建目录,否则安装失败
make install #安装
四、压力测试
webbench -c 500 -t 30 http://127.0.0.1/
参数说明:
-c 500:表示同时产生500个并发连接
-t 30:表示持续30秒
备注:webbench最大可以模...
阅读全文
0℃
2013年08月17日
⁄ LNMP
⁄ 被围观 19,412次+
遇到问题:
VPS小内存LNMP服务器,网站访问量偶尔突然增加,会导致php进程卡死,出现Nginx 502 Bad Gateway故障,
这个时候只要重启php进程,网站马上恢复正常。
解决办法:
在不增加硬件投入的情况下,当网站出现Nginx 502 Bad Gateway故障时,在1分钟内让php进程自动重启,
从而解决问题。
具体步骤:
说明:
php进程启动命令:service php-fpm start
php进程服务名:php-cgi #php 5.3以上版本中进程服务名为:php-fpm
/home/wwwlogs/502 #判断php进程是否卡死中间过程文件
/home/wwwlogs/502_error.log #...
lnmp阅读全文
28℃
2013年03月20日
⁄ LNMP
⁄ 被围观 48,567次+
准备篇
1、配置防火墙,开启80端口、3306端口
vi /etc/sysconfig/iptables
-A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT #允许80端口通过防火墙
-A INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT #允许3306端口通过防火墙
备注:很多网友把这两条规则添加到防火墙配置的最后一行,导致防火墙启动失败,
正确的应该是添加到默认的22端口这条规则的下面
如下所示:
################################ 添加好之后防火墙规则如下所示################################
# F...
CentOS, lnmp阅读全文
10℃
2013年03月12日
⁄ LAMP
⁄ 被围观 44,134次+
准备篇:
1、配置防火墙,开启80端口、3306端口
vi /etc/sysconfig/iptables
-A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT #允许80端口通过防火墙
-A INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT #允许3306端口通过防火墙
备注:很多网友把这两条规则添加到防火墙配置的最后一行,导致防火墙启动失败,
正确的应该是添加到默认的22端口这条规则的下面
如下所示:
############################## 添加好之后防火墙规则如下所示 ##############################
...
CentOS, LAMP阅读全文
6℃
2012年11月08日
⁄ LNMP
⁄ 被围观 28,680次+
说明:
操作系统:CentOS Nginx安装路径:/usr/local/nginx Nginx配置文件路径:/usr/local/nginx/conf/nginx.conf nginx安装包目录:/usr/local/src/nginx-1.2.4 Nginx 软件版本:nginx-1.2.4
一、下载软件包
http://mirror.yongbok.net/nongnu/libunwind/libunwind-1.1.tar.gz #下载libunwind
https://gperftools.googlecode.com/files/gperftools-2.0.tar.gz #下载gperftools
上传软件包到服务器的/usr/local/src目录下面
二、安装gperftools
1、安装libunwind(安装gperftools前需要先安装libunwind...
CentOS, gperftools, 优化nginx阅读全文
1℃
2012年10月19日
⁄ LNMP
⁄ 被围观 17,086次+
说明:
站点1:bbs.osyunwei.com
站点2:sns.osyunwei.com
站点1的nginx配置文件路径:/usr/local/nginx/conf/vhost/bbs.osyunwei.com.conf
站点1下面的图片路径:http://bbs.osyunwei.com/osyunwei.jpg
系统运维 www.osyunwei.com 温馨提醒:qihang01原创内容©版权所有,转载请注明出处及原文链接
站点2下面的网页文件路径:http://sns.osyunwei.com/nginx.html
nginx.html文件代码
<title>nginx图片防盗链</title>
</head>
<body>
<img src="http://bbs.osyunwei.com/osyunwei.jpg...
防盗链阅读全文