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

  • 相关阅读:
    ubuntu搭建php开发环境记录
    zz-什么是网关,路由,dns,通俗讲解
    如何设置root用户密码
    zz三台centos7虚拟机设置相互免密码登录
    go之闭包及其应用
    网络是怎样连接的
    进程间通信方式探索
    现代操作系统——操作系统概念
    现代操作系统——硬件_IO设备——设备控制器和设备本身
    simotion byte/word ASCII码转换为字符、字符串
  • 原文地址:https://www.cnblogs.com/otherwise/p/11567796.html
Copyright © 2011-2022 走看看