• 添加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 &

  • 相关阅读:
    SAS学习 day10
    SAS学习 day9
    SAS学习 day8
    Python解释器 发展史
    os. 模块
    字典
    类型1
    计算机编码
    EDA 会议整理
    2020-8-27
  • 原文地址:https://www.cnblogs.com/diege/p/3543392.html
Copyright © 2020-2023  润新知