【Linux】【Services】【VersionControl】git-daemon, httpd, mysql搭建带认证的gitserver
1. 简介:
比较低端的gitserver,使用centos自带的git-daemon搭建gitserver,使用httpd做上传和下载,利用mod_auth_mysql做认证
2. 环境
# Apache的运行环境
apr-util-mysql.x86_64 1.5.2-6.el7 @base
# git server的主进程
git-daemon.x86_64 1.8.3.1-14.el7_5 @updates
# http服务器
httpd.x86_64 2.4.6-80.el7.centos.1 @updates
# httpd的开发库
httpd-devel.x86_64 2.4.6-80.el7.centos.1 @updates
# 让httpd支持mysql认证的库
libdbi-dbd-mysql.x86_64 0.8.3-16.el7 @base
# mysql客户端
mariadb.x86_64 1:5.5.56-2.el7 @base
# mysql服务器
mariadb-server.x86_64 1:5.5.56-2.el7 @base
# CentOS版本
CentOS Linux release 7.5.1804 (Core)
# 内核版本
Linux centos-0 3.10.0-693.17.1.el7.x86_64 #1 SMP Thu Jan 25 20:13:58 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
3. 安装
3.1. 安装必要的包
yum install -y git-daemon httpd httpd-devel mariadb mariadb-server libdbi-dbd-mysql apr-util-mysql
3.2. 检查httpd安装
# 修改http配置文件
~]# sed "s/\<ServerName/ServerName YOURSERVERIP:80/g" /etc/httpd/conf/httpd.conf # alias,cgi,env这三个模块必须要有
~]# httpd -M |grep -Ei "\<(alias|cgi|env)"
alias_module (shared)
env_module (shared)
cgi_module (shared)
~]# systemctl start httpd
3.3. 检查git-deamon安装
~]# cat /usr/lib/systemd/system/git@.service
[Unit]
Description=Git Repositories Server Daemon
Documentation=man:git-daemon(1) [Service]
User=nobody
ExecStart=-/usr/libexec/git-core/git-daemon --base-path=/var/lib/git --export-all --user-path=public_git --syslog --inetd --verbose
StandardInput=socket
~]# systemctl start git.socket
3.4. 检查mysql安装
~]# grep -Ev "^#|^$" /usr/lib/systemd/system/mariadb.service
[Unit]
Description=MariaDB database server
After=syslog.target
After=network.target
[Service]
Type=simple
User=mysql
Group=mysql
ExecStartPre=/usr/libexec/mariadb-prepare-db-dir %n
ExecStart=/usr/bin/mysqld_safe --basedir=/usr
ExecStartPost=/usr/libexec/mariadb-wait-ready $MAINPID
TimeoutSec=300
PrivateTmp=true
[Install]
WantedBy=multi-user.target ~]# systemctl start mariadb
4. 配置
4.1. 配置git-deamon支持git协议
~]# cd /var/lib/git/
#初始化一个空的目录
~]# git init --bare myproject.git
Initialized empty Git repository in /var/lib/git/myproject.git/
#可以在其他客户端使用git clone git://IPADDRESS/myproject.git尝试下载了,但是目前只能下载,不能推送
4.2. 支持http方式的clone
#创建git目录并初始化仓库
~]# mkdir /var/www/git
~]# cd /var/www/git
~]# git init --bare testproject.git
~]# chown -R apache:apache /var/www/git #修改httpd配置文件的DocumentRoot
sed -i "s/^DocumentRoot/#&/" /etc/httpd/conf/httpd.conf
创建/etc/httpd/conf.d/git.conf
<VirtualHost *:80>
ServerName centos-0
#下面的参数可以使用man git-http-backend查看
SetEnv GIT_PROJECT_ROOT /var/www/git
#检查GIT是否支持smart功能,如果支持就打开smart功能
SetEnv GIT_HTTP_EXPORT_ALL
#要授权读或者写主要取决于/usr/libexec/git-core/目录的权限
ScriptAlias /git/ /usr/libexec/git-core/git-http-backend/
<Directory "/usr/libexec/git-core/">
Options ExecCGI Indexes
Require all granted
</Directory>
</VirtualHost>
可以试着clone了
git clone http://IPADDRESS/git/testproject.git
但是目前依然不支持推送,如果想要推送需要在git的源上配置
git config http.receivepack true
4.3. 配置http支持文件认证
修改/etc/httpd/conf.d/git.conf
<VirtualHost *:80>
ServerName centos-0
#下面的参数可以使用man git-http-backend查看
SetEnv GIT_PROJECT_ROOT /var/www/git
#检查GIT是否支持smart功能,如果支持就打开smart功能
SetEnv GIT_HTTP_EXPORT_ALL
#要授权读或者写主要取决于/usr/libexec/git-core/目录的权限
ScriptAlias /git/ /usr/libexec/git-core/git-http-backend/
<Directory "/usr/libexec/git-core/">
Options ExecCGI Indexes
Require all granted
</Directory>
<LocationMatch "^/git/.*/git-receive-pack$">
AuthType Basic
AuthName "Private Git Repo"
AuthUserFile /etc/httpd/conf/.htpasswd
Require valid-user
</LocationMatch>
</VirtualHost>
添加用户
htpasswd -c -m /etc/httpd/conf/.htpasswd eric
4.4. 安装libdbi-dbd-mysql模块,这个模块只支持2.4版本之后,同时还支持pgsql和sqlite,是apache的开源项目
redhat上的介绍:https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/7/html/system_administrators_guide/ch-web_servers
apache上的介绍:https://httpd.apache.org/docs/2.4/mod/mod_authn_dbd.html
配置数据库
# 直接连数据库,没有密码
~]# mysql -uroot
#给root用户设置一个密码
> update mysql.user set password=PASSWORD('mysql') where user='root';
# 创建一个git用户
>CREATE USER 'git'@'localhost' IDENTIFIED BY 'git';
# 创建git库
>create database git;
# 给权限
>GRANT all ON git.* TO 'git'@'localhost';
# 创建一个users表
>create table users ( user_name varchar(191) not null, user_passwd varchar(191), user_group varchar(191), primary key (user_name) );
修改配置文件/etc/httpd/conf.d/git.conf
参考 https://www.seei.biz/mysql-authentication-on-apache-2-4/
<VirtualHost *:80>
#LoadModule mysql_auth_module modules/mod_auth_mysql.so
ServerName centos-0
#下面的参数可以使用man git-http-backend查看
SetEnv GIT_PROJECT_ROOT /var/www/git
#检查GIT是否支持smart功能,如果支持就打开smart功能
SetEnv GIT_HTTP_EXPORT_ALL
#要授权读或者写主要取决于/usr/libexec/git-core/目录的权限
ScriptAlias /git/ /usr/libexec/git-core/git-http-backend/
#使用Mysql认证方式
DBDriver mysql
#数据库参数
DBDParams "host=localhost dbname=git user=git pass=git"
# Minimum number of connections
DBDMin 4
# Maximum sustained number of connections
DBDKeep 8
#Set the hard maximum number of connections per process
DBDMax 20
# Set the time to keep idle connections alive when the number of connections specified in DBDKeep has been exceeded
DBDExptime 300
<Directory "/usr/libexec/git-core/">
Options ExecCGI Indexes
Require all granted
</Directory>
<LocationMatch "^/git/.*/git-receive-pack$">
AuthType Basic
AuthName "Private Git Repo"
AuthDBDUserPWQuery "select user_passwd from users where user_name = %s and user_group = 'admin'"
AuthBasicProvider socache dbd
#AuthUserFile /etc/httpd/conf/.htpasswd
Require valid-user
</LocationMatch>
</VirtualHost>
创建一个用户并插入到数据库
# 利用http工具生成密码
~]# htpasswd -bns gitadmin gitadmin
admin:{SHA}0DPiKuNIrrVmD8IUCuw1hQxNqZc=
# 使用git用户连接数据库创建用户
~]# mysql -ugit -p
# 插入一条数据
> INSERT INTO `users` (`user_name`, `user_passwd`, `user_group`) VALUES('admin', '{SHA}0DPiKuNIrrVmD8IUCuw1hQxNqZc=', 'admin');
可以使用admin测试喽
【Linux】【Services】【VersionControl】git-daemon, httpd, mysql搭建带认证的gitserver的更多相关文章
- Linux下的Jenkins+Tomcat+Maven+Git+Shell环境的搭建使用(jenkins自动化部署)【转】
jenkins自动化部署 目标:jenkins上点构建(也可以自动检查代码变化自动构建)>>>项目部署完成. 一.安装jenkins 1.下载jenkins 这里我选择的是war包安 ...
- [jmeter]linux下自动测试环境+持续集成ant+jmeter+Apache(httpd)环境搭建与使用
前言:考虑搭建一个接口性能自动化测试平台,时间又比较紧急,所以就现想到了用jenkins+ant+jmeter完成,考虑到在linux环境中本身就可以设置定时任务,暂时该自动化用例还不与项目集成关联, ...
- Linux下Jenkins+git+gradle持续集成环境搭建
Linux下Jenkins+git+gradle持续集成环境搭建 来源:IT165收集 发布日期:2014-08-22 21:45:50 我来说两句(0)收藏本文 一.项目介绍 和 linux ...
- NFS实现(双httpd + php-fpm + nfs + mysql 搭建discuz论坛)的方法
NFS相关介绍 一.NFS简介 1. NFS(Network File System):NFS是一个文件共享协议, 也是是在类Unix系统中在内核中实现的文件系统. 2. 起源:最早是由SUN公司研发 ...
- linux应用之Lamp(apache+mysql+php)的源码安装(centos)
Linux+Apache+Mysql+Php源码安装 一.安装环境: 系统:Centos6.5x64 Apache: httpd-2.4.10.tar.gz Mysql: mysql-5.6.20-l ...
- 使用nodejs+express+socketio+mysql搭建聊天室
使用nodejs+express+socketio+mysql搭建聊天室 nodejs相关的资料已经很多了,我也是学习中吧,于是把socket的教程看了下,学着做了个聊天室,然后加入简单的操作mysq ...
- linux服务之git
http://www.cnblogs.com/fnng/archive/2011/08/25/2153807.html http://www.cnblogs.com/sunada2005/archiv ...
- Ubuntu+Django+Nginx+uWSGI+Mysql搭建Python Web服务器
Ubuntu+Django+Nginx+uWSGI+Mysql搭建Python Web服务器 闲着无聊的时候部署了一个Django项目玩,用vm虚拟机部署的. 准备工作 我使用的系统是Ubuntu16 ...
- Linux系统环境下Tomcat8、httpd、mysql8开机自启动配置
Linux系统环境下Tomcat8.httpd.mysql8开机自启动配置: 相关命令:chkconfig 参考链接:https://jingyan.baidu.com/article/6525d4b ...
随机推荐
- 【java+selenium3】多窗口window切换及句柄handle获取(四)
一 .页面准备 1.html <html> <head> <title>主页面 1</title> </head> <body> ...
- webpack 之开发环境优化 HMR
webpack 之开发环境优化 HMR // webpack.config.js /** * HMR hot module replacement 热模块替换 / 模块热替换 * 作用:一个模块发生变 ...
- PTA 7-2 畅通工程之局部最小花费问题 (35分)
PTA 7-2 畅通工程之局部最小花费问题 (35分) 某地区经过对城镇交通状况的调查,得到现有城镇间快速道路的统计数据,并提出"畅通工程"的目标:使整个地区任何两个城镇间都可以实 ...
- ubuntu install redis
ubuntu install redis apt-get update apt-get install redis-server redis-server --daemonize yes
- Spring Boot程序中@JsonIgnoreProperties与@JsonIgnore基本使用
问题由来: springboot项目中定义了很多类,我们在rest返回中直接返回或者在返回对象中使用这些类,spring已经使用jackson自动帮我们完成这些的to json.但是有时候自动转的js ...
- Mac下Shell脚本使用学习笔记(二)
参考文献 Shell 教程 MAC常用终端命令行 Mac下Shell脚本使用 (7)Shell echo命令: 命令格式:echo string ①显示普通字符串:echo "It is a ...
- 这一次,Google 终于对 Web 自动化下手了!
大家好,我是安果! 最近 Google 对 Chrome 进行了一次比较大的更新,其中一项是脚本录制回放功能,它可以非常方便我们处理一些自动化场景 我们可以在 Chrome 官网下载 Chrome C ...
- JVM-学习笔记持续更新
1.Java虚拟机的基本结构 (1)类加载子系统与方法区: 类加载子系统负责从文件系统或者网络中加载Class信息,加载的类信息存放在一块称为方法区的内存空间.除了类的信息外,方法区中可能还会存放运行 ...
- [atAGC049E]Increment Decrement
由于每一个操作的逆操作都存在,可以看作将$a_{i}$全部变为0的代价 先考虑第一个问题,即对于确定的$a_{i}$如何处理 如果仅能用第2种操作,定义点$i$的代价为以$i$为左端点或以$i-1$为 ...
- 微信和QQ这么多群,该如何管理好友关系?
本文节选自<设计模式就该这样学> 1 中介者模式的应用场景 在现实生活中,中介者的存在是不可缺少的,如果没有了中介者,我们就不能与远方的朋友进行交流.各个同事对象将会相互进行引用,如果每个 ...