• 添加HP消息队列


    Date: 20140210

    Auth: Jin

    两台服务器

    120 HTTPSQS

    236 HTTPPROXY

    1.add host

    $ jump 120

    #vim /etc/hosts

    192.168.201.236 www.happyboby.com

    2. http proxy

    $ jump 236

    vim /etc/nginx/http-upstream/www.happyboby.com

    upstream www.happyboby.com.upstream {
      server 10.0.0.248:80;
      server 10.0.0.249:80;
    }

    vim /etc/nginx/nginx.conf

    server {
      server_name www.happyboby.com;
      location / { proxy_pass http://www.happyboby.com.upstream; }
    }


    /usr/local/nginx/sbin/nginx -c /etc/nginx/nginx.conf -t

    /etc/init.d/nginxd restart

    3.HTTPSQS config
    1)config
    vim /usr/local/divider/subscribe.properties

    club_happyboby_events.group = clubgoods
    club_happyboby_events.events = goodsinfo
    club_happyboby_events.service = phprpc
    club_happyboby_events.interface = http://www.happyboby.com/synapi/goods/
    
    event_happyboby_status.group = order
    event_happyboby_status.events = order_status
    event_happyboby_status.service = phprpc
    event_happyboby_status.interface = http://www.happyboby.com/synapi/order/

    2)restart
    关闭服务:
    ps -ef | grep dividersystem.jar
    kill -9 进程号

    启动服务:
    java -jar /usr/local/divider/dividersystem.jar &
    nohup ./task_sqs.sh &

    重启服务

      • 关闭服务:
        ps -ef | grep dividersystem.jar
        kill -9 进程号

      • 启动服务:
        java -jar /usr/local/divider/dividersystem.jar &
        nohup ./task_sqs.sh &

  • 相关阅读:
    GIS的发展
    ajax请求头加Token时发生的跨域(CORS)请求问题
    js 给定时间,如'20130830',换算和今天的天数差
    过程改进点滴需求调研经验之一
    昨天向PAM推荐的好书
    关于专人整理和分析需求
    走出开发混沌
    过程改进点滴需求调研经验之二
    代码重构注意事项
    插件框架内核完成
  • 原文地址:https://www.cnblogs.com/diege/p/3543392.html
Copyright © 2020-2023  润新知