首页 > 其他分享 >RabbitMQ配置文件及环境变量

RabbitMQ配置文件及环境变量

时间:2023-06-05 10:31:50浏览次数:42  
标签:配置文件 Default RABBITMQ will rabbitmq memory RabbitMQ 环境变量


http://www.rabbitmq.com/configure.html

Mechanism

Description

Configuration File(s)

defines server and plugin settings for


Environment Variables

define node name, file and directory locations, runtime flags (taken from the shell, or set in the environment configuration file, rabbitmq-env.conf/rabbitmq-env-conf.bat)

rabbitmqctl

When internal authentication/authorization backend is used, rabbitmqctl is the tool that manages virtual hosts, users and permissions.

rabbitmq-plugins

rabbitmq-plugins is the tool that manages enabled plugins.

Runtime Parameters and Policies

defines cluster-wide settings which can change at run time as well as settings that are convenient to configure for groups of queues (exchanges, etc) such as including optional queue arguments.

验证配置:

可以通过rabbitmqctl environment命令输出当前节点上正在运行的rabbitmq、plugins和libraries已应用的有效配置。应当将配置文件的内容和有效配置结合起来分析,从而更有效地解决问题。

新旧配置文件格式:

在RabbitMQ 3.7.0之前,RabbitMQ配置文件名为rabbitmq.config并使用了Erlang术语配置格式。 新版仍然支持该格式以实现向后兼容性。 建议运行3.7.0或更高版本的用户考虑新的sysctl格式。

新版本更易于生成部署自动化工具,

RabbitMQ配置文件及环境变量_sed

新版本格式

 

RabbitMQ配置文件及环境变量_配置文件_02

旧版本配置文件格式

新格式的配置文件易于用户编辑,也方便自动化生成。与RabbitMQ 3.7.0之前使用的经典配置格式相比,新格式也相对有限。 例如,在配置LDAP支持时,可能需要使用深层嵌套的数据结构来表达所需的配置。 为了满足这种需求,RabbitMQ仍然支持经典的rabbitmq.config配置文件以及同时使用这两种格式的能力(advanced.config)。新版配置文件语法可简要概括为:

  • 单个设置的所有信息都位于同一行
  • 每行的结构为key = value
  • 以#开头的行为注释

一个简单的配置文件示例如下:

listeners.tcp.default = 5673

该配置等同于传统配置文件中的

1. [
2. {rabbit, [
3. {tcp_listeners, [5673]}
4. ]
5. }
6. ].

注意不要将此配置文件和环境变量配置文件rabbitmq-env.conf混淆。要覆盖主RabbitMQ配置文件位置,请使用RABBITMQ_CONFIG_FILE环境变量。 使用.conf作为新样式配置格式的文件扩展名。 

 advanced.config文件

新版中某些配置设置不可用或难以使用sysctl格式进行配置。 因此,可以使用Erlang术语格式的其他配置文件(与rabbitmq.config相同)。 该文件通常名为advanced.config。 它将与rabbitmq.conf中提供的配置合并。

RabbitMQ服务器源存储库包含名为advanced.config.example的advanced.config示例文件。 它侧重于通常使用高级配置设置的选项。要覆盖高级配置文件位置,请使用RABBITMQ_ADVANCED_CONFIG_FILE环境变量。

rabbitmq.config文件(传统格式)

RabbitMQ 3.7.0及更高版本仍支持经典配置文件格式,称为rabbitmq.config。 要使用它,请导出RABBITMQ_CONFIG_FILE以指向扩展名为.config的文件,以指示RabbitMQ应将其视为经典配置格式。

要覆盖RabbitMQ配置文件位置,请使用RABBITMQ_CONFIG_FILE环境变量。 使用.config作为经典配置格式的文件扩展名。

rabbitmq.conf和rabbitmq-env.conf文件位置

默认情况下,它们没有被创建。如果需要创建这些文件,请在以下指定位置创建:

  • Generic UNIX - $RABBITMQ_HOME/etc/rabbitmq/
  • Debian - /etc/rabbitmq/
  • RPM - /etc/rabbitmq/
  • Mac OSX (Homebrew) - ${install_prefix}/etc/rabbitmq/, the Homebrew prefix is usually /usr/local
  • Windows - %APPDATA%\RabbitMQ\

如果rabbitmq-env.conf不存在,则可以在由RABBITMQ_CONF_ENV_FILE变量指定的位置手动创建。 在Windows系统上,它名为rabbitmq-env.bat。

如果rabbitmq.conf不存在,可以手动创建。 如果更改位置,请设置RABBITMQ_CONFIG_FILE环境变量。 RabbitMQ自动将.conf扩展名附加到此变量的值。

更改后重新启动服务器。 添加或删除配置文件后,Windows服务用户需要重新安装该服务。

rabbitmq.conf示例文件

示例文件包括

rabbitmq.conf.example

advanced.config.example

这些文件包含您可能希望设置的大多数配置项的示例(省略了一些非常模糊的配置项),以及这些设置的文档。在这个示例中,所有配置项都被注释掉了,因此您可以取消对所需内容的注释。请注意,示例文件是作为示例使用的,不应将其视为一般建议。

 在大多数发行版中,我们将这个示例文件放置在与实际文件应该放置的位置相同的位置(参见上面)。但是,对于Debian和RPM发行版,策略禁止这样做;相反,您可以分别在/usr/share/doc/rabbitmq-server/或/usr/share/doc/rabbitmq-server-3.7.10/中找到它。

以下内容适用于3.6.X版本

Rabbitmq环境变量

RabbitMQ环境变量名的前缀是RABBITMQ_。一个典型的变量RABBITMQ_var_name的设置如下:

  • 如果定义了shell环境变量RABBITMQ_var_name,则RabbitMQ会使用该环境变量;(优先级最高)
  • 否则,如果在rabbitmq-env.conf中设置了一个名为var_name的变量,则该变量会生效;(优先级次之)
  • 否则,会使用系统的默认配置。(优先级最低)

您不太可能需要设置这些环境变量中的任何一个。如果您有非标准需求,那么RabbitMQ环境变量包括但不限于:

Name

Default

Description

RABBITMQ_NODE_IP_ADDRESS

the empty string - meaning bind to all network interfaces.

Change this if you only want to bind to one network interface. To bind to two or more interfaces, use the tcp_listeners key in rabbitmq.config.

RABBITMQ_NODE_PORT

5672

 

RABBITMQ_DIST_PORT

RABBITMQ_NODE_PORT + 20000

Port used for inter-node and CLI tool communition. Ignored if your config file sets kernel.inet_dist_listen_min or kernel.inet_dist_listen_max keys. See Networking for details.

RABBITMQ_NODENAME

  • Unix*: rabbit@$HOSTNAME
  • Windows: rabbit@%COMPUTERNAME%

The node name should be unique per erlang-node-and-machine combination. To run multiple nodes, see the clustering guide.

RABBITMQ_CONF_ENV_FILE

  • Generic UNIX - $RABBITMQ_HOME/etc/rabbitmq/rabbitmq-env.conf
  • Debian - /etc/rabbitmq/rabbitmq-env.conf
  • RPM - /etc/rabbitmq/rabbitmq-env.conf
  • Mac OS X (Homebrew) - ${install_prefix}/etc/rabbitmq/rabbitmq-env.conf, the Homebrew prefix is usually /usr/local
  • Windows - %APPDATA%\RabbitMQ\rabbitmq-env-conf.bat

Location of the file that contains environment variable definitions (without the RABBITMQ_ prefix). Note that the file name on Windows is different from other operating systems.

RABBITMQ_USE_LONGNAME

 

When set to true this will cause RabbitMQ to use fully qualified names to identify nodes. This may prove useful on EC2. Note that it is not possible to switch between using short and long names without resetting the node.

RABBITMQ_SERVICENAME

Windows Service: RabbitMQ

The name of the installed service. This will appear in services.msc.

RABBITMQ_CONSOLE_LOG

Windows Service:

Set this variable to new or reuse to redirect console output from the server to a file named %RABBITMQ_SERVICENAME%.debug in the default RABBITMQ_BASE directory.


  • If not set, console output from the server will be discarded (default).
  • new A new file will be created each time the service starts.
  • reuse The file will be overwritten each time the service starts.

RABBITMQ_CTL_ERL_ARGS

None

Parameters for the erl command used when invoking rabbitmqctl. This should be overridden for debugging purposes only.调用rabbitmqctl时使用的erl命令的参数。只有在调试时才应该覆盖它。

RABBITMQ_SERVER_ERL_ARGS

  • Unix*: +P 1048576 +t 5000000 +stbt db +zdbbl 32000
  • Windows: None

Standard parameters for the erl command used when invoking the RabbitMQ Server. This should be overridden for debugging purposes only. Overriding this variable replaces the default value.调用RabbitMQ服务器时使用的erl命令的标准参数。只有在调试时才应该覆盖它。覆盖此变量将替换默认值。

RABBITMQ_SERVER_ADDITIONAL_ERL_ARGS

  • Unix*: None
  • Windows: None

Additional parameters for the erl command used when invoking the RabbitMQ Server. The value of this variable is appended the default list of arguments (RABBITMQ_SERVER_ERL_ARGS). This is the environment variable to use if +K true needs to be overwritten.

调用RabbitMQ服务器时使用的erl命令的其他参数。这个变量的值附加了默认参数列表(RABBITMQ_SERVER_ERL_ARGS)。如果+K true需要重写,则使用此环境变量。

RABBITMQ_SERVER_START_ARGS

None

Extra parameters for the erl command used when invoking the RabbitMQ Server. This will not override RABBITMQ_SERVER_ERL_ARGS.

调用RabbitMQ服务器时使用的erl命令的额外参数。这不会覆盖RABBITMQ_SERVER_ERL_ARGS。

* Unix, Linux, MacOSX

此外,还有几个环境变量告诉RabbitMQ在何处定位其数据库、日志文件、插件、配置等。File and Directory Locations

RabbitMQ依赖的其他变量有:

Name

Default

Description

HOSTNAME

  • Unix, Linux: env hostname
  • MacOSX: env hostname -s

The name of the current machine

COMPUTERNAME

Windows: localhost

The name of the current machine

ERLANG_SERVICE_MANAGER_PATH

Windows Service: %ERLANG_HOME%\erts-x.x.x\bin

This path is the location of erlsrv.exe, the Erlang service wrapper script.

rabbitmq.config文件

The configuration file rabbitmq.config allows the RabbitMQ core application, Erlang services and RabbitMQ plugins to be configured. It is a standard Erlang configuration file, documented on the Erlang Config Man Page.

Key

Documentation

tcp_listeners

Ports or hostname/pair on which to listen for AMQP connections (without TLS). See the Networking guide for more details and examples.

Default: [5672]

num_tcp_acceptors

Number of Erlang processes that will accept connections for the TCP listeners.

Default: 10

handshake_timeout

Maximum time for AMQP 0-8/0-9/0-9-1 handshake (after socket connection and SSL handshake), in milliseconds.

Default: 10000

ssl_listeners

As above, for SSL connections.

Default: []

num_ssl_acceptors

Number of Erlang processes that will accept connections for the SSL listeners.

Default: 1

ssl_options

SSL configuration. See the SSL documentation.

Default: []

ssl_handshake_timeout

SSL handshake timeout, in milliseconds.

Default: 5000

vm_memory_high_watermark

Memory threshold at which the flow control is triggered. See the memory-based flow control documentation.

Default: 0.4

vm_memory_calculation_strategy

Strategy for memory usage reporting. Can be one of the following:


  • allocated: uses Erlang memory allocator statistics
  • rss: uses operating system RSS memory reporting. This uses OS-specific means and may start short lived child processes.
  • legacy: uses legacy memory reporting (how much memory is considered to be used by the runtime). This strategy is fairly inaccurate.
  • erlang: same as legacy, preserved for backwards compatibility

Default: allocated

vm_memory_high_watermark_paging_ratio

Fraction of the high watermark limit at which queues start to page messages out to disc to free up memory. See the memory-based flow control documentation.

Default: 0.5

total_memory_available_override_value

Makes it possible to override the total amount of memory available, as opposed to inferring it from the environment using OS-specific means. This should only be used when actual maximum amount of RAM available to the node doesn't match the value that will be inferred by the node, e.g. due to containerization or similar constraints the node cannot be aware of. The value may be set to an integer number of bytes or, alternatively, in information units (e.g "8GB"). For example, when the value is set to 4 GB, the node will believe it is running on a machine with 4 GB of RAM.

Default: undefined (not used)

使重写可用内存总量成为可能,而不是使用特定于os的方法从环境中推断可用内存总量。只有当节点可用RAM的实际最大数量与节点推断出的值不匹配时,才应该使用这种方法,例如,由于容器化或节点不知道的类似约束。该值可以设置为整数字节数,也可以设置为信息单元(e.g "8GB")。例如,当该值设置为4GB时,节点将认为它运行在一台具有4GB RAM的机器上。

disk_free_limit

Disk free space limit of the partition on which RabbitMQ is storing data. When available disk space falls below this limit, flow control is triggered. The value may be set relative to the total amount of RAM (e.g. {mem_relative, 1.0}). The value may also be set to an integer number of bytes. Or, alternatively, in information units (e.g "50MB"). By default free disk space must exceed 50MB. See the Disk Alarms documentation.

Default: 50000000

log_levels

Controls the granularity(粒度) of logging. The value is a list of log event category and log level pairs.

The level can be one of 'none' (no events are logged), 'error' (only errors are logged), 'warning' (only errors and warning are logged), 'info' (errors, warnings and informational messages are logged), or 'debug' (errors, warnings, informational messages and debugging messages are logged).

At present there are four categories defined. Other, currently uncategorised, events are always logged.

The categories are:

  • channel - for all events relating to AMQP channels
  • connection - for all events relating to network connections
  • federation - for all events relating to federation
  • mirroring - for all events relating to mirrored queues

Default: [{connection, info}]

frame_max

Maximum permissible size of a frame (in bytes) to negotiate with clients. Setting to 0 means "unlimited" but will trigger a bug in some QPid clients. Setting a larger value may improve throughput; setting a smaller value may improve latency.

Default: 131072

channel_max

Maximum permissible number of channels to negotiate with clients. Setting to 0 means "unlimited". Using more channels increases memory footprint of the broker.

Default: 0

channel_operation_timeout

Channel operation timeout in milliseconds (used internally, not directly exposed to clients due to messaging protocol differences and limitations).

Default: 15000

heartbeat

Value representing the heartbeat delay, in seconds, that the server sends in the connection.tune frame. If set to 0, heartbeats are disabled. Clients might not follow the server suggestion, see the AMQP reference for more details. Disabling heartbeats might improve performance in situations with a great number of connections, but might lead to connections dropping in the presence of network devices that close inactive connections.

Default: 60 (580 prior to release 3.5.5)

default_vhost

Virtual host to create when RabbitMQ creates a new database from scratch. The exchange amq.rabbitmq.log will exist in this virtual host.

Default: <<"/">>

default_user

User name to create when RabbitMQ creates a new database from scratch.

Default: <<"guest">>

default_pass

Password for the default user.

Default: <<"guest">>

default_user_tags

Tags for the default user.

Default: [administrator]

default_permissions

Permissions to assign to the default user when creating it.

Default: [<<".*">>, <<".*">>, <<".*">>]

loopback_users

List of users which are only permitted to connect to the broker via a loopback interface (i.e. localhost).

If you wish to allow the default guest user to connect remotely, you need to change this to [].

Default: [<<"guest">>]

cluster_nodes

Set this to cause clustering to happen automatically when a node starts for the very first time. The first element of the tuple is the nodes that the node will try to cluster to. The second element is either disc or ram and determines the node type.

Default: {[], disc}

server_properties

List of key-value pairs to announce to clients on connection.

Default: []

collect_statistics

Statistics collection mode. Primarily relevant for the management plugin. Options are:


  • none (do not emit statistics events)
  • coarse (emit per-queue / per-channel / per-connection statistics)
  • fine (also emit per-message statistics)

You probably don't want to change this yourself.

Default: none

collect_statistics_interval

Statistics collection interval in milliseconds. Primarily relevant for the management plugin.

Default: 5000

management_db_cache_multiplier

Affects the amount of time the management plugin will cache expensive management queries such as queue listings. The cache will multiply the elapsed time of the last query by this value and cache the result for this amount of time.

Default: 5

auth_mechanisms

SASL authentication mechanisms to offer to clients.向客户端提供的SASL身份验证机制。

Default: ['PLAIN', 'AMQPLAIN']

auth_backends

List of authentication and authorisation backends to use.要使用的身份验证和授权后端列表。

Other databases than rabbit_auth_backend_internal are available through pluginsrabbit_auth_backend_internal之外的其他数据库可以通过插件获得。

Default: [rabbit_auth_backend_internal]

reverse_dns_lookups

Set to true to have RabbitMQ perform a reverse DNS lookup on client connections, and present that information through rabbitmqctl and the management plugin.

设置为true,使RabbitMQ对客户端连接执行反向DNS查询,并通过rabbitmqctl和管理插件显示该信息。

Default: false

delegate_count

Number of delegate processes to use for intra-cluster communication. On a machine which has a very large number of cores and is also part of a cluster, you may wish to increase this value.

Default: 16

trace_vhosts

Used internally by the tracer. You shouldn't change this.

Default: []

tcp_listen_options

Default socket options. You probably don't want to change this.

Default:


 



  1. [{backlog, 128},
  2. {nodelay, true},
  3. {linger, {true,0}},
  4. {exit_on_close, false}]

 

hipe_compile

Set to true to precompile parts of RabbitMQ with HiPE, a just-in-time compiler for Erlang. This will increase server throughput at the cost of increased startup time.

You might see 20-50% better performance at the cost of a few minutes delay at startup. These figures are highly workload- and hardware-dependent.

HiPE support may not be compiled into your Erlang installation. If it is not, enabling this option will just cause a warning message to be displayed and startup will proceed as normal. For example, Debian / Ubuntu users will need to install the erlang-base-hipe package.

HiPE is not available at all on some platforms, notably including Windows.

HiPE has known issues in Erlang/OTP versions prior to 17.5. Using a recent Erlang/OTP version is highly recommended for HiPE.

Default: false

cluster_partition_handling

How to handle network partitions. Available modes are:


  • ignore
  • pause_minority
  • {pause_if_all_down, [nodes], ignore | autoheal} where [nodes] is a list of node names
    (ex: ['rabbit@node1', 'rabbit@node2'])
  • autoheal

See the documentation on partitions for more information.

Default: ignore

cluster_keepalive_interval

How frequently nodes should send keepalive messages to other nodes (in milliseconds). Note that this is not the same thing as net_ticktime; missed keepalive messages will not cause nodes to be considered down.

Default: 10000

queue_index_embed_msgs_below

Size in bytes of message below which messages will be embedded directly in the queue index. You are advised to read the persisteSet to true to precompile parts of RabbitMQ with HiPE, a just-in-time compiler for Erlang. This will increase server throughput at the cost of increased startup time.

You might see 20-50% better performance at the cost of a few minutes delay at startup. These figures are highly workload- and hardware-dependent.

HiPE support may not be compiled into your Erlang installation. If it is not, enabling this option will just cause a warning message to be displayed and startup will proceed as normal. For example, Debian / Ubuntu users will need to install the erlang-base-hipe package.

HiPE is not available at all on some platforms, notably including Windows.

HiPE has known issues in Erlang/OTP versions prior to 17.5. Using a recent Erlang/OTP version is highly recommended for HiPE.

r tuning documentation before changing this.

Default: 4096

msg_store_index_module

Implementation module for queue indexing. You are advised to read the persister tuning documentation before changing this.

Default: rabbit_msg_store_ets_index

backing_queue_module

Implementation module for queue contents. You probably don't want to change this.

Default: rabbit_variable_queue

msg_store_file_size_limit

Tunable value for the persister. You almost certainly should not change this.

Default: 16777216

msg_store_credit_disc_bound

The credits that a queue process is given by the message store.

By default, a queue process is given 4000 message store credits, and then 800 for every 800 messages that it processes.

Messages which need to be paged out due to memory pressure will also use this credit.

The Message Store is the last component in the credit flow chain. message store是credit flow链中最后一部分。 Learn about credit flow.

This value only takes effect when messages are persisted to the message store. If messages are embedded on the queue index, then modifying this setting has no effect because credit_flow is NOT used when writing to the queue index.此值仅在将消息持久化到message store时生效。如果消息嵌入到队列索引中,则修改此设置没有效果,因为写入队列索引时不使用credit_flow。

Default: {4000, 800}

mnesia_table_loading_retry_limit

Number of times to retry while waiting for Mnesia tables in a cluster to become available.

Default: 10

mnesia_table_loading_retry_timeout

Time to wait per retry for Mnesia tables in a cluster to become available.

Default: 30000

queue_index_max_ journal_entries

Tunable value for the persister. You almost certainly should not change this.

Default: 65536

queue_master_locator

Queue master location strategy. Available strategies are:


  • <<"min-masters">>
  • <<"client-local">>
  • <<"random">>

See the documentation on queue master location for more information.

Default: <<"client-local">>

mirroring_sync_batch_size

Batch size of messages to synchronise between queue mirrors See Batch Synchronization

要在队列镜像之间同步的消息的批处理大小,请参见批处理同步

Default: 4096

lazy_queue_explicit_ gc_run_operation_threshold

Tunable value only for lazy queues when under memory pressure. This is the threshold at which the garbage collector and other memory reduction activities are triggered. A low value could reduce performance, and a high one can improve performance, but cause higher memory consumption. You almost certainly should not change this.

Default: 1000

queue_explicit_ gc_run_operation_threshold

Tunable value only for normal queues when under memory pressure. This is the threshold at which the garbage collector and other memory reduction activities are triggered. A low value could reduce performance, and a high one can improve performance, but cause higher memory consumption. You almost certainly should not change this.

Default: 1000

 此外,许多插件可以在配置文件中使用表单rabbitmq_plugin的名称部分。我们维护的插件记录在以下位置:

配置加密

可以在RabbitMQ配置文件中加密敏感的配置项(例如密码、包含凭证的URL)。Brokers在开始时解密加密的条目。请注意,加密的配置条目并不能使系统更加安全。尽管如此,它们允许RabbitMQ的部署符合各国的规定,即配置文件中不应出现纯文本形式的敏感数据。

标签:配置文件,Default,RABBITMQ,will,rabbitmq,memory,RabbitMQ,环境变量
From: https://blog.51cto.com/chengzheng183/6413542

相关文章

  • 每日记录(Android_AndroidManifest.xml配置文件)
    AndroidManifest.xml配置文件对于Android应用开发来说是非常重要的基础知识,本文旨在总结该配置文件中重点的用法,以便日后查阅。下面是一个标准的AndroidManifest.xml文件样例。<?xmlversion="1.0"encoding="utf-8"?><manifest><!--基本配置--><uses-permission/>......
  • 每日记录(每日记录(Android_AndroidManifest.xml配置文件) 二)
    <uses-library>用于指定Android应用可使用的用户库,除了系统自带的android.app、android.content、android.view和android.widget这些默认类库之外,有些应用可能还需要一些其他的Java类库作为支持,这种情况下我们就可以使用<uses-library>标签让ClassLoader加载其类库供Android应用......
  • 每日记录(每日记录(Android_AndroidManifest.xml配置文件) 三)
    <service>Service服务组件的声明标签,用于定义与描述一个具体的Android服务,主要属性有:Service服务类名android:name,服务图标android:icon,服务描述android:label以及服务开关android:enabled等。关于Service服务组件的概念和用法请参考2.1.4.2节的内容,以下是<service>标签的语法范......
  • RabbitMQ
    一、消息队列介绍MQ的全称是MessageQueue——消息队列。MQ是一种应用程序对应用程序的通信方法。MQ是消费者-生产者模型的一个典型的代表,一端往消息队列中不断写入消息,而另一端则可以读取队列中的消息。这样发布者和使用者都不用知道对方的存在。生产者-消费者模式是通过一......
  • 基于2.8版本redis配置文件中文解释
        在Redis中直接启动redis-server服务时,采用的是默认的配置文件。采用redis-server xxx.conf这样的方式可以按照指定的配置文件来运行Redis服务。下面是Redis2.8.9的配置文件各项的中文解释。1#daemonizeno默认情况下,redis不是在后台运行的,如果需要在后台运......
  • 3. 核心配置文件详解
    <?xmlversion="1.0"encoding="UTF-8"?><!DOCTYPEconfigurationPUBLIC"-//mybatis.org//DTDConfig3.0//EN""http://mybatis.org/dtd/mybatis-3-config.dtd"><configuration><p......
  • 3. 核心配置文件详解
    <?xmlversion="1.0"encoding="UTF-8"?><!DOCTYPEconfigurationPUBLIC"-//mybatis.org//DTDConfig3.0//EN""http://mybatis.org/dtd/mybatis-3-config.dtd"><configuration><p......
  • J2EE环境变量的其他使用方式
    [color=red]1.[b]System.getProperty()获取tomcat自定义变量[/b][/color][url]http://zwxiaole.iteye.com/blog/1832053[/url]环境tomcat集群有一个定时器为了防止所有集群的服务器都跑定时而出错选择其中一台服务器修改tomcatbin目录下的windows......
  • winform中使用yaml配置文件
    1、引入nuget包NetEscapades.Configuration.YamlMicrosoft.Extensions.Configuration.Binder引入上面两个包2、新增yaml文件可以新增到目录中,也可以放在根目录,我这边新增到了Conf文件夹中。创建一个Conf文件夹,然后里面创建一个myconfig.yaml文件。......
  • RabbitMQ
    https://blog.csdn.net/qq_35387940/article/details/100514134RabbitMQ概简介大多应用中,可通过消息服务中间件来提升系统异步通信、扩展解耦能力。消息的发送者和接收者不需要同时与消息队列交互。消息会保存在队列中,知道接收者取回它。Producer:消息生产者,负责生产和发送消......