博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Tomcat9.0部署iot.war(环境mysql8.0,centos7.2)
阅读量:6573 次
发布时间:2019-06-24

本文共 1587 字,大约阅读时间需要 5 分钟。

下载安装包

安装mysql8.0

#####安装软件包###### tar -xf mysql-8.0.11-1.el7.x86_64.rpm-bundle.tar -C /opt/mysql# createrepo /opt/mysql# yum-config-manager --add-repo=file:///opt/mysql# echo "gpgcheck=0" >> /etc/yum.repos.d/_opt_mysql.repo# yum -y install mysql-community-server# systemctl start mysqld# ^start^enable# netstat -lnput | grep 3306#####重置MySQL密码###### grep 'temporary password' /var/log/mysqld.log2018-06-12T07:37:39.045310Z 5 [Note] [MY-010454] [Server] A temporary password is generated for root@localhost: 'elsq#kB%5Xgx'# mysql -uroot -pelsq#kB%5Xgxmysql> alter user 'root'@'localhost'identified with mysql_native_password by "Mr.Testder"

安装jdk

# tar -xzf jdk-8u77-linux-x64.tar.gz -C /usr/# vim /etc/profileexport JAVA_HOME=/usr/jdk1.8.0_77export PATH=$JAVA_HOME/bin:$PATH# source /etc/profile# java -versionjava version "1.8.0_77"Java(TM) SE Runtime Environment (build 1.8.0_77-b03)Java HotSpot(TM) 64-Bit Server VM (build 25.77-b03, mixed mode)

安装tomcat9.0

# tar -xzf apache-tomcat-9.0.8.tar.gz# mv apache-tomcat-9.0.8 /usr/local/tomcat

tomcat部署war包

# rm -rf /usr/local/tomcat/webapps/*# mv iot.war /usr/local/tomcat/webapps# cd /usr/local/tomcat/bin# ./startup.sh# netstat -lnptu | grep 8080# ps -ef | grep [j]ava# tailf logs/catalina.out26-Jan-2016 06:10:24.195 INFO [main] org.apache.coyote.AbstractProtocol.start Starting ProtocolHandler ["http-nio-8080"]26-Jan-2016 06:10:24.206 INFO [main] org.apache.coyote.AbstractProtocol.start Starting ProtocolHandler ["ajp-nio-8009"]26-Jan-2016 06:10:24.211 INFO [main] org.apache.catalina.startup.Catalina.start Server startup in 1560 ms

转载地址:http://qwwno.baihongyu.com/

你可能感兴趣的文章
C语言dos程序源代码分享(进制转换器)
查看>>
php项目中常用的log日志记录方法
查看>>
LogParser 导入MSSQL
查看>>
linux安装go环境并编写第一个go程序
查看>>
【在线研讨-现场文字】《敏捷开发用户故事分类与组织结构(二期-3)》2012-07-03...
查看>>
易语言 --什么情况下 用许可证
查看>>
项目总结:凡事预则立,不预则废!
查看>>
建属于自己的网站
查看>>
[linux] ubuntu 切换默认的/bin/sh
查看>>
boost库之智能指针
查看>>
linux c/c++ GDB教程详解(转载)
查看>>
我的友情链接
查看>>
自定义View Client 登录方式(一)
查看>>
cenOS+nginx+php+mysql (非一键包安装)
查看>>
我的友情链接
查看>>
我来自CSDN
查看>>
在mysql表中插入大量测试数据
查看>>
怎么给电脑设置IP地址和DNS地址,各系统设置IP/DNS几种方法
查看>>
面试总结之 oop desing 之 The Strategy Pattern
查看>>
必 备 习 题 集 (一)
查看>>