项目部署小问题记录
1.搭建springboot项目,后台映射进不去(原因为代码和启动类不在一个包下)
2.服务器中,root用户命令提示没有权限
找到要操作的文件,查看属性
lsattr
发现文件有i属性(即不可修改)
chattr -i webapps/ 去除掉i属性
3.项目放到tomcat中去除上下文
在Host中把appBase置空,增加Context,docBase为绝对路径
4.代码提交到码云
先在码云创建仓库,复制仓库地址,在项目里git bash here
git init
git remote add origin https://gitee.com/***/***.git
git remote rm origin //提示已存在时执行
git add .
git commit -m firstcommit
git push -u origin master