在Linux系统上如何发布JavaWeb项目

以下均来自其他博主的博客:

这里使用的Linux系统是CentOs7

安装JDK:https://blog.csdn.net/hui_2016/article/details/69941850

安装MySQL:https://baijiahao.baidu.com/s?id=1594826744706555879&wfr=spider&for=pc

Navicat连接CENTOS7中MYSQL报错2003和1130:https://blog.csdn.net/vincentlee7/article/details/80320872 

连接出现1862错误:(参考如下代码)

出现的原因是密码过期,要设置密码永久有效

mysql -uroot -proot
update user set authentication_string = password('root'), password_expired = 'N', password_last_changed = now() where user = 'root';
flush privileges;

安装tomcat:

https://jingyan.baidu.com/article/27fa73268002f246f9271f45.html

扫描二维码关注公众号,回复: 5771362 查看本文章

https://blog.csdn.net/gebitan505/article/details/54599598

安装配置Redis:

https://blog.csdn.net/u010623954/article/details/80037078

猜你喜欢

转载自www.cnblogs.com/leafarmyarmy/p/10653000.html