zoukankan      html  css  js  c++  java
  • 阿里云windows server 2012R2服务器的搭建+Tomcat(访问一张照片为例)

    引言
    昨天在阿里云上面申请了一个30天的试用服务器,我选择的是windows server 2012R2的,具体的说说怎么搭建这款服务器,以一张照片为例,目标是从浏览器能够访问到我们服务器的这张照片!

    申请服务器
    参考这篇博客(里面有申请试用的地址)如何申请免费的阿里云服务器

    创建安全组实例
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    确定以后就是这样的:
    在这里插入图片描述
    在这里插入图片描述

    在服务器上安装XAMMP
    安装过程就不说了,我碰到的几个问题说一下

    第一个问题

    [Apache] Problem detected!
    10:08:51 [Apache] Port 80 in use by “Unable to open process” with PID 4!
    10:08:51 [Apache] Apache WILL NOT start without the configured ports free!
    10:08:51 [Apache] You need to uninstall/disable/reconfigure the blocking application
    10:08:51 [Apache] or reconfigure Apache and the Control Panel to listen on a different port

    这里端口被占用参考该博客

    appache端口被占用的解决方法

    第二个问题

    [Tomcat] Attempting to start Tomcat app…

    一直处于Attempt 状态,没有Runing!

    解决方法:打开xammp/tomcat/
    先关闭XAMMP
    然后运行 catalina_start文件
    接着运行 tomcat_server.install
    再运行tomcat_server.uninstall
    最后重启Xammp,start tomcat
    如果还是不行,我建议你卸载XAMMP重新安装!

    更改server.html的端口信息
    Connector port=“8080” protocol=“HTTP/1.1”
    connectionTimeout=“20000”
    redirectPort=“8443” />

    将8080改为80
    Engine name=“Catalina” defaultHost=“localhost”>

    Host name=“localhost” appBase=“webapps”
    unpackWARs=“true” autoDeploy=“true”

    将localhost改为你自己的公网ip最后在倒数第四行地上面加上一行代码
    <Context path="/fileStore" docBase="你自己的文件夹(最好在tomcat/webapps/ROOT里面)" crossContext="true" trusted="true"></Context>

    其中fileStore是你放照片的文件夹
    最后最后:保存重启XAMMP!

    在你的浏览器里面输入你的IP+/+文件名(带后缀)

    在这里插入图片描述

    在这里插入图片描述
    如果有不懂的请联系我,日常在线

  • 相关阅读:
    No bean named 'springSecurityFilterChain' is defined
    Spring管理hibernate Session
    集成hibernate
    Maven setting.xml
    SpringMVC集成Spring
    搭建SpringMVC
    一个简单的web project
    一文带你认识Java8中接口的默认方法
    抽象类和模板方法模式
    可能你不知道的,关于自动装箱和自动拆箱
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13309954.html
Copyright © 2011-2022 走看看