blob: c6bf4c9967938c3e3bbc775c1aff10ecdde65a28 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
[
{ type: install
message: <<EOM
This port requires additional configuration before it can be used.
The MySQL database schema must be loaded:
cd %%PREFIX%%/share/razorback/
mysql
create database razorback;
use razorback;
source razorback.sql;
source razorback-with-data.sql;
There are two modifications that need to be made. The first is to
edit the activemq.xml file %%ACTIVEMQ_LOCATION%%
%%ACTIVEMQ_CONFIG%%
ActiveMQ's configuration must be updated:
In the transportConnectors property, the entry needs to look like
the following:
<transportConnectors>
<transportConnector name="openwire" uri="tcp://0.0.0.0:61616"/>
<transportConnector name="stomp" uri="stomp://0.0.0.0:61612?transport.closeAsync=false"/>
<transportConnector name="stomp+nio" uri="stomp+nio://0.0.0.0:61613?transport.closeAsync=false"/>
</transportConnectors>
Note: If activemq is running on the same system as the dispatcher,
it is advised that you use 127.0.0.1 instead of 0.0.0.0.
The razorback dispatcher's configuration must be created and
customized:
cp rzb.conf.sample rzb.conf
cp magic.sample magic
cp dispatcher.conf.sample dispatcher.conf
EOM
}
]
|