PHP Apache shutdown unexpectedly启动错误解释及解决办法

本文出自:http://blog.csdn.net/svitter

实验环境:Myeclipse10 + tomcat7.0

有时间会写windows和linux下的tomcat配置,现在时间有限,暂且不写了。。有些东西也是没有理解透彻。

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<%@ page language="java" contentType="text/html;charset=UTF-8"%>
<%!
String getDate()
{return new java.util.Date().toLocaleString();}
int count = 10;
%>

<html>
  <head>
    <title>一个典型的JSP</title>
  </head>

  <body>
  	<div align="center">
    	<table>
    		<tr bgcolor=777777>
    		<td>------------------------</td></tr>
    		<%
    		int i;
    		String color1="99ccff";
    		String color2="88cc33";
    		for(i = 1; i <= count; i++){
    			String color="";
    			if(i % 2 == 0)
    				color = color1;
    			else
    				color = color2;
    			out.println("<tr bgcolor="+color+"> <td> --- </td> </tr>");
    		}
    		%>
    	</table>
    <hr><P>
   	当前时间是:
   	<%-- 下面是使用表达式的例子 --%>
   	<%=getDate() %></P></div>
  </body>
</html>

运行结果:

PHP Apache shutdown unexpectedly启动错误解释及解决办法,布布扣,bubuko.com

时间: 2024-10-26 23:00:06

PHP Apache shutdown unexpectedly启动错误解释及解决办法的相关文章

PHP Apache shutdown unexpectedly启动错误解释及解决的方法

在学PHP的时候,偶然发现XAMPP窗体Apache的启动出现错误,出现下面的错误提示: 9:52:41  [Apache] Attempting to start Apache app... 9:52:41  [Apache] Status change detected: running 9:52:42  [Apache] Status change detected: stopped 9:52:42  [Apache] Error: Apache shutdown unexpectedly

【转载】Apache shutdown unexpectedly启动错误解决方法

http://blog.csdn.net/dong123dddd/article/details/21372179 xampp启动时显示的错误为: 9:52:41  [Apache] Attempting to start Apache app... 9:52:41  [Apache] Status change detected: running 9:52:42  [Apache] Status change detected: stopped 9:52:42  [Apache] Error:

Apache shutdown unexpectedly启动错误解决方法

这个问题比较常见, 通常是80.443端口被占用 cmd 通过运行apache/bin/httpd.exe 打印如下log: (OS 10048)通常每个套接字地址(协议/网络地址/端口)只允许使用一次. : make_sock: could not bind to address 0.0.0.0:443 或者后面是80端口被占用 (OS 10048)通常每个套接字地址(协议/网络地址/端口)只允许使用一次. : make_sock: could not bind to address 0.0.

Apache配置https启动不了的解决办法

准备工作:有备案了的http域名,去阿里云或者腾讯云购买SSL证书,有免费1年的: 第一步: 找到 #LoadModule ssl_module modules/mod_ssl.so 和 #Include conf/extra/httpd-ssl.conf,去掉前面的#号注释: 第二步: 编辑Apache根目录下 conf/extra/httpd-ssl.conf 文件,修改如下内容:(路径一定要填对,不然启动不了) Listen 443 <VirtualHost *:443> SSLEngi

XAMPP错误: Apache shutdown unexpectedly解决办法 &amp; 更改Apache端口号后如何打开localhost的解决办法 by yojiaku

---恢复内容开始--- 今天,在启动XAMPP中Apache时遇到了这样的问题: 14:42:24  [Apache]  Error: Apache shutdown unexpectedly.14:42:24  [Apache]  This may be due to a blocked port, missing dependencies, 14:42:24  [Apache]  improper privileges, a crash, or a shutdown by another

xampp 启动apache 提示:Error: Apache shutdown unexpectedly.

无法启动xampp的apache提示错误: 下午 8:32:21  [Apache]       Error: Apache shutdown unexpectedly. 下午 8:32:21  [Apache]       This may be due to a blocked port, missing dependencies, 下午 8:32:21  [Apache]       improper privileges, a crash, or a shutdown by anothe

tomcat启动一闪就退出的错误无法查看错误信息的解决办法

tomcat 有错误时 启动startup.bat一闪就退出的解决办法 打开 startup.bat 文件 最后 把start 改为run tomcat启动一闪就退出的错误无法查看错误信息的解决办法,布布扣,bubuko.com

Apache 80 端口被占用无法重启解决办法

原文出处 Apache 80 端口被占用无法重启解决办法 www.111cn.net 编辑:tiger 来源:转载使用WEB服务器的朋友都知道80端口是一个用来对外让用户访问的一个端口了,像apache,iis有时迅雷都会珍80端口了,下面我来给大家介绍在windiws,linux服务器apache 80 端口被占用无法重启解决办法有需要了解的朋友可参考. Linux系统中Apache 80端口被占用解决办法 apache重启的时候可能会出现以下错误: httpd:(98)Address alr

SQLServer2005+附加数据库时出错提示操作系统错误5(拒绝访问)错误5120的解决办法

SQLServer2005+ 附加数据库时出错提示操作系统错误5(拒绝访问)错误5120的解决办法 我们在用Sql SQLServer2005+附加数据库文件时弹出错误信息如下图的处理办法: 方案一:切换登录方式 出现这种情况是由于用"混合验证方式"(SQL Server身份验证)登录数据库造成的,只要将登录方式改为"windows身份验证方式"登录即可解决该问题,附加成功后再换用"混合验证模式"登陆就没问题了. 方案二:修改服务 选择 所有程序