+0°
RegistrationName= wlqcwin
RegistrationCode= 2EAD-35GH-66NN-ZYBA
[ISAPI_Rewrite]
# 3600 = 1 hour
CacheClockRate 3600
RepeatLimit 32
#RewriteCond %{HTTP:Host} ^m.slqzxl.com$
#RewriteRule (.*) http://m.taxzt.com/slqzxl/$1 [NC,R=301]
RewriteCond %{HTTP:Host} ^m.xtsylt.com$
RewriteRule (.*) http://m.taxzt.com/xtsylt/$1 [NC,R=301]
阅读全文
+0°
mysql.@cmd
net stop "mysql"
"C:\AppServer\mysql\bin\mysqld.exe" --remove
"C:\AppServer\mysql\bin\mysqld.exe" --install
net start "mysql"
apache.@cmd
net stop "Apache2.2"
"C:\AppServer\Apache\bin\httpd.exe" -k uninstall
mkdir d:\wwwroot\logs
mkdir d:\wwwroot\tmp
copy C:\AppServer\php\php5ts.dll C:\AppServer\Apache\bin\
"C:\AppServer\Apache\bin\httpd.exe" -k install
net star...
阅读全文
+0°
2012年09月13日
⁄ lnmp
⁄ 共 4933字
0、准备工作
Shell
sudo apt-get update
1
sudo apt-get update
1、安装并开启Nginx
Shell
sudo apt-get intsall nginx
sudo /etc/init.d/nginx start
#此时访问localhost如出现"Welcome to Nginx!"页面则表明安装成功
1
2
3
sudo apt-get intsall nginx
sudo /etc/init.d/nginx start
#此时访问localhost如出现"Welcome to Nginx!"页面则表明安装成功
2、安装m...
阅读全文
+0°
最近随着网站访问量的提高把web服务器移到linux下了,在移服务器的第二天,tomcat频繁的报
java.net.SocketException: Too many open files错误,错误日志达到了100多兆,郁闷了,windows上运行了很长
时间都没出现这个错误,后来才知道linux对进程的打开文件数是有限制的。
用命令ulimit -a查看
[root@test security]# ulimit -a
core file size (blocks, -c) 0
data seg size (kbytes, -d) unlimited
file si...
阅读全文