使用git webhook实现自动更新的配置要点

记录一下php使用git webhook实现自动部署更新的解决方式。

问题

在宝塔终端里clone初始化的本地库之后无法用php脚本pull更新代码。

Host key verification failed. fatal: Could not read from remote
repository. Please make sure you have the correct access rights and
the repository exists.

原因

宝塔的网站默认使用的www用户,而我们在宝塔终端里使用的root用户。
clone本地库的时候默认使用了root用户。

综合搜索大法结合试验得出最简单解决方式:

1、使用www用户clone项目

sudo -u www clone  git@gitee.com:*****/****.git

2、使用www用户创建ssh密钥

sudo -Hu www ssh-keygen -t rsa

3、php exec命令行

cd /www/wwwroot/wx.x2erp.com;git reset --hard;git pull git@gitee.com:****/**.git
上一篇:GitLab中的Integrations  webhook的使用方法 对接 django url项目 自动化部署 django-rest-hooks:将Webhook订阅添加到Django应用


下一篇:prometheus中使用python手写webhook完成告警