• Linux安装OpenResty api 网关 Orange


    1.安装openresty

    # yum -y install libuuid-devel pcre-devel openssl-devel gcc-c++ wget
    # mkdir /openresty
    # cd /openresty
    # wget https://openresty.org/download/openresty-1.9.15.1.tar.gz
    # tar -zxf openresty-1.9.15.1.tar.gz
    # cd openresty-1.9.15.1
    # ./configure --with-http_stub_status_module --with-http_v2_module --with-http_ssl_module 
    # gmake && gmake install
    # ln -s /usr/local/openresty/nginx/sbin/nginx /usr/sbin/nginx
    # nginx -v
    

    2.创建MySQL数据库并导入数据(脚本在orange/install文件夹下)

    # yum -y install mariadb-server
    # mysql -u root
    # CREATE DATABASE orange CHARACTER SET utf8 COLLATE utf8_general_ci;
    # CREATE USER 'orange'@'%' IDENTIFIED BY 'orange';
    # GRANT ALL PRIVILEGES ON orange.* TO 'orange'@'%';
    # FLUSH PRIVILEGES;
    # 最后一定要执行mysql的数据库导入。
    # mysql -u orange -porange -h 10.0.2.15 orange < orange-v0.6.2.sql
    

    3.安装Orange

    安装之前需要 lor 框架,否则启动有问题。
    # yum install -y git
    # git clone https://github.com/sumory/lor.git
    # cd lor
    # make install
    
    启动并配置 orange 服务
    # service iptables stop
    # chkconfig iptables off
    # git clone https://github.com/sumory/orange.git
    # cd orange
    # vim conf/orange.conf
    # sh start.sh
    
    2743275-2e009409e9d775d4.png
    访问地址: http://IP:9999
    2743275-b87cf50db17bdbf6.png

    Tips:启动不起来查看端口占用情况杀掉其他进程

    # netstat -tunlp |grep 80
    
  • 相关阅读:
    Discuz 页面不能加载插件的原因和解决方法
    discuz 插件核心函数hookscript分析.
    比较容易犯的一些智障错误(不定时修改)
    浅谈树状数组入门
    图论的小总结
    usaco 2009 12 过路费
    0122(本来是想ak的但是因为智障只拿了200。)
    图论
    欧拉路
    bfs
  • 原文地址:https://www.cnblogs.com/zhousiwei/p/10625662.html
Copyright © 2020-2023  润新知