标签:-o top rom tomcat服务 位置 wrap img tom 不同
阿里云存放war包位置与本地不同,war包位置:data/wwwroot/default
tomcat启动
1,进入bin目录
cd /root/java/tomcat/bin
2,停止tomcat服务
./shutdown.sh
3,启动tomcat服务
./startup.sh
数据库远程连接设置:
1,登录
mysql -u root -p
依次执行如下命令:
use mysq;
select host from user where user=‘root‘;
可以看到当前主机配置信息为localhost.
3,
执行update user set host = ‘%‘ where user =‘root‘将Host设置为通配符%。
Host设置了“%”后便可以允许远程访问。
阿里云部署web项目(三)——发布项目,运行tomcat,数据库远程连接设置
标签:-o top rom tomcat服务 位置 wrap img tom 不同
原文地址:https://www.cnblogs.com/1ming/p/10364102.html