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,测试能否可以正常访问到
[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,之后登入密码
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。