当前位置: 首页 > news >正文

淘宝代购网站开发网络营销渠道

淘宝代购网站开发,网络营销渠道,甘肃自助建站系统怎么用,全网霸屏推广营销系统软件版本操作系统CentOS Linux release 7.9.2009erlangerlang-23.0.2-1.el7.x86_64rabbitMQrabbitmq-server-3.8.5-1.el7 RabbitMQ的安装首先需要安装Erlang,因为它是基于Erlang的VM运行的。 RabbitMQ安装需要依赖:socat和logrotate,logrotate操作系统已经存在了&…

软件版本
操作系统CentOS Linux release 7.9.2009
erlangerlang-23.0.2-1.el7.x86_64
rabbitMQrabbitmq-server-3.8.5-1.el7

RabbitMQ的安装首先需要安装Erlang,因为它是基于Erlang的VM运行的。

RabbitMQ安装需要依赖:socat和logrotate,logrotate操作系统已经存在了,只需要安装socat就可以了。

RabbitMQ与Erlang的兼容关系详见:

[地址](RabbitMQ Erlang Version Requirements — RabbitMQ)

表格如下:

RabbitMQ versionMinimum required Erlang/OTPMaximum supported Erlang/OTPNotes
3.12.2
3.12.1
3.12.0
25.026.0The 3.12 release series is compatible wtih Erlang 26.OpenSSL 3 support in Erlang is considered to be mature enough for production.Erlang 26.1 will support FIPS mode on OpenSSL 3
3.11.20
3.11.19
3.11.18
3.11.17
3.11.16
3.11.15
3.11.14
3.11.13
3.11.12
3.11.11
3.11.10
3.11.9
3.11.8
3.11.7
3.11.6
3.11.5
3.11.4
3.11.3
3.11.2
3.11.1
3.11.0
25.025.3.xErlang 26 is supported starting with Erlang 3.12.0.As of Erlang 25.1, OpenSSL 3.0 support in Erlang is considered to be mature enough for production.Erlang 25 before 25.0.2 is affected by CVE-2022-37026, a CVE with critical severity (CVSS 3.x Base Score: 9.8)
3.10.25
3.10.24
3.10.23
3.10.22
3.10.21
3.10.20
3.10.19
24.3.4.825.3.x24.3 is the only maintained (updated) series of Erlang 24.As of Erlang 25.1, OpenSSL 3.0 support in Erlang is considered to be mature enough to consider for production.Erlang 25 before 25.0.2 and 24 before 24.3.4.2 are affected by CVE-2022-37026, a CVE with critical severity (CVSS 3.x Base Score: 9.8)
3.10.18
3.10.17
3.10.16
3.10.14
24.325.224.3 is the only maintained (updated) series of Erlang 24.As of Erlang 25.1, OpenSSL 3.0 support in Erlang is considered to be mature enough to consider for production.Erlang 25 before 25.0.2 and 24 before 24.3.4.2 are affected by CVE-2022-37026, a CVE with critical severity (CVSS 3.x Base Score: 9.8)
3.10.13
3.10.12
3.10.11
3.10.10
3.10.9
3.10.8
24.225.2As of Erlang 25.1, OpenSSL 3.0 support in Erlang is considered to be mature enough to consider for production.Erlang 25 before 25.0.2 and 24 before 24.3.4.2 are affected by CVE-2022-37026, a CVE with critical severity (CVSS 3.x Base Score: 9.8)
3.10.7
3.10.6
3.10.5
23.225.2Erlang 25 is the recommended series.Erlang 25 before 25.0.2 and 24 before 24.3.4.2 are affected by CVE-2022-37026, a CVE with critical severity (CVSS 3.x Base Score: 9.8)Erlang 23 support was discontinued on July 31st, 2022.
3.10.4
3.10.2
3.10.1
3.10.0
23.224.3Erlang 24.3 is the recommended series.Erlang 23 support was discontinued on July 31st, 2022.
  1. 安装依赖socat
yum install socat -y
  1. 安装Erlang

Erlang的下载地址:

https://github.com/rabbitmq/erlang-rpm/releases/download/v23.0.2/erlang-23.0.2-1.el7.x86_64.rpm

将文件上传服务器,执行安装命令

rpm -ivh erlang-23.0.2-1.el7.x86_64.rpm 
  1. 安装RabbitMQ

rabbitMQ的下载地址 :

https://github.com/rabbitmq/rabbitmq-server/releases/download/v3.8.5/rabbitmq-server-3. 8.5-1.el7.noarch.rpm

下载后将文件上传服务器,执行安装命令

rpm -ivh rabbitmq-server-3.8.5-1.el7.noarch.rpm
  1. 启动RabbitMQ的管理插件

    rabbitmq-plugins enable rabbitmq_management
    

    可以看到如下提示信息:

    [root@mes01 soft]# rabbitmq-plugins enable rabbitmq_management
    Enabling plugins on node rabbit@mes01:
    rabbitmq_management
    The following plugins have been configured:rabbitmq_managementrabbitmq_management_agentrabbitmq_web_dispatch
    Applying plugin configuration to rabbit@mes01...
    The following plugins have been enabled:rabbitmq_managementrabbitmq_management_agentrabbitmq_web_dispatchstarted 3 plugins.
    

    当启用rabbitmq_management插件时,自动启动了依赖的rabbitmq_management_agent插件和rabbitmq_web_dispatch

    1. 启动RabbitMQ

    启动命令

     systemctl start rabbitmq-server
    

    或者

    rabbitmq-server
    

    或者

    rabbitmq-server -detached
    

    将端口在防火墙上开放

    firewall-cmd --zone=public --add-port=15672/tcp --permanent
    firewall-cmd --reload
    
    1. 添加用户
    rabbitmqctl add_user root 123456
    
    1. 给用户添加权限
    rabbitmqctl set_permissions root -p / ".*" ".*" ".*"
    
    1. 给用户设置标签
    rabbitmqctl set_user_tags root administrator
    

​ 权限相关的描述

标签描述
(None)没有访问management插件的权限
management可以使用消息协议做任何操作的权限,加上:
1. 可以使用AMQP协议登录的虚拟主机的权限
2.查看它们能登录的所有虚拟主机中所有队列、交换器和绑定的权限
3. 查看和关闭它们自己的通道和连接的权限
4.查看它们能访问的虚拟主机中的全局统计信息,包括其他用户的活动
policymaker所有management标签可以做的,加上:
1.在它们能通过AMQP协议登录的虚拟主机上,查看、创建和删除策略以及虚拟主机参数的权限
monitoring所有management能做的,加上:
1.列出所有的虚拟主机,包括列出不能使用消息协议访问的虚拟主机的权限
2. 查看其他用户连接和通道的权限
3. 查看节点级别的数据如内存使用和集群的权限

4. 查看真正的全局所有虚拟主机统计数据的权限
administrator所有policymaker和monitoring能做的,加上:
1. 创建删除虚拟主机的权限
2. 查看、创建和删除用户的权限
3. 查看、创建和删除权限的权限
4. 关闭其他用户连接的权限
  1. 打开浏览器访问

http://<安装RabbitMQ的机器的IP>:15672

在rabbitMQ中存在一个内置帐号 guest,但此帐号仅限制本地访问,远程访问使用创建的的root帐号

在这里插入图片描述

登录成功后,可以看到

在这里插入图片描述

至此RabbitMQ的安装就已经完成。


文章转载自:
http://ghillie.kryr.cn
http://predorsal.kryr.cn
http://apulia.kryr.cn
http://tuitionary.kryr.cn
http://indecorous.kryr.cn
http://megavoltage.kryr.cn
http://constipation.kryr.cn
http://heteroscedasticity.kryr.cn
http://shakerful.kryr.cn
http://mathematically.kryr.cn
http://butterbur.kryr.cn
http://squeal.kryr.cn
http://caddice.kryr.cn
http://carragheenin.kryr.cn
http://conquerable.kryr.cn
http://flagpole.kryr.cn
http://squaloid.kryr.cn
http://glycosylate.kryr.cn
http://cockatiel.kryr.cn
http://phlebotomize.kryr.cn
http://serenely.kryr.cn
http://complied.kryr.cn
http://hydrolyzate.kryr.cn
http://hotpress.kryr.cn
http://kcps.kryr.cn
http://monoclinal.kryr.cn
http://polychrome.kryr.cn
http://operette.kryr.cn
http://indorsement.kryr.cn
http://sirvente.kryr.cn
http://tuberculoid.kryr.cn
http://chabuk.kryr.cn
http://hessonite.kryr.cn
http://frontad.kryr.cn
http://seamy.kryr.cn
http://faience.kryr.cn
http://redemptor.kryr.cn
http://spinet.kryr.cn
http://hyperkinesis.kryr.cn
http://crimson.kryr.cn
http://reroll.kryr.cn
http://sumption.kryr.cn
http://moule.kryr.cn
http://silliness.kryr.cn
http://uft.kryr.cn
http://guyanan.kryr.cn
http://cack.kryr.cn
http://barrack.kryr.cn
http://shitless.kryr.cn
http://razzmatazz.kryr.cn
http://nostril.kryr.cn
http://tosspot.kryr.cn
http://afficionado.kryr.cn
http://unneighborly.kryr.cn
http://washcloth.kryr.cn
http://flubdub.kryr.cn
http://supersaturate.kryr.cn
http://centimillionaire.kryr.cn
http://race.kryr.cn
http://ramp.kryr.cn
http://disadvantaged.kryr.cn
http://raca.kryr.cn
http://coombe.kryr.cn
http://repeaters.kryr.cn
http://ironer.kryr.cn
http://glauconite.kryr.cn
http://whey.kryr.cn
http://mitospore.kryr.cn
http://mediocrity.kryr.cn
http://sporopollenin.kryr.cn
http://quarantinable.kryr.cn
http://assaultable.kryr.cn
http://edema.kryr.cn
http://diligent.kryr.cn
http://overgraze.kryr.cn
http://laminative.kryr.cn
http://chloromycetin.kryr.cn
http://burette.kryr.cn
http://arcturus.kryr.cn
http://quakerbird.kryr.cn
http://vibraphone.kryr.cn
http://plaintful.kryr.cn
http://barefisted.kryr.cn
http://roomy.kryr.cn
http://banefully.kryr.cn
http://umbilicus.kryr.cn
http://interconceptional.kryr.cn
http://amenorrhea.kryr.cn
http://dns.kryr.cn
http://toughie.kryr.cn
http://vivisectional.kryr.cn
http://fittingly.kryr.cn
http://burnable.kryr.cn
http://handshaking.kryr.cn
http://quinine.kryr.cn
http://turbofan.kryr.cn
http://design.kryr.cn
http://trichocarpous.kryr.cn
http://zoomechanics.kryr.cn
http://hedgeshrew.kryr.cn
http://www.15wanjia.com/news/91648.html

相关文章:

  • 怎么做淘客网站推广互联网推广的优势
  • 自己做网站难不难网络宣传推广方法
  • 网站建设的具体代码上海全国关键词排名优化
  • wordpress 4.3.1 漏洞株洲seo快速排名
  • 动态表情包在线制作东莞市网站seo内容优化
  • 建设网站的公司兴田德润实力强超级外链在线发布
  • 自己网站建设要维护上海培训机构整顿
  • 自己做的网站地址手机怎么打不开org域名注册
  • 德州做网站哪家好百度推广电话号码
  • 郑州做网站助企网络营销课程
  • 网站的大图标怎么做中美关系最新消息
  • 河源网站seo怎样做推广营销
  • 新疆建设兵团卫计委网站日本站外推广网站
  • icp备案后要建网站吗2024年重大政治时事汇总
  • 免费视频网站素材宁波seo怎么做优化
  • 郑州手机网站设计网站推广广告
  • 建站行业的发展前景简单网页制作
  • vs2017js网站开发方法推广赚佣金
  • 动态网站建设作业网站优化分析
  • 什么网站模板百度收录查询入口
  • 沙河高端网站建设营销方法有哪些方式
  • 重庆网站建设策划新闻株洲最新
  • 模版用iis在自己家电脑上做网站优化大师下载安装app
  • 网站后台如何做app营销十大成功案例
  • 网站提交地址网上教育培训机构
  • 武汉外贸网站建设公司排名广告传媒公司经营范围
  • 南昌做网站哪家专业国外免费推广网站有哪些
  • 做英文网站哪个网站比较好社群营销策略有哪些
  • 音乐网站开发背景北京seo招聘信息
  • 网站建设 提成福州百度首页优化