`
liyonghui160com
  • 浏览: 775956 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

安装nginx1.5.8时出现“cp: "conf/koi-win" 与"/usr/local/nginx/conf/koi-win" 为同一文件”的解决方法

阅读更多

 

 

 

 

说明:很多编译安装的说明都没有设置conf-path,但是我没有设置的话,在make install 阶段会出现

 

“cp: "conf/koi-win" 与"/usr/local/nginx/conf/koi-win" 为同一文件”的解决方法

cp: `conf/koi-win' and `/usr/local/nginx/conf/koi-win' are the same file错误)

 

 

解决方法:配置nginx.conf的路径

 

./configure --prefix=/usr/local/nginx-1.2.3 \

--conf-path=/usr/local/nginx-1.2.3/nginx.conf \

--openssl-path=/usr/local/openssl-1.0.1c \

--with-http_ssl_module \

--with-pcre=/usr/local/pcre-8.21 \

--with-http-stub-status-module

 

 

分享到:
评论

相关推荐

    nginx安装教程

    # Nginx 一般有两个版本,分别是稳定版和开发版,您可以根据您的目的来选择这两个版本的其中一个,下面是把 Nginx 安装到 /usr/local/nginx 目录下的详细步骤: cd /usr/local/src sudo wget ...

    quay.io/kubernetes-ingress-controller/nginx-ingress-controller:0.20.0镜像包

    kubernetes的quay.io/kubernetes-ingress-controller/nginx-ingress-controller:0.20.0镜像包,版本为v0.20.0。文件先解压,之后得到nginx-ingress-controller.0.20.0.tar

    Nginx RPM 包定制制作

    /application/nginx-1.6.3/conf/koi-win /application/nginx-1.6.3/conf/mime.types /application/nginx-1.6.3/conf/mime.types.default /application/nginx-1.6.3/conf/nginx.conf /application/nginx-1.6.3/conf/...

    nginx实现ssl之https改造(包含单机版以及负载均衡配置)

    8. 配置nginx服务文件编辑 /usr/local/nginx/conf/nginx.conf ,添加以下内容: ```perl server { listen 443 ssl; server_name your_domain.com; ssl_certificate /path/to/your/server.crt; ssl_certificate_...

    Linux 下 Nginx的安装:(解压,进入目录里面执行,./configure –-> make -> sudo make install)

    Nginx的配置文件位于`/usr/local/nginx/conf/nginx.conf`,你可以根据需求修改这个文件以配置服务器的行为。 10. **卸载Nginx**: 要卸载Nginx,你需要手动删除安装目录、配置文件和启动脚本,因为`make ...

    PHP 仿陌陌直播

    本次默认安装目录为:/root, add-module为下载的nginx-rtmp-module文件路径。 安装时候可能会报错没有安装openssl,需要执行命令: yum -y install openssl openssl-devel 3、修改nginx配置文件: vi /usr/local...

    CentOS 7.0编译安装Nginx1.6.0+MySQL5.6.19+PHP5.5.14

    - 编辑 Nginx 的配置文件 `/usr/local/nginx/conf/nginx.conf`,添加或修改必要的配置项。 - 测试配置文件的正确性,并启动 Nginx 服务。 #### 三、MySQL 安装与配置 **1. 解压并编译安装 MySQL** - 将 MySQL ...

    nginx-sticky-module-1.25.zip

    nginx sticky是nginx的module,可以实现基于cookie的负载均衡。 下载后,在编译安装nginx时,用--add-module... ./configure --prefix=/usr/local/nginx-1.6.0 --add-module=../nginx-sticky-module-1.25 --without-...

    开机自起nginx

    ExecStartPre=/usr/local/nginx/sbin/nginx -t -c /usr/local/nginx/conf/nginx.conf ExecStart=/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf #ExecReload=/usr/local/nginx/sbin/nginx -s ...

    Nginx 安装部署文档

    可以在 /usr/local/nginx 目录下找到相关的配置文件,例如 nginx.conf 文件。 该文档详细介绍了 Nginx 的安装过程和配置方法,包括编译环境准备、PCRE 库安装、zlib 库安装、SSL 库安装和 Nginx 安装等步骤,旨在...

    nginx优化 使用Google的开源TCMalloc库

    # echo "/usr/local/lib" > /etc/ld.so.conf.d/usr_local_lib.conf # /sbin/ldconfig 3:重新编译nginx 不会安装的看这里 http://www.yunwei8.com/nginx124/ # cd /soft/nginx-1.2.4 # ./configure --user=...

    linux 内网离线的nginx 安装

    根据实际需求,可以对Nginx的配置文件(默认位于`/usr/local/nginx/conf/nginx.conf`)进行修改,如设置虚拟主机、调整日志记录等。完成后,记得重启Nginx服务应用新配置: ``` sudo systemctl restart nginx ``...

    CentOS7 nginx离线安装gcc/pcre-devel/openssl-devel/zlib-devel包

    首先,`CentOS7 nginx离线安装gcc/pcre-devel/openssl-devel/zlib-devel包`这个标题表明我们需要为Nginx安装四个关键的开发库:GCC(GNU Compiler Collection),PCRE(Perl Compatible Regular Expressions)的开发...

    Nginx常见错误

    在Nginx配置中,当代理请求到后端服务器时,可能出现各种与上游服务器连接相关的问题,这些错误通常包括: 1. **`"upstream prematurely closed connection"`**:这表示上游服务器在响应未完成前就关闭了连接。 2. ...

    nginx-module-vts-0.1.18.tar.gz

    解压之后安装如下:mv nginx-module-vts-0.1.18 /usr/local/ yum -y install gcc gcc-c++ pcre pcre-devel zlib zlib-devel openssl openssl-devel cd /usr/local/nginx/nginx-1.13.7 ./configure --add-module=/...

    ansible实现nginx源码的自动化安装

    dest: /usr/local/src/nginx-1.18.0.tar.gz mode: '0644' - name: 解压Nginx源码 unarchive: src: /usr/local/src/nginx-1.18.0.tar.gz dest: /usr/local/src/ remote_src: yes creates: /usr/local/src/...

    nginx安装步骤教程

    ### Nginx在阿里云CentOS 7上的安装与配置详解 #### 一、Nginx简介 Nginx是一款高性能的HTTP和反向代理Web服务器软件,它以其高效的性能、稳定性、丰富的功能集以及较低的内存消耗而受到广泛欢迎。在实际应用中,...

    linux 下安装nginx步骤及命令

    Linux 下安装 Nginx 步骤及命令 Linux 操作系统中安装 Nginx 服务器的..../configure --sbin-path=/usr/local/nginx/nginx --conf-path=/usr/local/nginx/nginx.conf --pid-path=/usr/local/nginx/nginx.pid --with-...

    nginx-rtmp-win32

    conf/nginx.conf 为配置文件实例 RTMP监听 1935 端口,启用live 和hls 两个application HTTP监听 8080 端口, * :8080/stat 查看stream状态 * :8080/index.html 为一个直播播放与直播发布测试器 * :8080/vod....

Global site tag (gtag.js) - Google Analytics