fe6cf0f8a2
Restore static direct connections which may be useful for services running RPC on controllers only and talking to agents via other means (ssh for example). Change-Id: Icbe45978cb4a8ba5db74e5593ea7be23cba3f44e
33 lines
837 B
Bash
Executable File
33 lines
837 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
. tools/functions.sh
|
|
|
|
DATADIR=$(mktemp -d /tmp/OSLOMSG-ZEROMQ.XXXXX)
|
|
trap "clean_exit $DATADIR" EXIT
|
|
|
|
export ZMQ_MATCHMAKER=redis
|
|
export ZMQ_REDIS_PORT=65123
|
|
export ZMQ_IPC_DIR=${DATADIR}
|
|
export ZMQ_USE_PUB_SUB=false
|
|
export ZMQ_USE_ROUTER_PROXY=false
|
|
export ZMQ_USE_ACKS=false
|
|
export ZMQ_USE_DYNAMIC_CONNECTIONS=true
|
|
export TRANSPORT_URL="zmq+${ZMQ_MATCHMAKER}://127.0.0.1:${ZMQ_REDIS_PORT}"
|
|
|
|
cat > ${DATADIR}/zmq.conf <<EOF
|
|
[DEFAULT]
|
|
transport_url=${TRANSPORT_URL}
|
|
[oslo_messaging_zmq]
|
|
rpc_zmq_ipc_dir=${ZMQ_IPC_DIR}
|
|
use_pub_sub=${ZMQ_USE_PUB_SUB}
|
|
use_router_proxy=${ZMQ_USE_ROUTER_PROXY}
|
|
use_dynamic_connections=${ZMQ_USE_DYNAMIC_CONNECTIONS}
|
|
EOF
|
|
|
|
redis-server --port $ZMQ_REDIS_PORT &
|
|
|
|
oslo-messaging-zmq-proxy --debug --url ${TRANSPORT_URL} --config-file ${DATADIR}/zmq.conf > ${DATADIR}/zmq-proxy.log 2>&1 &
|
|
|
|
$*
|