网页出现nginx error怎么办?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了网页出现nginx error怎么办?相关的知识,希望对你有一定的参考价值。
参考技术A首先,解决这个问题,主要有两种方法:
方法1 (永久调整) :
vi /etc/security/limits.conf
在文件末加上: * soft nofile 8192 * hard nofile 20480 ,同时vi /etc/sysctl.conf末尾添加 fs.file-max=8192 ,然后再重新启动,使用ulimit -n查看的数已经是8192。
方法2 (临时用) :
首先就是直接在终端输入ulimit -n 8192,然后按回车就可以了。
Error错误补充:
1、硬盘空间满了 。使用 df -k ,然后查看硬盘空间是否满了。清理硬盘空间就可以解决500错误。nginx如果开启了access log,在不需要的情况下,最好关闭access log。access log会占用大量硬盘空间。
2、nginx配置文件错误 。这里不是指语法错误,nginx如果配置文件有语法错误,启动的时候就会提示。当配置rewrite的时候,有些规则处理不当会出现500错误,请仔细检查自己的rewrite规则。如果配置文件里有些变量设置不当,也会出现500错误,比如引用了一个没有值的变量。
3、如果上面的问题都不存在可能是模拟的并发数太多了,需要调整一下nginx.conf的并发设置数
C#语言怎样解决从网页上下HTML代码error403 Forbidden的问题
我想从10000个网页上下载HTML代码,但是有的网页显示error 403 Forbidden,请问,怎样通过添加代码来解决这个问题????
我写的代码:
string url = "http://en.wiktionary.org/wiki/ce";
HttpWebRequest request;
HttpWebResponse response;
StreamReader sr = null;
string htmlCode = "";
try
request = (HttpWebRequest)WebRequest.Create(url);
response = (HttpWebResponse)request.GetResponse();
sr = new StreamReader(response.GetResponseStream());
htmlCode = sr.ReadToEnd();
if (htmlCode == "")
Console.Write("cannot get HTMLCode.\n");
else
Console.Write("get HTMLCode, code length = " + htmlCode.Length + "\n");
Console.Write(htmlCode);
response.Close();
catch (Exception e) Console.Write(e.Message);
我想中间应该加几句设定浏览器的语句就可以了,高分帮忙。
改好后实下这几个连接:
http://en.wiktionary.org/wiki/ce
http://en.wiktionary.org/wiki/ne
http://en.wiktionary.org/wiki/sont
HttpWebResponse.StatusCode
403错误:HttpStatusCode.Forbidden 参考技术C public virtual int GetResponseCode(WebException exception)
if (exception.Status == WebExceptionStatus.ProtocolError && exception.Response != null &&
exception.Response is HttpWebResponse)
return (int)(((HttpWebResponse)exception.Response).StatusCode);
return 500;
用try catch 捕获WebException 然后判段
参考资料:初入江湖 多多指教啊
参考技术D //下载网页if(this.textBox1.Text==""|this.textBox2.Text=="")
return;
string FileName=this.textBox2.Text.Trim();
string URL=this.textBox1.Text.Trim();
//加"http://"标志
if (URL.IndexOf(@"http://")==-1 )
URL=@"http://"+URL;
HttpWebRequest MyRequest = (HttpWebRequest)WebRequest.Create(URL);
//发送请求,获取响应
HttpWebResponse MyResponse = (HttpWebResponse)MyRequest.GetResponse();
Stream MyInStream = null;
FileStream MyFileStream = null;
try
MyInStream =MyResponse.GetResponseStream();
long fileSizeInBytes = MyResponse.ContentLength;
//创建文件流对象
MyFileStream = new FileStream(FileName, FileMode.OpenOrCreate, FileAccess.Write);
int length = 1024;
byte[] buffer = new byte[1025];
int bytesread = 0;
string strtemp="";
//从网络读取数据
while((bytesread = MyInStream.Read(buffer, 0, length)) > 0)
//把数据写入文件
MyFileStream.Write(buffer, 0, bytesread);
strtemp+=System.Text.Encoding.Default.GetString(buffer,0,bytesread);
MessageBox.Show("下载网页成功!","信息提示",MessageBoxButtons.OK,MessageBoxIcon.Information);
catch(Exception Err)
MessageBox.Show("下载网页操作失败!错误是:"+Err.Message,"信息提示",MessageBoxButtons.OK,MessageBoxIcon.Information);
finally
//关闭流
if(MyInStream != null)
MyInStream.Close();
if(MyFileStream != null)
MyFileStream.Close();
自己改了,该睡觉了,夜猫非我莫属也~!!
以上是关于网页出现nginx error怎么办?的主要内容,如果未能解决你的问题,请参考以下文章