1.安装依赖
yum -y install python-devel libxslt-devel libffi-devel openssl-devel
2.编译安装python2.7和pip
tar -xf Python-2.7.5.tar.gzcd Python-2.7.5./configure --enable-sharedmake && make installln -s /usr/local/bin/python /usr/bin/unzip setuptools-36.4.0.zipcd setuptools-36.4.0.0python setup.py installtar -xf pip-9.0.1.tar.gzcd pip-9.0.1python setup.py install
3.安装git-webhook
pip install git-webhook
配置git-webhook
gitwebhook configOK: init configuration file into `/root/.git-webhook/git_webhook_config.py`.
4.安装mysql redis
yum -y install mysql mysql-server redis
配置redis 密码,启动redis
启动mysql,创建库
CREATE DATABASE IF NOT EXISTS git_webhook default character set utf8 COLLATE utf8_general_ci;
授权
grant all privileges on git_webhook.* to dev@'localhost' identified by 'test';
5.配置git-webhook
vim .git-webhook/git_webhook_config.pymysql用户名:dev 密码:testDATABASE_URI = 'mysql+pymysql://dev:test@127.0.0.1/git_webhook'redis密码:testCELERY_BROKER_URL = 'redis://:test@127.0.0.1:6379/0'CELERY_RESULT_BACKEND = 'redis://:test@127.0.0.1:6379/0'SOCKET_MESSAGE_QUEUE = 'redis://:test@127.0.0.1:6379/0'
6.初始化git-webhook数据库
gitwebhook createdbOK: database is initialed.
7.启动
gitwebhook runserver &wsgi starting up on http://172.31.23.92:18340gitwebhook celery & 这个是用于异步执行任务
8.添加服务器
9.配置webhook