| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Insert rows into the masterpair and node tables for the IP addresses of the two nodes and the read and write IP addresses that you will be moving between the nodes. See ip, read_ip, write_ip.
INSERT INTO masterpair
(masterpair, name, value)
VALUES
('<masterpair name>', 'read_ip', '<read ip>'),
('<masterpair name>', 'write_ip', '<write ip>');
INSERT INTO node
(masterpair, node, name, value)
VALUES
('<masterpair name>', '<node 1 name>', 'ip', '<node 1 ip>'),
('<masterpair name>', '<node 2 name>', 'ip', '<node 2 ip>');
|
You'll also need to insert a row into the masterpair table for the netmask of the network containing the nodes. See netmask.
INSERT INTO masterpair
(masterpair, name, value)
VALUES
('<masterpair name>', 'netmask', '<network netmask>');
|