Openshift jbossews盒式磁带连接从外部拒绝,但可从localhost访问

时间:2015-09-13 09:47:31

标签: jboss openshift connection-refused

我的jbossews盒式磁带突然无法通过webbrowser获得,但是当通过SSH登录时,似乎可以访问:

到目前为止我做了什么:

  • 当我protected void GridView1_RowUpdating(object sender, GridViewUpdateEventArgs e) { Label lb = GridView1.HeaderRow.FindControl("Label1") as Label; GridViewRow row = GridView1.Rows[e.RowIndex]; FileUpload fu = row.Cells[0].FindControl("fileupload") as FileUpload; if (fu.HasFile) { string file = System.IO.Path.Combine(Server.MapPath("~/uploadedimages/"), fu.FileName); fu.SaveAs(file); using (Ex_RepeaterEntities entities = new Ex_RepeaterEntities()) { Student students = (from e1 in entities.Students where e1.Id == Convert.ToInt32(lb.Text) select e1).First(); students.Images = file; entities.SaveChanges(); } } } 我的cartrdige时,我得到gear restart
  • Found 127.3.72.129:8080 listening port实际下载了有效的index.html
  • 在外部域wget 127.3.72.129:8080上使用wget(也使用“:8080”),我只是wget test-locked.rhcloud.com
  • Catalina日志也没有提供任何问题的提示。它报告服务器在没有任何警告的情况下成功启动。
  • 访问日志也未显示任何请求。
  • 磁盘配额也可用

我的想法已经用完了我接下来要检查的东西,或者让装备再次运转起来。任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:0)

在Openshift神奇地恢复之后,这个问题的答案似乎是:“放松,观望”。