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,之后登入密码  

  • 相关阅读:
    spring security注解(1)
    替换localhost:8080(假域名,本地使用)
    java线程
    总结正则表达式
    试卷袋封面打印项目总结--重构项目总结
    试卷袋封面打印项目总结--兼容处理
    05 http状态码
    01HTTP的前世今生
    人人都看得懂的正则表达式教程
    Chrome 开发者工具(DevTools)中所有快捷方式列表
  • 原文地址:https://www.cnblogs.com/otherwise/p/11567796.html
Copyright © 2011-2022 走看看