部署Git版本控制系统
项目背景:
对于程序员来说代码更新多了保存起来特别麻烦,特别是需要多人在线提交的情况.要实现更好的迭代更新代码需要建立版本控制系统。
现在主流的版本控制器有SVN,Git
产品 | 优点 | 缺点 |
---|---|---|
SVN | 逻辑结构简单,采用一对多的集中式管理方式,目录级别权限控制 | 必须联网,分支不灵活,不支持分布式 |
Git | 支持分布式,速度快,灵活创建分支,可以离线工作,解决冲突容易 | 暂时没想到 |
要求:
部署Git版本控制系统,管理网站代码,实现如下效果:
- 基于SSH协议的服务器
- 基于Git协议的服务器
- 基于HTTP协议的服务器
- 上传代码到版本仓库
配置环境:
生产环境应该有一台独立的Git服务器,这里为了节约主机资源,我们使用数据库主机同时做完Git服务器
主机角色 | 主机名称 | IP地址 |
---|---|---|
数据库服务器 | database | 192.168.2.21/24 |
代码实现部分:
步骤一:部署SSH协议的版本控制服务器
1)安装软件包,创建空仓库。
[root@database ~]# yum -y install git
[root@database ~]# mkdir /var/git/
[root@database ~]# git init --bare /var/git/wordpress.git #创建空仓库
2)登陆web1服务器克隆git仓库,上传网站代码到git服务器。
[root@web1 var]# git config --global push.default simple
[root@web1 var]# git config --global user.email [email protected]
[root@web1 var]# git config --global user.name "Your Name"
[root@web1 var]# cd /var/
[root@web1 var]# git clone [email protected]:/var/git/wordpress.git
[root@web1 var]# cd /var/wordpress
[root@web1 wordpress]# cp -a /usr/local/nginx/html/* ./
[root@web1 wordpress]# git add .
[root@web1 wordpress]# git commit -m "wordpress code"
[root@web1 wordpress]# git push
[email protected]'s password:<输入192.168.2.21主机root的密码>
步骤二:部署Git协议的版本控制服务器
1)安装软件包(192.168.2.21操作)
[root@database ~]# yum -y install git-daemon
2)修改配置文件,启动Git服务
[root@database ~]# vim /usr/lib/systemd/system/[email protected]
修改前内容如下:
ExecStart=-/usr/libexec/git-core/git-daemon --base-path=/var/lib/git --export-all --user-path=public_git --syslog --inetd –verbose
修改后内容如下:
ExecStart=-/usr/libexec/git-core/git-daemon --base-path=/var/git --export-all --user-path=public_git --syslog --inetd –verbose
[root@database ~]# systemctl start git.socket
[root@database ~]# systemctl status git.socket
3)客户端测试(使用web2做完客户端主机,192.168.2.12)
在web2执行clone等同于是把代码又备份了一份。
[root@web2 ~]# cd /var/
[root@web2 var]# git clone git://192.168.2.21/wordpress.git
步骤三:部署HTTP协议的版本控制服务器
1)安装软件包(192.168.2.21操作)
[root@database ~]# yum -y install httpd gitweb
2)修改配置文件
[root@database ~]# vim /etc/gitweb.conf
$projectroot = "/var/git"; #添加一行
3)启动服务
[root@database ~]# systemctl start httpd
4)客户端验证
[root@room9pc01 ~]# firefox http://192.168.2.21/git
访问网页可以查看到wordpress仓库,点击tree菜单后可以看到如图的代码
优化Web服务器
为了让用户浏览网站有更好的使用体验,可以根据web的性能优化,功能优化,用户体验优化
要求:
优化Web服务器,实现如下效果:
- 自定义网站404错误页面
- 升级nginx至1.15.8版本,开启status模块
- 编写日志切割脚本,实现每周五备份日志
- 开启gzip压缩功能,提高数据传输效率
- 开启文件缓存功能
代码实现部分:
步骤一:自定义404错误页面
1)优化前测试(客户端访问一个不存在的页面)。
[root@room9pc01 ~]# firefox http://www.lab.com/git
2) 修改Nginx配置文件,自定义错误页面
[root@web1 ~]# vim /usr/local/nginx/conf/nginx.conf
error_page 404 /404.html; //自定义错误页面
[root@web2 ~]# vim /usr/local/nginx/conf/nginx.conf
error_page 404 /404.html; //自定义错误页面
[root@web3 ~]# vim /usr/local/nginx/conf/nginx.conf
error_page 404 /404.html; //自定义错误页面
3) 重启nginx
[root@web1 ~]# /usr/local/nginx/sbin/nginx -s reload
[root@web2 ~]# /usr/local/nginx/sbin/nginx -s reload
[root@web3 ~]# /usr/local/nginx/sbin/nginx -s reload
步骤二:升级nginx版本,开启status模块
1)配置、编译新的nginx(web1、web2、web3做相同操作,下面以web1为例)
[root@web1 ~]# tar -xf nginx-1.15.8.tar.gz
[root@web1 ~]# cd nginx-1.15.8
[root@web1 nginx-1.15.8]# ./configure --with-http_ssl_module --with-http_stub_status_module
[root@web1 nginx-1.15.8]# make
2) 备份老版本nginx,更新新版本nginx
[root@web1 nginx-1.15.8]# mv /usr/local/nginx/sbin/nginx{,.old}
[root@web1 nginx-1.15.8]# cp objs/nginx /usr/local/nginx/sbin/
3)修改配置文件
[root@web1 ~]# vim /usr/local/nginx/conf/nginx.conf
... ...
location /status {
stub_status on;
allow 192.168.2.0/24;
deny all;
}
... ...
4) 升级或重启服务
注意:必须在nginx-1.15.8源码包目录下执行make upgrade命令。
[root@web1 nginx-1.15.8]# make upgrade
或者手动执行killall命令杀死进程后重新启动
[root@web1 ~]# killall nginx
[root@web1 ~]# /usr/local/nginx/sbin/nginx
步骤三:编写日志切割脚本
1)编写脚本(以web1为例)
[root@web1 ~]# vim /usr/local/nginx/logbak.sh
#!/bin/bash
date=`date +%Y%m%d`
logpath=/usr/local/nginx/logs
mv $logpath/access.log $logpath/access-$date.log
mv $logpath/error.log $logpath/error-$date.log
kill -USR1 $(cat $logpath/nginx.pid)
2)创建计划任务
[root@web1 ~]# crontab -e
03 03 * * 5 /usr/local/nginx/logbak.sh
步骤四:对页面进行压缩处理
1)修改Nginx配置文件
[root@proxy ~]# cat /usr/local/nginx/conf/nginx.conf
http {
.. ..
gzip on; //开启压缩
gzip_min_length 1000; //小文件不压缩
gzip_comp_level 4; //压缩比率
gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript;
//对特定文件压缩,类型参考mime.types
.. ..
}
步骤五:服务器内存缓存
1)如果需要处理大量静态文件,可以将文件缓存在内存,下次访问会更快。
http {
open_file_cache max=2000 inactive=20s;
open_file_cache_valid 60s;
open_file_cache_min_uses 5;
open_file_cache_errors off;
//设置服务器最大缓存2000个文件句柄,关闭20秒内无请求的文件句柄
//文件句柄的有效时间是60秒,60秒后过期
//只有访问次数超过5次会被缓存
}