记录一下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