zoukankan      html  css  js  c++  java
  • 2019.9.22 Tomcat的web站点部署

    1,上传开发人员给的war包

    [root@localhost ~]# rz
    z waiting to receive.**B0100000023be50
    [root@localhost ~]# ls
    anaconda-ks.cfg jpress-web-newest.war 公共 图片 音乐
    apache-tomcat-8.5.40.tar.gz nginx-1.16.0.tar.gz 模板 文档 桌面
    initial-setup-ks.cfg slsaledb-2014-4-10.sql 视频 下载
    [root@localhost ~]# mv jpress-web-newest.war /usr/local/tomcat8/webapps/      //把包放到tomcat8的/webapps下
    [root@localhost ~]# ls /usr/local/tomcat8/webapps/
    docs examples host-manager jpress-web-newest jpress-web-newest.war manager ROOT       //服务器支持自动解压

    2,测试能否可以正常访问到

    3,因为没有数据库,所以安装数据库。

    [root@localhost ~]# yum -y  install mariadb-server mariadb     //安装数据库依赖包

    [root@localhost ~]# systemctl start mariadb          //开启数据库

    [root@localhost ~]# mysql   


    Welcome to the MariaDB monitor. Commands end with ; or g.
    Your MariaDB connection id is 2
    Server version: 5.5.56-MariaDB MariaDB Server

    Copyright (c) 2000, 2017, Oracle, MariaDB Corporation Ab and others.

    Type 'help;' or 'h' for help. Type 'c' to clear the current input statement.

    MariaDB [(none)]> create database jp;             //创建jp数据库
    Query OK, 1 row affected (0.00 sec)

    MariaDB [(none)]> grant all on jp.* to 'jp'@'localhost' identified by '123456';     //给jp用户所以目录设置权限,密码是123456
    Query OK, 0 rows affected (0.00 sec)

    MariaDB [(none)]> flush privileges;     //加载
    Query OK, 0 rows affected (0.00 sec)

    MariaDB [(none)]> exit
    Bye

    4,之后就是测试了

     5,需要tomcat重启

    [root@localhost examples]# /usr/local/tomcat8/bin/shutdown.sh    //关闭

    [root@localhost examples]# /usr/local/tomcat8/bin/startup.sh   //开启

    6,之后登入密码  

  • 相关阅读:
    利用智能手机(Android)追踪一块磁铁(三)
    利用智能手机(Android)追踪一块磁铁(二)
    利用智能手机(Android)追踪一块磁铁(一)
    android音频发生器
    接口的作用(java)
    Botposter.com集群ETCD2.3.7升级至3.0实录[原创]
    springboot2+jpa+hikari+oracle实战
    Nginx配置详解
    Nginx安装启动+springboot项目实现负载均衡实战
    springboot使用websocket进行实时传送信息实战(包含服务端和客户端)
  • 原文地址:https://www.cnblogs.com/otherwise/p/11567796.html
Copyright © 2011-2022 走看看