Mac OpenResty安装

参考网址:
          http://openresty.org/cn/installation.html

1.安装前的准备 Mac OS X (Darwin) 用户

 使用brew工具安装pcre、openssl库: brew install pcre openssl

2.下载 OpenResty的源码包l, 请到 Download 页下载

  

下载成功后解压openresty-1.9.15.1(版本号)

  

3. 使用终端,cd 到openresty-1.9.15.1目录下编译、安装openresty

  (1)$ ./configure \

   --with-cc-opt="-I/usr/local/opt/openssl/include/ -I/usr/local/opt/pcre/include/" \

   --with-ld-opt="-L/usr/local/opt/openssl/lib/ -L/usr/local/opt/pcre/lib/"    -j8  (2)make

  (3)make install

4.安装完成后,openresty会安装到 /usr/local/ 目录:
 

5.启动openresty 
sudo  /usr/local/openresty/nginx/sbin/nginx  

6.指定配置文件启动openresty 指定一个工程目录  cd /Users/xinshaofeng/Study/  mkdir nginx  cd nginx   mkdir conf logs lua   cd conf vi nginx.conf 把原来/usr/local/openresty/nginx/conf/nginx.conf内容拷贝进来

 cd 到nginx目录下 cd /Users/xinshaofeng/Study/nginx   -c 指定配置文件  -p . 指定工程目录 . 当前目录   -s reload 修改配置文件后重启 -s stop 停止  pkill nginx 杀死nginx进程 ps -ef | grep nginx 查看nginx进程

 sudo /usr/local/openresty/nginx/sbin/nginx -c conf/nginx.conf -p .



时间: 2024-12-28 21:59:33

Mac OpenResty安装的相关文章

mac下openresty安装

//openresty安装 http://openresty.org/ brew updatebrew install pcre openssl ./configure --prefix=/usr/local/openresty --with-cc-opt="-I/usr/local/opt/openssl/include/ -I/usr/local/opt/pcre/include/" --with-ld-opt="-L/usr/local/opt/openssl/lib/

mac上安装python3 和 sqlite的问题

建议mac上安装python3不要使用源码自己编译安装,而要使用 brew install python3 来安装 另外安装完之后创建需环境的话,要指定新的python环境,如下: virtualenv  -p /usr/local/Cellar/python3/3.6.2/bin/python3  --no-site-packages obpy17 Mac OSX 正确地同时安装Python 2.7 和Python3 Mac OSX 正确地同时安装Python 2.7 和Python3(这个是

visual studio for mac的安装初体验

微软2016 Connect 大会发布了visuo studio for mac的pre版本,由于工作原因,现在工作环境是mac,虽然开发现在是在用python,但一直关注着.net的发展,于是自己很激动的体验了一把,在张善友老师的提醒下,把安装过程中遇到的坑记录下来,便于和大家交流. 根据官网提示下载visual for mac 在线安装包,下载下来后,双击打开, ,然后双击安装,同意协议后,点击continue,这个时间会检测你的网络环境,因为要安装Android和ios的sdk,所以需要f

Mac上安装brew

用过ubuntu系统的都知道,上面有一个命令apt-get 很方便可以快速的安装很多软件 特别lamp环境 都是一键安装. 在mac上也有类似的命令 brew brew用法可以访问官网地址  http://brew.sh/ 但是在mac上安装 brew 的命令如下 curl -LsSf http://github.com/mxcl/homebrew/tarball/master | sudo tar xvz -C /usr/local --strip 1 但是按照上面的方式安装,都没成功,也没有

mac上安装homebrew

1:关于homebrew下载地址 homebrew下载地址网上版本很多:我用了几个都是显示 404 bad request 如图:均无法现在 有一个网址会给出最新的 安装地址: the URL is:   http://brew.sh/index_zh-cn.html 在网站的最下面给出了通过terminal下载 homebrew的最新的下载地址: 我下载的最新的路径是: ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew

mac上安装unrar和rar解压缩工具

问题描述: mac上默认不支持 rar压缩,但是从windows过来的很多文件,以及邮件中的附件都是通过rar的方式进行压缩的,所以考虑在mac上也能够进行解压缩rar文件 步骤: 1:首先到网站click here上下载RAR 5.10 beta 4 for Mac OS.    2:在terminal下执行执行解压缩命令:tar xvf rarosx-5.1.b4.tar进行解压 3:进入刚刚解压的rar目录中,cd downloads/rar 4:使用如下命令进行安装 mac上安装unra

在mac上安装nodejs

文章转载自我的个人博客  www.iwangzheng.com node.js最初是2009年发布的,目标是为聊实现事件驱动和非阻塞I/O的web服务器,应用的场景非常的广泛,有web服务器.实时应用.分布式应用.游戏.一些工具中,它是基于Chrome的V8引擎开发的.大家可以在github上找到开源代码: http://github.com/joyent/node. 之前用的电脑是windows系统的,现在换了mac之后需要在mac上重新安装下,let's start now ? git cl

Visual Studio for Mac离线安装教程

Visual Studio for Mac离线安装教程 可以在线安装,也可以离线安装(本次安装博主使用离线,在线安装失败了) 于是选择离线安装………… 离线安装步骤 下载离线安装包链接地址: VisualStudioForMac-7.0.0.3146.dmg文件 下载地址:  http://t.cn/RaJ15n6 百度网盘下载地址:链接:http://pan.baidu.com/s/1bYR8RG 密码:cw32 MonoFramework-MDK-5.0.0.100.macos10.xama

mac下安装mongoDB

方式一:命令行 MongoDB的安装有好多种安装方法,有普通青年的HomeBrew方式,也有文艺青年的源码编译方式.我只想快速的装起来用一下,所以我选最简单的HomeBrew. 请参考官方文档 : http://docs.mongodb.org/manual/tutorial/install-mongodb-on-os-x/ 更新Homebrew的package数据库,在Mac的终端中输入: $ brew update 然后耐心等待,这个没有任何显示,估计要几分钟,取决于网络的速度.然后就列出了