1、首先关闭防护墙或者设置规则通过且关闭selinux
停止firewall
systemctl stop firewalld
禁止firewall开机启动
systemctl disable firewalld
或设置firewall规则
firewall-cmd --permanent --zone=public --add-service=http
firewall-cmd --reload
修改SELINUX=enforce行为SELINUX=disabled
sed -i 's/SELINUX=setenforce 0/SELINUX=disabled/' /etc/sysconfig/selinux
2、nginx-1.14.2版本(编译安装)-自定义安装路径
安装路径:/usr/local/nginx
1.前期准备
安装编译需要的gcc和gcc-c++
yum install -y gcc gcc-c++
安装nginx依赖pcre-devel、openssl-devel、zlib-devel
yum install -y pcre pcre-devel openssl openssl-devel zlib zlib-devel
下载nginx源码包并解压到当前目录
wget http://nginx.org/download/nginx-1.14.2.tar.gz
tar zxvf nginx-1.14..tar.gz
2.nginx编译安装
生成Makefile文件
cd nginx-1.14.
./configure --user=nginx \
--group=nginx \
--prefix=/usr/local/nginx/ \
--with-http_v2_module \
--with-http_ssl_module \
--with-http_sub_module \
--with-http_stub_status_module \
--with-http_gzip_static_module \
--with-pcre
编译源代码并安装
make && make install
3.后期结尾
创建用户
useradd nginx
添加环境变量,创建nginx命令软链接到环境变量
ln -s /usr/local/nginx/sbin/* /usr/local/sbin/
4.配置nginx开启php支持(仅参考)
在server段中开启php支持
找到如下内容,删除注释字符,并将倒数第二行的 /scripts 替换为 $document_root
修改前
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
修改后
location ~ \.php$ {
root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
该段代码在server中的位置:
server {
listen 80;
server_name localhost;
location / {
root html;
index index.php index.html index.htm;
}
location ~ \.php$ {
root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
注意:location ~ \.php$ {}块中root的值和location / {}块中root的值需要一致
3、开启nginx目录浏览
vim /usr/local/nginx/conf/nginx.conf
添加如下内容:
location / {
root /usr/local/nginx/html/pack/ //指定实际目录绝对路径;
autoindex on; //开启目录浏览功能;
autoindex_exact_size off; //关闭详细文件大小统计,让文件大小显示MB,GB单位,默认为b;
autoindex_localtime on; //开启以服务器本地时区显示文件修改日期!
}
还有一个问题是这里开启的是全局的目录浏览功能,那么如何实现具体目录浏览功能呢?(仅参考)
2. 只打开网站部分目录浏览功能
只打开http://www.******.com/soft 目录浏览
vi /usr/local/nginx/conf/nginx.conf #编辑配置文件,在server {下面添加以下内容:
location /soft {
autoindex on;
autoindex_exact_size off;
autoindex_localtime on;
}
:wq! #保存,退出
4、创建目录
在web根目录下创建centosplus、extras、updates、os四个目录
mkdir centosplus extras updates os
#这四个目录用来区分类型(仅参考)
for DIR in $(ls); do cd $DIR; mkdir Packages; cd ..; done
#分别在四个目录下创建存储rpm包的目录
5、利用rsync同步至本地
rsync -avz --delete rsync://mirrors.ustc.edu.cn/centos/6/os/x86_64/Packages/ /usr/local/nginx/html/pack/centos/6/os/x86_64/Packages/
rsync -avz --delete rsync://mirrors.ustc.edu.cn/centos/6/extras/x86_64/Packages/ /usr/local/nginx/html/pack/centos/6/extras/x86_64/Packages/
rsync -avz --delete rsync://mirrors.ustc.edu.cn/centos/6/updates/x86_64/Packages/ /usr/local/nginx/html/pack/centos/6/updates/x86_64/Packages/
rsync -avz --delete rsync://mirrors.ustc.edu.cn/centos/6/centosplus/x86_64/Packages/ /usr/local/nginx/html/pack/centos/6/centosplus/x86_64/Packages/
rsync -avz --delete rsync://mirrors.ustc.edu.cn/centos/7/os/x86_64/Packages/ /usr/local/nginx/html/pack/centos/7/os/x86_64/Packages/
rsync -avz --delete rsync://mirrors.ustc.edu.cn/centos/7/extras/x86_64/Packages/ /usr/local/nginx/html/pack/centos/7/extras/x86_64/Packages/
rsync -avz --delete rsync://mirrors.ustc.edu.cn/centos/7/updates/x86_64/Packages/ /usr/local/nginx/html/pack/centos/7/updates/x86_64/Packages/
rsync -avz --delete rsync://mirrors.ustc.edu.cn/centos/7/centosplus/x86_64/Packages/ /usr/local/nginx/html/pack/centos/7/centosplus/x86_64/Packages/
或者同步全部数据(数据量较大不推荐,大小约136G)
rsync -avz --delete rsync://mirrors.ustc.edu.cn/centos/ /usr/local/nginx/html/pack/centos/
提供几个支持rsync同步的网站
mirrors.tuna.tsinghua.edu.cn
mirrors.ustc.edu.cn
mirrors.kernel.org
mirrors.neusoft.edu.cn
6、创建仓库
对三个目录使用createrepo创建仓库(生成repodata目录),供client端检索使用
yum install -y createrepo
createrepo /usr/local/nginx/html/pack/centos//os/x86_64/
createrepo /usr/local/nginx/html/pack/centos//extras/x86_64/
createrepo /usr/local/nginx/html/pack/centos//updates/x86_64/
createrepo /usr/local/nginx/html/pack/centos//centosplus/x86_64/
createrepo /usr/local/nginx/html/pack/centos//os/x86_64/
createrepo /usr/local/nginx/html/pack/centos//extras/x86_64/
createrepo /usr/local/nginx/html/pack/centos//updates/x86_64/
createrepo /usr/local/nginx/html/pack/centos//centosplus/x86_64/
#-o 指定repodata生成的目录
此时yum服务器已经搭建完成
7、创建计划任务
vim /etc/crontab
添加以下内容:
* * root rsync -avz --delete rsync://mirrors.ustc.edu.cn/centos/ /usr/local/nginx/html/pack/centos/ >/dev/null 2>&1 #每周一5点执行同步命令
同步完成后需要更新仓库
createrepo --update /usr/local/nginx/html/pack/centos//os/x86_64/
createrepo --update /usr/local/nginx/html/pack/centos//extras/x86_64/
createrepo --update /usr/local/nginx/html/pack/centos//updates/x86_64/
createrepo --update /usr/local/nginx/html/pack/centos//centosplus/x86_64/
createrepo --update /usr/local/nginx/html/pack/centos//os/x86_64/
createrepo --update /usr/local/nginx/html/pack/centos//extras/x86_64/
createrepo --update /usr/local/nginx/html/pack/centos//updates/x86_64/
createrepo --update /usr/local/nginx/html/pack/centos//centosplus/x86_64/
8、客户端配置
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.bak
cat >> /etc/yum.repos.d/CentOS-Base.repo << eof
[base]
name=CentOS-$releasever - Base
baseurl=http://mirrors.yryun.com/centos/$releasever/os/$basearch/
enabled=
gpgcheck= #released updates
[updates]
name=CentOS-$releasever - Updates
baseurl=http://mirrors.yryun.com/centos/$releasever/updates/$basearch/
enabled=
gpgcheck= #additional packages that may be useful
[extras]
name=CentOS-$releasever - Extras
baseurl=http://mirrors.yryun.com/centos/$releasever/extras/$basearch/
enabled=
gpgcheck= #additional packages that extend functionality of existing packages
[centosplus]
name=CentOS-$releasever - Plus
baseurl=http://mirrors.yryun.com/centos/$releasever/centosplus/$basearch/
enabled=
gpgcheck= eof
#清除所有缓存
yum clean all
#建立缓存
yum makecache
#查看yum源列表
yum repolist
#当yum服务器内容修改了之后或者修改了yum源文件,客户机需要重新建立缓存
#baseurl指向仓库(repodata)所在的目录
基于nginx搭建yum源服务器的更多相关文章
-
基于http方式搭建YUM源服务器
基于http方式搭建YUM源服务器 (2012-09-21 11:59:14) 转载▼ 标签: yum linux lnmp lamp http 分类: Linux 为了方便公司80多台Linux服务 ...
-
CentOS6下基于Nginx搭建mp4/flv流媒体服务器
CentOS6下基于Nginx搭建mp4/flv流媒体服务器(可随意拖动)并支持RTMP/HLS协议(含转码工具) 1.先添加几个RPM下载源 1.1)安装RPMforge的CentOS6源 [roo ...
-
FTP搭建YUM源服务器
一.FTP搭建YUM源服务器 1.服务器 挂载centos镜像[root@localhost ~]#yum install vsftpd[root@localhost ~]#systemctl sta ...
-
Ubuntu 14.10下基于Nginx搭建mp4/flv流媒体服务器(可随意拖动)并支持RTMP/HLS协议(含转码工具)
Ubuntu 14.10下基于Nginx搭建mp4/flv流媒体服务器(可随意拖动)并支持RTMP/HLS协议(含转码工具) 最近因为项目关系,收朋友之托,想制作秀场网站,但是因为之前一直没有涉及到这 ...
-
windows环境下基于nginx搭建rtmp服务器
基于nginx搭建rtmp服务器需要引入rtmp模块,引入之后需重新编译nginx linux环境几个命令行就能实现编译,笔者未尝试,网上有很多教程. windows环境还需要安装一系列的编译环境,例 ...
-
基于nginx搭建简易的基于wcf集群的复杂均衡
很多情况下基于wcf的复杂均衡都首选zookeeper,这样可以拥有更好的控制粒度,但zk对C# 不大友好,实现起来相对来说比较麻烦,实际情况下,如果 你的负载机制粒度很粗糙的话,优先使用nginx就 ...
-
在centos中搭建基于nginx的apt源服务器,整合yum源和apt源在一台服务器
1.首先关闭防护墙或者设置规则通过且关闭selinux 2.nginx-1.14.2版本(编译安装)-自定义安装路径 3.开启nginx目录浏览 以上步骤请参考前文:https://www.cnblo ...
-
RedHat7搭建yum源服务器
1.新建目录 # mkdir -p /content/rhel7/x86_64/{isos,dvd}/ 2.上传RedHat安装光盘镜像,上传后的路径为 /content/rhel7/x86_64/i ...
-
CentOS6.4下基于Nginx搭建mp4/flv流媒体服务器
我的步骤如下:1. 安装依赖包: yum install glibc.i686#yum –y update#yum -y install gcc glibc glibc-devel make nasm ...
随机推荐
-
七、L2CAP
1. L2CAP 在BR/EDR模式下,在connection procedure成功执行后,两台设备通过一条物理信道(physical channel)连接在一起,同时两者之间建立起了一条 ...
-
JQuery+Ajax制作省市联动
$(document).ready(function () { $("#Province").append("<option value=''>" ...
-
hdu2955
#include<bits/stdc++.h> using namespace std; struct Bank { double cau; int money; }bank[]; ]; ...
-
Restful中 @RequestParam,@PathParam,@PathVariable等注解区别
@RequestParam 和 @PathVariable 注解是用于从request中接收请求的,两个都可以接收参数,关键点不同的是@RequestParam 是从request里面拿取值,而 @P ...
-
react16 渲染流程
前言 react升级到16之后,架构发生了比较大的变化,现在不看,以后怕是看不懂了,react源码看起来也很麻烦,也有很多不理解的地方. 大体看了一下渲染过程. react16架构的变化 react ...
-
Centos 7 最小化kvm部署
1.检查CPU是否支持虚拟化 sh-4.2# grep -E '(vmx|svm)' /proc/cpuinfo # 若是无任何显示,则表示CPU不支持kvm虚拟化 2.关闭selinux sh-4. ...
-
Excel提取设定的多个关键字段
从一段文字中,提取事先设定的关键字段: 在M2单元格输入下列公式: =IFERROR(IF(FIND(O$2,Q2),O$2&" "),"")& ...
-
mybatis结合mysql批量操作及查询sql
MySQL数据库 批量操作主要使用的是Mybatis的foreach,遍历参数列表执行相应的操作,所以批量插入/更新/删除的写法是类似的,只是SQL略有区别而已.MySql批量操作需要数据库连接配置a ...
-
Revit API创建一个拷贝房间内对象布局命令
本课程演示创建一个拷贝房间内对象布局命令,完整演示步骤和代码.这个命令把选中房间内的对象复制到其它选中的一个或多个房间中,而且保持与源房间一致的相对位置.通过本讲座使听众知道创建一个二次开发程序很简单 ...
-
Bug:java.lang.*Error: stack size 8MB
在开发的时候遇到了这个Bug:java.lang.*Error: stack size 8MB Log: 11-27 14:16:37.093 21892-21892/com. ...