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 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462
|
<?xml version="1.0" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>bucardo - utility script for controlling the Bucardo program</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
</head>
<body style="background-color: white">
<!-- INDEX BEGIN -->
<div name="index">
<p><a name="__index__"></a></p>
<ul>
<li><a href="#name">NAME</a></li>
<li><a href="#version">VERSION</a></li>
<li><a href="#usage">USAGE</a></li>
<li><a href="#description">DESCRIPTION</a></li>
<li><a href="#commands">COMMANDS</a></li>
<li><a href="#options">OPTIONS</a></li>
<li><a href="#command_details">COMMAND DETAILS</a></li>
<ul>
<li><a href="#install">install</a></li>
<li><a href="#upgrade">upgrade</a></li>
<li><a href="#start">start</a></li>
<li><a href="#stop">stop</a></li>
<li><a href="#restart">restart</a></li>
<li><a href="#list">list</a></li>
<li><a href="#add">add</a></li>
<ul>
<li><a href="#add_db">add db</a></li>
<li><a href="#add_dbgroup">add dbgroup</a></li>
<li><a href="#add_table">add table</a></li>
<li><a href="#add_sequence">add sequence</a></li>
<li><a href="#add_all_tables">add all tables</a></li>
<li><a href="#add_all_sequences">add all sequences</a></li>
<li><a href="#add_relgroup">add relgroup</a></li>
<li><a href="#add_sync">add sync</a></li>
<li><a href="#add_customname">add customname</a></li>
<li><a href="#add_customcols">add customcols</a></li>
<li><a href="#add_customcode">add customcode</a></li>
</ul>
<li><a href="#update">update</a></li>
<ul>
<li><a href="#update_customcode">update customcode</a></li>
<li><a href="#update_db">update db</a></li>
<li><a href="#update_sync">update sync</a></li>
<li><a href="#update_table">update table</a></li>
<li><a href="#update_sequence">update sequence</a></li>
</ul>
<li><a href="#remove">remove</a></li>
<li><a href="#kick">kick</a></li>
<li><a href="#pause">pause</a></li>
<li><a href="#reload_config">reload config</a></li>
<li><a href="#set">set</a></li>
<li><a href="#show">show</a></li>
<li><a href="#config">config</a></li>
<li><a href="#ping">ping</a></li>
<li><a href="#status">status</a></li>
<li><a href="#activate">activate</a></li>
<li><a href="#deactivate">deactivate</a></li>
<li><a href="#message">message</a></li>
<li><a href="#reload">reload</a></li>
<li><a href="#inspect">inspect</a></li>
<li><a href="#validate">validate</a></li>
<li><a href="#purge">purge</a></li>
<li><a href="#help">help</a></li>
</ul>
<li><a href="#options_details">OPTIONS DETAILS</a></li>
<li><a href="#files">FILES</a></li>
<li><a href="#environment_variables">ENVIRONMENT VARIABLES</a></li>
<li><a href="#bugs">BUGS</a></li>
<li><a href="#see_also">SEE ALSO</a></li>
<li><a href="#copyright">COPYRIGHT</a></li>
</ul>
<hr name="index" />
</div>
<!-- INDEX END -->
<p>
</p>
<h1><a name="name">NAME</a></h1>
<p>bucardo - utility script for controlling the Bucardo program</p>
<p>
</p>
<hr />
<h1><a name="version">VERSION</a></h1>
<p>This document describes version 5.1.2 of bucardo</p>
<p>
</p>
<hr />
<h1><a name="usage">USAGE</a></h1>
<pre>
bucardo [<options>] <command> [<action>] [<command-options>] [<command-params>]</pre>
<p>
</p>
<hr />
<h1><a name="description">DESCRIPTION</a></h1>
<p>The bucardo script is the main interaction to a running Bucardo instance. It
can be used to start and stop Bucardo, add new items, kick syncs, and even
install and upgrade Bucardo itself. For more complete documentation, please
view <em>the wiki</em>.</p>
<p>
</p>
<hr />
<h1><a name="commands">COMMANDS</a></h1>
<p>Run <code>bucardo help <command></code> for additional details</p>
<dl>
<dt><strong><a name="install" class="item"><code>install</code></a></strong></dt>
<dd>
<p>Installs the Bucardo configuration database.</p>
</dd>
<dt><strong><a name="upgrade" class="item"><code>upgrade</code></a></strong></dt>
<dd>
<p>Upgrades the Bucardo configuration database to the latest schema.</p>
</dd>
<dt><strong><a name="start_start_options_reason" class="item"><code>start [<start options>] [<reason>]</code></a></strong></dt>
<dd>
<p>Starts Bucardo.</p>
</dd>
<dt><strong><a name="stop_reason" class="item"><code>stop [<reason>]</code></a></strong></dt>
<dd>
<p>Stops Bucardo.</p>
</dd>
<dt><strong><a name="restart_start_options_reason" class="item"><code>restart [<start options>] [<reason>]</code></a></strong></dt>
<dd>
<p>Stops and starts Bucardo.</p>
</dd>
<dt><strong><a name="list_type_regex" class="item"><code>list <type> [<regex>]</code></a></strong></dt>
<dd>
<p>Lists objects managed by Bucardo.</p>
</dd>
<dt><strong><a name="add_type_name_parameters" class="item"><code>add <type> <name> <parameters></code></a></strong></dt>
<dd>
<p>Adds a new object.</p>
</dd>
<dt><strong><a name="update_type_name_parameters" class="item"><code>update <type> <name> <parameters></code></a></strong></dt>
<dd>
<p>Updates an object.</p>
</dd>
<dt><strong><a name="remove_type_name_name" class="item"><code>remove <type> <name> [<name>...]</code></a></strong></dt>
<dd>
<p>Removes one or more objects.</p>
</dd>
<dt><strong><a name="kick_syncname_sync_options_syncname_timeout" class="item"><code>kick <syncname> [<sync options>] [<syncname>...] [<timeout>]</code></a></strong></dt>
<dd>
<p>Kicks off one or more syncs.</p>
</dd>
<dt><strong><a name="reload_config" class="item"><code>reload config</code></a></strong></dt>
<dd>
<p>Sends a message to all CTL and KID processes asking them to reload the Bucardo
configuration.</p>
</dd>
<dt><strong><a name="reopen" class="item"><code>reopen</code></a></strong></dt>
<dd>
<p>Sends a message to all Bucardo processes asking them to reopen any log files
they may have open. Call this after you have rotated the log file(s).</p>
</dd>
<dt><strong><a name="show_all_setting_setting" class="item"><code>show all|<setting> [<setting>...]</code></a></strong></dt>
<dd>
<p>Shows the current Bucardo settings.</p>
</dd>
<dt><strong><a name="set_setting_value_setting_value" class="item"><code><set <setting=value</code> [<setting=value>...] >></a></strong></dt>
<dd>
<p>Sets one or more configuration setting..</p>
</dd>
<dt><strong><a name="ping_timeout" class="item"><code>ping [<timeout>]</code></a></strong></dt>
<dd>
<p>Sends a ping notice to the MCP process to see if it will respond.</p>
</dd>
<dt><strong><a name="status_status_options_syncname_syncname" class="item"><code>status [<status options>] <syncname> [<syncname>...]</code></a></strong></dt>
<dd>
<p>Shows the brief status of syncs in a tabular format.</p>
</dd>
<dt><strong><a name="activate_syncname_syncname_timeout" class="item"><code>activate <syncname> [<syncname>...] [<timeout>]</code></a></strong></dt>
<dd>
<p>Activates one or more named syncs.</p>
</dd>
<dt><strong><a name="deactivate_syncname_syncname_timeout" class="item"><code>deactivate <syncname> [<syncname>...] [<timeout>]</code></a></strong></dt>
<dd>
<p>Deactivates one or more named syncs.</p>
</dd>
<dt><strong><a name="message_body" class="item"><code>message <body></code></a></strong></dt>
<dd>
<p>Sends a message to the running Bucardo logs.</p>
</dd>
<dt><strong><a name="reload_syncname_syncname" class="item"><code>reload [<syncname> [<syncname>...]]</code></a></strong></dt>
<dd>
<p>Sends a message to one or more sync processes, instructing them to reload.</p>
</dd>
<dt><strong><a name="inspect_type_name_name" class="item"><code>inspect <type> <name> [<name>...]</code></a></strong></dt>
<dd>
<p>Inspects one or more objects of a particular type.</p>
</dd>
<dt><strong><a name="validate_all_syncname_syncname" class="item"><code>validate all|<syncname> [<syncname>...]</code></a></strong></dt>
<dd>
<p>Validates one or more syncs.</p>
</dd>
<dt><strong><a name="purge_all_table_table" class="item"><code>purge all|<table> [<table>...]</code></a></strong></dt>
<dd>
<p>Purges the delta and track tables for one or more tables, for one or more
databases.</p>
</dd>
<dt><strong><a name="help_command_action" class="item"><code>help [<command> [<action>]]</code></a></strong></dt>
<dd>
<p>Shows help.</p>
</dd>
</dl>
<p>
</p>
<hr />
<h1><a name="options">OPTIONS</a></h1>
<pre>
-d --db-name NAME Database name.
-U --db-user USER Database user name.
-P --db-pass PASS Database password.
-h --db-host HOST Database server host name.
-p --db-port PORT Database server port number.
--bucardorc FILE Use specified .bucarorc file.
--no-bucardorc Do not use .bucardorc file.
--quiet Incremental quiet.
--verbose Incremental verbose mode.
-? --help Output basic help and exit.
--version Print the version number and exit.</pre>
<p>
</p>
<hr />
<h1><a name="command_details">COMMAND DETAILS</a></h1>
<p>Most of the commands take parameters. These may be passed after the command
name and, where appropriate, an object name. Parameters take the form of
key/value pairs separated by an equal sign (<code>=</code>). For example:</p>
<pre>
bucardo add db sea_widgets dbname=widgets host=db.example.com</pre>
<p>Here <a href="#dbname"><code>dbname</code></a> and <host> are parameters.</p>
<p>Many of the commands also use command-line options, which are specified in the
normal way. For example, the <code>bucardo add db</code> command could also be written
as:</p>
<pre>
bucardo add db sea_widgets --dbname widgets --dbhost db.example.com</pre>
<p>However, parameters and options are not directly interchangeable in all cases.
See the documentation for individual commands for their supported options.</p>
<p>
</p>
<h2><a name="install">install</a></h2>
<pre>
bucardo install</pre>
<p>Installs the Bucardo schema from the file <em class="file">bucardo.schema</em> into an existing Postgres cluster.
The user "bucardo" and database "bucardo" will be created first as needed. This is an
interactive installer, but you can supply the following values from the command line:</p>
<dl>
<dt><strong><a name="dbuser" class="item"><code>--dbuser</code></a></strong></dt>
<dd>
<p>defaults to postgres</p>
</dd>
<dt><strong><a name="dbname" class="item"><code>--dbname</code></a></strong></dt>
<dd>
<p>defaults to postgres</p>
</dd>
<dt><strong><a name="dbport" class="item"><code>--dbport</code></a></strong></dt>
<dd>
<p>defaults to 5432</p>
</dd>
<dt><strong><a name="pid_dir" class="item"><code>--pid-dir</code></a></strong></dt>
<dd>
<p>defaults to /var/run/bucardo/</p>
</dd>
</dl>
<p>
</p>
<h2><a name="upgrade">upgrade</a></h2>
<pre>
bucardo upgrade</pre>
<p>Upgrades an existing Bucardo installation to the current version of the bucardo database
script. Requires that bucardo and the <em class="file">bucardo.schema</em> file be the same version. All
changes should be backwards compatible, but you may need to re-validate existing scripts
to make sure changes get propagated to all databases.</p>
<p>
</p>
<h2><a name="start">start</a></h2>
<pre>
bucardo start "Reason"</pre>
<p>Starts Bucardo. Fails if the MCP process is running (determined if its PID file is present).
Otherwise, starts cleanly by first issuing the equivalent of a stop to ask any existing Bucardo
processes to exit, and then starting a new Bucardo MCP process. A short reason and name should
be provided - these are written to the <a href="#reason_file"><code>reason_file</code></a> file (<em class="file">./bucardo.restart.reason.txt</em> by
default) and sent in the email sent when Bucardo has been started up. It is also appended to
the reason log, which has the same name as the the <a href="#reason_file"><code>reason_file</code></a> but ends in <em class="file">.log</em>.</p>
<p>The options for the <code>start</code> command are:</p>
<dl>
<dt><strong><a name="sendmail" class="item"><code>--sendmail</code></a></strong></dt>
<dd>
<p>Tells Bucardo whether or not to send mail on interesting events: startup,
shutdown, and errors. Default is on.</p>
</dd>
<dt><strong><a name="extra_name_string" class="item"><code>--extra-name string</code></a></strong></dt>
<dd>
<p>A short string that will be appended to the version string as output by the
Bucardo process names. Mostly useful for debugging.</p>
</dd>
<dt><strong><a name="log_destination_destination" class="item"><code>--log-destination destination</code></a></strong></dt>
<dd>
<p>Determines the destination for logging output. The supported values are:</p>
<dl>
<dt><strong><a name="stderr" class="item"><code>stderr</code></a></strong></dt>
<dt><strong><a name="stdout" class="item"><code>stdout</code></a></strong></dt>
<dt><strong><a name="syslog" class="item"><code>syslog</code></a></strong></dt>
<dt><strong><a name="none" class="item"><code>none</code></a></strong></dt>
<dt><strong><a name="a_file_system_directory" class="item">A file system directory.</a></strong></dt>
</dl>
<p>May be specified more than once, which is useful for, e.g., logging both to a
directory and to syslog. If <code>--log-destination</code> is not specified at all, the
default is to log to files in <em class="file">/var/log/bucardo</em>.</p>
</dd>
<dt><strong><a name="log_separate" class="item"><code>--log-separate</code></a></strong></dt>
<dd>
<p>Forces creation of separate log files for each Bucardo process of the form
"log.bucardo.X.Y", where X is the type of process (MCP, CTL, or KID), and Y is
the process ID.</p>
</dd>
<dt><strong><a name="log_extension_string" class="item"><code>--log-extension string</code></a></strong></dt>
<dd>
<p>Appends the given string to the end of the default log file name,
<em class="file">log.bucardo</em>. A dot is added before the name as well, so a log extension of
"rootdb" would produce a log file named <em class="file">log.bucardo.rootdb</em>.</p>
</dd>
<dt><strong><a name="log_clean" class="item"><code>--log-clean</code></a></strong></dt>
<dd>
<p>Forces removal of all old log files before running.</p>
</dd>
<dt><strong><a name="debug" class="item"><code>--debug</code></a></strong></dt>
<dt><strong><a name="no_debug" class="item"><code>--no-debug</code></a></strong></dt>
<dd>
<p>Enable or disable debugging output. Disabled by default.</p>
</dd>
<dt><strong><a name="exit_on_nosync" class="item"><code>--exit-on-nosync</code></a></strong></dt>
<dt><strong><a name="no_exit_on_nosync" class="item"><code>--no-exit-on-nosync</code></a></strong></dt>
<dd>
<p>On startup, if Bucardo finds no active syncs, it normally will continue to
run, requiring a restart once syncs are added. This is useful for startup
scripts and whatnot.</p>
<p>If, however, you want it to exit when there are no active syncs, pass the
<a href="#exit_on_nosync"><code>--exit-on-nosync</code></a> option. You can also be explicit that it should <em>not</em>
exit when there are no syncs by passing <a href="#no_exit_on_nosync"><code>--no-exit-on-nosync</code></a>. This is the
default value.</p>
</dd>
</dl>
<p>
</p>
<h2><a name="stop">stop</a></h2>
<pre>
bucardo stop "Reason"</pre>
<p>Forces Bucardo to quit by creating a stop file which all MCP, CTL, and KID processes should
detect and cause them to exit. Note that active syncs will not exit right away, as they
will not look for the stop file until they have finished their current run. Typically,
you should scan the list of processes after running this program to make sure that all Bucardo
processes have stopped. One should also provide a reason for issuing the stop - usually
this is a short explanation and your name. This is written to the <a href="#reason_file"><code>reason_file</code></a> file
(<em class="file">./bucardo.restart.reason.txt</em> by default) and is also used by Bucardo when it exits and
sends out mail about its death. It is also appended to the reason log, which has the same name
as the the <a href="#reason_file"><code>reason_file</code></a> but ends in <em class="file">.log</em>.</p>
<p>
</p>
<h2><a name="restart">restart</a></h2>
<pre>
bucardo restart "Reason"</pre>
<p>Stops bucardo, waits for the stop to complete, and then starts it again.
Supports the same options as <<code>start</code>/start>. Useful for start scripts. For
getting just CTL and KID processes to recognize newly added, updated, or
removed objects, use the <code>reload</code> command, instead.</p>
<p>
</p>
<h2><a name="list">list</a></h2>
<pre>
bucardo list <type> <regex></pre>
<p>Lists summary information about Bucardo objects. The supported types are:</p>
<ul>
<li><strong><a name="database" class="item"><code>database</code></a></strong>
</li>
<li><strong><a name="dbgroup" class="item"><code>dbgroup</code></a></strong>
</li>
<li><strong><a name="relgroup" class="item"><code>relgroup</code></a></strong>
</li>
<li><strong><a name="sync" class="item"><code>sync</code></a></strong>
</li>
<li><strong><a name="table" class="item"><code>table</code></a></strong>
</li>
<li><strong><a name="sequence" class="item"><code>sequence</code></a></strong>
</li>
<li><strong><a name="customcode" class="item"><code>customcode</code></a></strong>
</li>
<li><strong><a name="customname" class="item"><code>customname</code></a></strong>
</li>
<li><strong><a name="customcols" class="item"><code>customcols</code></a></strong>
</li>
<li><strong><a name="all" class="item"><code>all</code></a></strong>
</li>
</ul>
<p>The <a href="#all"><code>all</code></a> option will list information about all object types.</p>
<p>The optional <code>regex</code> option can be used to filter the list to only those
matching a regular expression.</p>
<p>Aliases:</p>
<dl>
<dt><strong><a name="l" class="item"><code>l</code></a></strong></dt>
<dt><strong><a name="lsit" class="item"><code>lsit</code></a></strong></dt>
<dt><strong><a name="liast" class="item"><code>liast</code></a></strong></dt>
<dt><strong><a name="lisy" class="item"><code>lisy</code></a></strong></dt>
<dt><strong><a name="lit" class="item"><code>lit</code></a></strong></dt>
</dl>
<p>
</p>
<h2><a name="add">add</a></h2>
<pre>
bucardo add <type> <name> <parameters></pre>
<p>Adds a new object to Bucardo. The <a href="#type"><code>type</code></a> specifies the type of object to add,
while the <a href="#name"><code>name</code></a> should be the name of the object. The supported types
include:</p>
<dl>
<dt><strong><a name="db" class="item"><code>db</code></a></strong></dt>
<dt><strong><code>dbgroup</code></strong></dt>
<dt><strong><code>table</code></strong></dt>
<dt><strong><code>sequence</code></strong></dt>
<dt><strong><a name="all_tables" class="item"><code>all tables</code></a></strong></dt>
<dt><strong><a name="all_sequences" class="item"><code>all sequences</code></a></strong></dt>
<dt><strong><code>relgroup</code></strong></dt>
<dt><strong><code>sync</code></strong></dt>
<dt><strong><code>customname</code></strong></dt>
<dt><strong><code>customcols</code></strong></dt>
</dl>
<p>
</p>
<h3><a name="add_db">add db</a></h3>
<pre>
bucardo add db <name> dbname=actual_name port=xxx host=xxx user=xxx pass=xxx</pre>
<p>Adds one or more new databases. The <a href="#name"><code>name</code></a> is the name by which the database will be
known to Bucardo, and must be unique. This may vary from the actual database
name, as multiple hosts might have databases with the same name. Multiple databases
can be added by separating the names with commas. Options that differ between the
databases should be separated by a matching commas. Example:</p>
<pre>
bucardo add db alpha,beta dbname=sales host=aa,bb user=bucardo</pre>
<p>The supported named parameters are:</p>
<dl>
<dt><strong><code>dbname</code></strong></dt>
<dt><strong><code>db</code></strong></dt>
<dd>
<p>The actual name of the database. Required.</p>
</dd>
<dt><strong><a name="type" class="item"><code>type</code></a></strong></dt>
<dt><strong><a name="dbtype" class="item"><code>dbtype</code></a></strong></dt>
<dd>
<p>The type of the database. Defaults to <a href="#postgres"><code>postgres</code></a>. Currently supported values are:</p>
<ul>
<li><strong><a name="postgres" class="item"><code>postgres</code></a></strong>
</li>
<li><strong><a name="drizzle" class="item"><code>drizzle</code></a></strong>
</li>
<li><strong><a name="mongo" class="item"><code>mongo</code></a></strong>
</li>
<li><strong><a name="mysql" class="item"><code>mysql</code></a></strong>
</li>
<li><strong><a name="maria" class="item"><code>maria</code></a></strong>
</li>
<li><strong><a name="oracle" class="item"><code>oracle</code></a></strong>
</li>
<li><strong><a name="redis" class="item"><code>redis</code></a></strong>
</li>
<li><strong><a name="sqlite" class="item"><code>sqlite</code></a></strong>
</li>
</ul>
</dd>
<dt><strong><a name="username" class="item"><code>username</code></a></strong></dt>
<dt><strong><code>dbuser</code></strong></dt>
<dt><strong><a name="user" class="item"><code>user</code></a></strong></dt>
<dd>
<p>The username Bucardo should use to connect to the database. Optional.</p>
</dd>
<dt><strong><a name="password" class="item"><code>password</code></a></strong></dt>
<dt><strong><a name="dbpass" class="item"><code>dbpass</code></a></strong></dt>
<dt><strong><a name="pass" class="item"><code>pass</code></a></strong></dt>
<dd>
<p>The password Bucardo should use when connecting to the database. Optional.</p>
</dd>
<dt><strong><a name="dbhost" class="item"><code>dbhost</code></a></strong></dt>
<dt><strong><a name="pghost" class="item"><code>pghost</code></a></strong></dt>
<dt><strong><a name="host" class="item"><code>host</code></a></strong></dt>
<dd>
<p>The host name to which to connect. Defaults to the value of the <code>$PGHOSTADDR</code>
or <code>$PGHOST</code> environment variables, if present. Optional.</p>
</dd>
<dt><strong><code>dbport</code></strong></dt>
<dt><strong><a name="pgport" class="item"><code>pgport</code></a></strong></dt>
<dt><strong><a name="port" class="item"><code>port</code></a></strong></dt>
<dd>
<p>The port to which to connect. Defaults to the value of the <code>$PGPORT</code>
environment variable, if present. Optional.</p>
</dd>
<dt><strong><a name="dbconn" class="item"><code>dbconn</code></a></strong></dt>
<dt><strong><a name="pgconn" class="item"><code>pgconn</code></a></strong></dt>
<dt><strong><a name="conn" class="item"><code>conn</code></a></strong></dt>
<dd>
<p>Additional connection parameters, e.g., <code>sslmode=require</code>. Optional.</p>
</dd>
<dt><strong><a name="status" class="item"><code>status</code></a></strong></dt>
<dd>
<p>Initial status of the database in Bucardo. Must be either "active" or
"inactive". Defaults to "active".</p>
</dd>
<dt><strong><code>dbgroup</code></strong></dt>
<dd>
<p>Bucardo dbgroup to which to add the database. Optional.</p>
</dd>
<dt><strong><a name="addalltables" class="item"><code>addalltables</code></a></strong></dt>
<dd>
<p>Automatically adds all tables once the database has been added. Optional.</p>
</dd>
<dt><strong><a name="addallsequences" class="item"><code>addallsequences</code></a></strong></dt>
<dd>
<p>Automatically adds all sequences once the database has been added. Optional.</p>
</dd>
<dt><strong><a name="server_side_prepares" class="item"><code>server_side_prepares</code></a></strong></dt>
<dt><strong><a name="ssp" class="item"><code>ssp</code></a></strong></dt>
<dd>
<p>Enable or disable server-side prepares. Pass 1 to enable them or 0 to disable
them. Defaults to 1.</p>
</dd>
<dt><strong><a name="dbservice" class="item"><code>dbservice</code></a></strong></dt>
<dt><strong><a name="service" class="item"><code>service</code></a></strong></dt>
<dd>
<p>The service name to use for a Postgres database. Optional.</p>
</dd>
</dl>
<p><strong>Note:</strong> As a convenience, if the <a href="#dbuser"><code>dbuser</code></a> value is its default value,
"bucardo", in the event that Bucardo cannot connect to the database, it will
try connecting as "postgres" and create a superuser named "bucardo". This is
to make things easier for folks getting started with Bucardo, but will not
work if it cannot connect as "postgres", or if it the connection failed due to
an authentication failure.</p>
<p>
</p>
<h3><a name="add_dbgroup">add dbgroup</a></h3>
<pre>
bucardo add dbgroup name db1:source db2:source db3:target ...</pre>
<p>Adds one or more databases to the named dbgroup. If the dbgroup
doesn't exist, it will be created. The database parameters should specify
their roles, either "source" or "target".</p>
<p>
</p>
<h3><a name="add_table">add table</a></h3>
<pre>
bucardo add table [schema].table db=actual_db_name</pre>
<p>Adds a table object. The table information will be read from the specified
database. Supported parameters:</p>
<dl>
<dt><strong><code>db</code></strong></dt>
<dd>
<p>The name of the database from which to read the table information. Should be a
name known to Bucardo, thanks to a previous call to <code>add database</code>. Required.</p>
</dd>
<dt><strong><a name="autokick" class="item"><code>autokick</code></a></strong></dt>
<dd>
<p>Boolean indicating whether or not the table should automatically send kick
messages when it's modified. Overrides the <a href="#autokick"><code>autokick</code></a> parameter of any syncs
of which the table is a part.</p>
</dd>
<dt><strong><a name="rebuild_index" class="item"><code>rebuild_index</code></a></strong></dt>
<dd>
<p>Boolean indicating whether or not to rebuild indexes after every sync. Off by
default. Optional.</p>
</dd>
<dt><strong><a name="analyze_after_copy" class="item"><code>analyze_after_copy</code></a></strong></dt>
<dd>
<p>Boolean indicating whether or not to analyze the table after every sync. Off
by default. Optional.</p>
</dd>
<dt><strong><a name="vacuum_after_copy" class="item"><code>vacuum_after_copy</code></a></strong></dt>
<dd>
<p>Boolean indicating whether or not to vacuum the table after every sync. Off by
default. Optional.</p>
</dd>
<dt><strong><code>relgroup</code></strong></dt>
<dd>
<p>Adds the table to the named relgroup. If the relgroup does not
exist, it will be created. Optional.</p>
</dd>
<dt><strong><a name="makedelta" class="item"><code>makedelta</code></a></strong></dt>
<dd>
<p>Turns makedelta magic on or off. Value is a list of databases which need makedelta
for this table. Value can also be "on" to enable makedelta for all databases.
Defaults to "off".</p>
</dd>
<dt><strong><a name="strict_check" class="item"><code>strict_check</code></a></strong></dt>
<dd>
<p>Boolean indicating whether or not to be strict when comparing the table
between syncs. If the columns have different names or data types, the
validation will fail. But perhaps the columns are allowed to have different
names or data types. If so, disable <a href="#strict_check"><code>strict_check</code></a> and column differences will
result in warnings rather than failing the validation. Defaults to true.</p>
</dd>
</dl>
<p>
</p>
<h3><a name="add_sequence">add sequence</a></h3>
<pre>
bucardo add sequence [schema].sequence relgroup=xxx</pre>
<dl>
<dt><strong><code>db</code></strong></dt>
<dd>
<p>The name of the database from which to read the sequence information. Should
be a name known to Bucardo, thanks to a previous call to <code>add database</code>.
Required.</p>
</dd>
<dt><strong><code>relgroup</code></strong></dt>
<dd>
<p>Adds the sequence to the named relgroup. If the relgroup does not
exist, it will be created. Optional.</p>
</dd>
</dl>
<p>
</p>
<h3><a name="add_all_tables">add all tables</a></h3>
<pre>
bucardo add all tables [relgroup=xxx] [pkonly]</pre>
<p>Adds all the tables in all known databases or in a specified database.
Excludes tables in the <code>pg_catalog</code>, <code>information_schema</code>, and <code>bucardo</code>
schemas. (Yes, this means that you cannot replicate the Bucardo configuration
database using Bucardo. Sorry about that.) Supported options and parameters:</p>
<dl>
<dt><strong><code>db</code></strong></dt>
<dt><strong><code>--db</code></strong></dt>
<dd>
<p>Name of the database from which to find all the tables to add. If not
provided, tables will be added from all known databases.</p>
</dd>
<dt><strong><a name="schema" class="item"><code>schema</code></a></strong></dt>
<dt><strong><code>--schema</code></strong></dt>
<dt><strong><a name="n" class="item"><code>-n</code></a></strong></dt>
<dd>
<p>Limit to the tables in the specified comma-delimited list of schemas. The
options may be specified more than once.</p>
</dd>
<dt><strong><a name="exclude_schema" class="item"><code>exclude-schema</code></a></strong></dt>
<dt><strong><a name="exclude_schema2" class="item"><a href="#exclude_schema"><code>--exclude-schema</code></a></a></strong></dt>
<dt><strong><a name="n" class="item"><code>-N</code></a></strong></dt>
<dd>
<p>Exclude tables in the specified comma-delimited list of schemas. The options
may be specified more than once.</p>
</dd>
<dt><strong><code>table</code></strong></dt>
<dt><strong><code>--table</code></strong></dt>
<dt><strong><a name="t" class="item"><code>-t</code></a></strong></dt>
<dd>
<p>Limit to the specified tables. The options may be specified more than once.</p>
</dd>
<dt><strong><a name="exclude_table" class="item"><code>exclude-table</code></a></strong></dt>
<dt><strong><a name="exclude_table2" class="item"><a href="#exclude_table"><code>--exclude-table</code></a></a></strong></dt>
<dt><strong><a name="t" class="item"><code>-T</code></a></strong></dt>
<dd>
<p>Exclude the specified tables. The options may be specified more than once.</p>
</dd>
<dt><strong><code>relgroup</code></strong></dt>
<dt><strong><code>--relgroup</code></strong></dt>
<dd>
<p>Name of the relgroup to which to add new tables.</p>
</dd>
<dt><strong><a name="pkonly" class="item"><code>pkonly</code></a></strong></dt>
<dd>
<p>Exclude tables without primary keys.</p>
</dd>
</dl>
<p>
</p>
<h3><a name="add_all_sequences">add all sequences</a></h3>
<pre>
bucardo add all sequences relgroup=xxx</pre>
<p>Adds all the sequences in all known databases or in a specified database.
Excludes sequences in the <code>pg_catalog</code>, <code>information_schema</code>, and <code>bucardo</code>
schemas. (Yes, this means that you cannot replicate the Bucardo configuration
database using Bucardo. Sorry about that.) Supported options and parameters:</p>
<dl>
<dt><strong><code>db</code></strong></dt>
<dt><strong><a name="db2" class="item"><a href="#db"><code>--db</code></a></a></strong></dt>
<dd>
<p>Name of the database from which to find all the sequences to add. If not
provided, sequences will be added from all known databases.</p>
</dd>
<dt><strong><code>schema</code></strong></dt>
<dt><strong><a name="schema2" class="item"><a href="#schema"><code>--schema</code></a></a></strong></dt>
<dt><strong><a name="n2" class="item"><a href="#n"><code>-n</code></a></a></strong></dt>
<dd>
<p>Limit to the sequences in the specified comma-delimited list of schemas. The
options may be specified more than once.</p>
</dd>
<dt><strong><a name="exclude_schema3" class="item"><a href="#exclude_schema"><code>exclude-schema</code></a></a></strong></dt>
<dt><strong><a name="exclude_schema4" class="item"><a href="#exclude_schema"><code>--exclude-schema</code></a></a></strong></dt>
<dt><strong><a name="n2" class="item"><a href="#n"><code>-N</code></a></a></strong></dt>
<dd>
<p>Exclude sequences in the specified comma-delimited list of schemas. The
options may be specified more than once.</p>
</dd>
<dt><strong><code>relgroup</code></strong></dt>
<dt><strong><a name="relgroup2" class="item"><a href="#relgroup"><code>--relgroup</code></a></a></strong></dt>
<dd>
<p>Name of the relgroup to which to add new tables or sequences.</p>
</dd>
</dl>
<p>
</p>
<h3><a name="add_relgroup">add relgroup</a></h3>
<pre>
bucardo add relgroup name
bucardo add relgroup name table, sequence, ...</pre>
<p>Adds a relgroup. After the name, pass in an optional list of tables
and/or sequences and they will be added to the group.</p>
<p>
</p>
<h3><a name="add_sync">add sync</a></h3>
<pre>
bucardo add sync name relgroup=xxx dbs=xxx</pre>
<p>Adds a sync, which is a named replication event containing information about
what to replicate from where to where. The supported parameters are:</p>
<dl>
<dt><strong><a name="dbs" class="item"><code>dbs</code></a></strong></dt>
<dd>
<p>The name of a dbgroup or comma-delimited list of databases. All of the
specified databases will be synchronized. Required.</p>
</dd>
<dt><strong><code>dbgroup</code></strong></dt>
<dd>
<p>The name of a dbgroup. All of the databases within this group will be
part of the sync. If the dbgroup does not exists and a separate list
of databases is given, the group will be created and populated.</p>
</dd>
<dt><strong><code>relgroup</code></strong></dt>
<dd>
<p>The name of a relgroup to synchronize. All of the tables and/or
sequences in the relgroup will be synchronized. Required unless <a href="#tables"><code>tables</code></a> is
specified.</p>
</dd>
<dt><strong><a name="tables" class="item"><code>tables</code></a></strong></dt>
<dd>
<p>List of tables to add to the sync. This implicitly creates a relgroup
with the same name as the sync. Required unless <a href="#relgroup"><code>relgroup</code></a> is specified.</p>
</dd>
<dt><strong><code>status</code></strong></dt>
<dd>
<p>Indicates whether or not the sync is active. Must be either "active" or
"inactive". Defaults to "active".</p>
</dd>
<dt><strong><code>rebuild_index</code></strong></dt>
<dd>
<p>Boolean indicating whether or not to rebuild indexes after every sync.
Defaults to off.</p>
</dd>
<dt><strong><a name="lifetime" class="item"><code>lifetime</code></a></strong></dt>
<dd>
<p>Number of seconds a KID can live before being reaped. No limit by default.</p>
</dd>
<dt><strong><a name="maxkicks" class="item"><code>maxkicks</code></a></strong></dt>
<dd>
<p>Number of times a KID may be kicked before being reaped. No limit by default.</p>
</dd>
<dt><strong><a name="conflict_strategy" class="item"><code>conflict_strategy</code></a></strong></dt>
<dd>
<p>The conflict resolution strategy to use in the sync. Supported values:</p>
<dl>
<dt><strong><a name="bucardo_source" class="item"><code>bucardo_source</code></a></strong></dt>
<dd>
<p>The rows on the "source" database always "win". In other words, in a conflict,
Bucardo copies rows from source to target.</p>
</dd>
<dt><strong><a name="bucardo_target" class="item"><code>bucardo_target</code></a></strong></dt>
<dd>
<p>The rows on the "target" database always win.</p>
</dd>
<dt><strong><a name="bucardo_skip" class="item"><code>bucardo_skip</code></a></strong></dt>
<dd>
<p>Any conflicting rows are simply not replicated. Not recommended for most
cases.</p>
</dd>
<dt><strong><a name="bucardo_random" class="item"><code>bucardo_random</code></a></strong></dt>
<dd>
<p>Each database has an equal chance of winning each time. This is the default.</p>
</dd>
<dt><strong><a name="bucardo_latest" class="item"><code>bucardo_latest</code></a></strong></dt>
<dd>
<p>The row that was most recently changed wins.</p>
</dd>
<dt><strong><a name="bucardo_abort" class="item"><code>bucardo_abort</code></a></strong></dt>
<dd>
<p>The sync is aborted on a conflict.</p>
</dd>
</dl>
</dd>
<dt><strong><a name="onetimecopy" class="item"><code>onetimecopy</code></a></strong></dt>
<dd>
<p>Determines whether or not a sync should switch to a full copy mode for a
single run. Supported values are:</p>
<ol>
<li><strong><a name="off" class="item">: off</a></strong>
</li>
<li><strong><a name="always_full_copy" class="item">: always full copy</a></strong>
</li>
<li><strong><a name="only_copy_tables_that_are_empty_on_the_target" class="item">: only copy tables that are empty on the target</a></strong>
</li>
</ol>
</dd>
<dt><strong><a name="stayalive" class="item"><code>stayalive</code></a></strong></dt>
<dd>
<p>Boolean indicating whether or not the sync processes (CTL) should be
persistent. Defaults to false.</p>
</dd>
<dt><strong><a name="kidsalive" class="item"><code>kidsalive</code></a></strong></dt>
<dd>
<p>Boolean indicating whether or not the sync child processes (KID) should be
persistent. Defaults to false.</p>
</dd>
<dt><strong><code>autokick</code></strong></dt>
<dd>
<p>Boolean indicating whether or not tables in the sync should automatically send
kick messages when they're modified. May be overridden by the <a href="#autokick"><code>autokick</code></a>
parameter of individual tables.</p>
</dd>
<dt><strong><a name="checktime" class="item"><code>checktime</code></a></strong></dt>
<dd>
<p>An interval specifying the maximum time a sync should go before being
kicked. Useful for busy systems where you don't want the overhead of notify
triggers.</p>
</dd>
<dt><strong><a name="priority" class="item"><code>priority</code></a></strong></dt>
<dd>
<p>An integer indicating the priority of the sync. Lower numbers are higher
priority. Currently used only for display purposes.</p>
</dd>
<dt><strong><code>analyze_after_copy</code></strong></dt>
<dd>
<p>Boolean indicating whether or not to analyze tables after every sync. Off by
default. Optional.</p>
</dd>
<dt><strong><a name="overdue" class="item"><code>overdue</code></a></strong></dt>
<dd>
<p>An interval specifying the amount of time after which the sync has not run
that it should be considered overdue. <code>check_bucardo_sync</code> issues a warning
when a sync has not been run in this amount of time.</p>
</dd>
<dt><strong><a name="expired" class="item"><code>expired</code></a></strong></dt>
<dd>
<p>An interval specifying the amount of time after which the sync has not run
that it should be considered expired. <code>check_bucardo_sync</code> issues a critical
message when a sync has not been run in this amount of time.</p>
</dd>
<dt><strong><a name="track_rates" class="item"><code>track_rates</code></a></strong></dt>
<dd>
<p>Boolean indicating whether or not to track synchronization rates.</p>
</dd>
<dt><strong><code>rebuild_index</code></strong></dt>
<dd>
<p>Boolean indicating whether or not to rebuild indexes after every sync. Off by
default. Optional.</p>
</dd>
<dt><strong><code>strict_check</code></strong></dt>
<dd>
<p>Boolean indicating whether or not to be strict when comparing tables in the
sync. If the columns have different names or data types, the validation will
fail. But perhaps the columns are allowed to have different names or data
types. If so, disable <a href="#strict_check"><code>strict_check</code></a> and column differences will result in
warnings rather than failing the validation. Defaults to true.</p>
</dd>
</dl>
<p>
</p>
<h3><a name="add_customname">add customname</a></h3>
<pre>
bucardo add customname oldname newname [db=name] [sync=name]</pre>
<p>Creates a new Bucardo custom name mapping. This allows the tables involved in
replication to have different names on different databases. The <code>oldname</code>
must contain the schema as well as the table name (if the source database
supports schemas). The optional parameters limit it to one or more databases,
and/or to one or more syncs. Supported parameters:</p>
<dl>
<dt><strong><code>sync</code></strong></dt>
<dd>
<p>A sync to which to add the customname. May be specified multiple times.</p>
</dd>
<dt><strong><code>database</code></strong></dt>
<dt><strong><code>db</code></strong></dt>
<dd>
<p>A database for which to add the customname. May be specified multiple times.</p>
</dd>
</dl>
<p>
</p>
<h3><a name="add_customcols">add customcols</a></h3>
<pre>
bucardo add customcols tablename select_clause [sync=x db=x]</pre>
<p>Specify the list of columns to select from when syncing. Rather than the
default <code>SELECT *</code> behavior, you can specify any columns you want, including
the use of function call return values and things not in the source column
list. The optional parameters limit it to one or more databases, and/or to one
or more syncs. Some examples:</p>
<pre>
bucardo add customcols public.foobar "select a, b, c"
bucardo add customcols public.foobar "select a, upper(b) AS b, c" db=foo
bucardo add customcols public.foobar "select a, b, c" db=foo sync=abc</pre>
<p>Supported parameters:</p>
<dl>
<dt><strong><code>sync</code></strong></dt>
<dd>
<p>A sync to which to add the customcols. May be specified multiple times.</p>
</dd>
<dt><strong><code>database</code></strong></dt>
<dt><strong><code>db</code></strong></dt>
<dd>
<p>A database for which to add the customcols. May be specified multiple times.</p>
</dd>
</dl>
<p>
</p>
<h3><a name="add_customcode">add customcode</a></h3>
<pre>
bucardo add customcode <name> <whenrun=value> <src_code=filename> [optional information]</pre>
<p>Adds a customcode, which is a Perl subroutine that can be run at certain
points in the sync process. It might handle exceptions, handle conflicts, or
just run at certain times with no expectation of functionality (e.g., before
Bucardo drops triggers). Metadata about that point will be passed to the
subroutine as a hash reference.</p>
<p>Supported parameters:</p>
<dl>
<dt><strong><a name="name" class="item"><code>name</code></a></strong></dt>
<dd>
<p>The name of the custom code object.</p>
</dd>
<dt><strong><a name="about" class="item"><code>about</code></a></strong></dt>
<dd>
<p>A short description of the custom code.</p>
</dd>
<dt><strong><a name="whenrun" class="item"><code>whenrun</code></a></strong></dt>
<dt><strong><a name="when_run" class="item"><code>when_run</code></a></strong></dt>
<dd>
<p>A string indicating when the custom code should be run. Supported values
include:</p>
<dl>
<dt><strong><a name="before_txn" class="item"><code>before_txn</code></a></strong></dt>
<dt><strong><a name="before_check_rows" class="item"><code>before_check_rows</code></a></strong></dt>
<dt><strong><a name="before_trigger_drop" class="item"><code>before_trigger_drop</code></a></strong></dt>
<dt><strong><a name="after_trigger_drop" class="item"><code>after_trigger_drop</code></a></strong></dt>
<dt><strong><a name="after_table_sync" class="item"><code>after_table_sync</code></a></strong></dt>
<dt><strong><a name="exception" class="item"><code>exception</code></a></strong></dt>
<dt><strong><a name="conflict" class="item"><code>conflict</code></a></strong></dt>
<dt><strong><a name="before_trigger_enable" class="item"><code>before_trigger_enable</code></a></strong></dt>
<dt><strong><a name="after_trigger_enable" class="item"><code>after_trigger_enable</code></a></strong></dt>
<dt><strong><a name="after_txn" class="item"><code>after_txn</code></a></strong></dt>
<dt><strong><a name="before_sync" class="item"><code>before_sync</code></a></strong></dt>
<dt><strong><a name="after_sync" class="item"><code>after_sync</code></a></strong></dt>
</dl>
</dd>
<dt><strong><a name="getdbh" class="item"><code>getdbh</code></a></strong></dt>
<dd>
<p>Boolean indicating whether or not Perl <em>DBI</em> database handles should be
provided to the custom code subroutine. If true, database handles will be
provided under the <code>dbh</code> key of the hash reference passed to the subroutine.
The value under this key will be a hash reference mapping database names to
their respective handles.</p>
</dd>
<dt><strong><code>sync</code></strong></dt>
<dd>
<p>Name of the sync with which to associate the custom code.</p>
</dd>
<dt><strong><a name="relation" class="item"><code>relation</code></a></strong></dt>
<dd>
<p>Name of the table or sequence with which to associate the custom code.</p>
</dd>
<dt><strong><code>status</code></strong></dt>
<dd>
<p>The current status of this customcode. Anything other than "active" means the
code is not run.</p>
</dd>
<dt><strong><code>priority</code></strong></dt>
<dd>
<p>Number indicating the priority in which order to execute custom codes. Lower numbers
are higher priority. Useful for subroutines that set <a href="#lastcode"><code>lastcode</code></a> in order to
cancel the execution of subsequent custom codes for the same <a href="#when_run"><code>when_run</code></a>.</p>
</dd>
<dt><strong><a name="src_code" class="item"><code>src_code</code></a></strong></dt>
<dd>
<p>File from which to read the custom code Perl source.</p>
</dd>
</dl>
<p>The body of the Perl subroutine should be implemented in the <a href="#src_code"><code>src_code</code></a> file,
and not inside a <code>sub</code> declaration. When called, it will be passed a single
hash reference with the following keys:</p>
<dl>
<dt><strong><a name="syncname" class="item"><code>syncname</code></a></strong></dt>
<dd>
<p>The name of the currently-executing sync.</p>
</dd>
<dt><strong><a name="version" class="item"><code>version</code></a></strong></dt>
<dd>
<p>The version of Bucardo executing the sync.</p>
</dd>
<dt><strong><a name="sourcename" class="item"><code>sourcename</code></a></strong></dt>
<dd>
<p>The name of the source database.</p>
</dd>
<dt><strong><a name="targetname" class="item"><code>targetname</code></a></strong></dt>
<dd>
<p>The name of the target database.</p>
</dd>
<dt><strong><code>sendmail</code></strong></dt>
<dd>
<p>A code reference that can be used to send email messages.</p>
</dd>
<dt><strong><a name="sourcedbh" class="item"><code>sourcedbh</code></a></strong></dt>
<dd>
<p>A <em>DBI</em> database handle to the sync source database. Provided only to custom
code executed by the controller.</p>
</dd>
<dt><strong><a name="rellist" class="item"><code>rellist</code></a></strong></dt>
<dd>
<p>An array reference of hash references, each representing a relation in the
sync. Provided only to custom code executed by the controller. The keys in
the hash are the same as the parameters supported by <a href="#add_table">add table</a> and
<a href="#add_sequence">add sequence</a>, as appropriate.</p>
</dd>
<dt><strong><a name="schemaname" class="item"><code>schemaname</code></a></strong></dt>
<dd>
<p>The schema for the table that triggered the exception. Provided only to
"exception" custom codes.</p>
</dd>
<dt><strong><a name="tablename" class="item"><code>tablename</code></a></strong></dt>
<dd>
<p>The name of the table that triggered the exception. Provided only to
"exception" custom codes.</p>
</dd>
<dt><strong><a name="error_string" class="item"><code>error_string</code></a></strong></dt>
<dd>
<p>The string containing the actual error message. Provided only to "exception"
custom codes.</p>
</dd>
<dt><strong><a name="deltabin" class="item"><code>deltabin</code></a></strong></dt>
<dd>
<p>A hash reference with the name of each source database as a key and a list of
all primary keys joined together with "\0". Provided only to "exception"
custom codes.</p>
</dd>
<dt><strong><a name="attempts" class="item"><code>attempts</code></a></strong></dt>
<dd>
<p>The number of times the sync has been attempted. Provided only to "exception"
custom codes.</p>
</dd>
<dt><strong><a name="conflicts" class="item"><code>conflicts</code></a></strong></dt>
<dd>
<p>A hash reference of conflicting rows. The keys are the primary key values, and
the values are hash references with the names of the databases containing the
conflicting rows and true values. Provided only to "conflict" custom codes.</p>
</dd>
</dl>
<p>The custom code subroutine may set any of these keys in the hash reference to
change the behavior of the sync:</p>
<dl>
<dt><strong><a name="message" class="item"><code>message</code></a></strong></dt>
<dd>
<p>Message to send to the logs.</p>
</dd>
<dt><strong><a name="warning" class="item"><code>warning</code></a></strong></dt>
<dd>
<p>A warning to emit after the subroutine has returned.</p>
</dd>
<dt><strong><a name="error" class="item"><code>error</code></a></strong></dt>
<dd>
<p>An error to be thrown after the subroutine has returned.</p>
</dd>
<dt><strong><a name="nextcode" class="item"><code>nextcode</code></a></strong></dt>
<dd>
<p>Set to send execution to the next custom code of the same type. Mainly useful
to exception custom codes, and supported only by custom codes executed by the
controller.</p>
</dd>
<dt><strong><a name="lastcode" class="item"><code>lastcode</code></a></strong></dt>
<dd>
<p>Set to true to have any subsequent custom codes of the same type to be
skipped.</p>
</dd>
<dt><strong><a name="endsync" class="item"><code>endsync</code></a></strong></dt>
<dd>
<p>Cancels the sync altogether.</p>
</dd>
</dl>
<p>An example:</p>
<pre>
use strict;
use warnings;
use Data::Dumper;</pre>
<pre>
my $info = shift;</pre>
<pre>
# Let's open a file.
my $file = '/tmp/bucardo_dump.txt';
open my $fh, '>:encoding(UTF-8)', $file or do {
$info->{warning} = "Cannot open $file: $!\n";
return;
};</pre>
<pre>
# Inspect $info for fun.
print $fh Dumper $info;
close $fh or $info->{warning} = "Error closing $file: $!\n";</pre>
<pre>
# Log a message and return.
$info->{message} = 'IN UR DATABASEZ NORMALIZIN UR RELAYSHUNS';
return;</pre>
<p>
</p>
<h2><a name="update">update</a></h2>
<pre>
bucardo update <type> <name> <parameters></pre>
<p>Updates a Bucardo object. The <a href="#type"><code>type</code></a> specifies the type of object to update,
while the <a href="#name"><code>name</code></a> should be the name of the object. The supported parameters
for each type are the same as those for <a href="#add">add</a>. The supported types are:</p>
<dl>
<dt><strong><code>customcode</code></strong></dt>
<dt><strong><code>db</code></strong></dt>
<dt><strong><code>sync</code></strong></dt>
<dt><strong><code>table</code></strong></dt>
<dt><strong><code>sequence</code></strong></dt>
</dl>
<p>
</p>
<h3><a name="update_customcode">update customcode</a></h3>
<pre>
bucardo update customcode <name> setting=value</pre>
<p>Updates an existing customcode. Items that can be changed are:</p>
<dl>
<dt><strong><code>about</code></strong></dt>
<dd>
<p>A short description of the custom code.</p>
</dd>
<dt><strong><code>getdbh</code></strong></dt>
<dd>
<p>Boolean indicating whether or not Perl <em>DBI</em> database handles should be
provided to the custom code subroutine. If true, database handles will be
provided under the <code>dbh</code> key of the hash reference passed to the subroutine.
The value under this key will be a hash reference mapping database names to
their respective handles.</p>
</dd>
<dt><strong><code>name</code></strong></dt>
<dd>
<p>The name of the custom code object.</p>
</dd>
<dt><strong><code>priority</code></strong></dt>
<dd>
<p>Number indicating the priority in which order to execute custom codes. Lower numbers
are higher priority. Useful for subroutines that set <a href="#lastcode"><code>lastcode</code></a> in order to
cancel the execution of subsequent custom codes for the same <a href="#when_run"><code>when_run</code></a>.</p>
</dd>
<dt><strong><code>status</code></strong></dt>
<dd>
<p>The current status of this customcode. Anything other than "active" means the
code is not run.</p>
</dd>
<dt><strong><code>whenrun</code></strong></dt>
<dd>
<p>A string indicating when the custom code should be run. Supported values include:</p>
<dl>
<dt><strong><code>before_txn</code></strong></dt>
<dt><strong><code>before_check_rows</code></strong></dt>
<dt><strong><code>before_trigger_drop</code></strong></dt>
<dt><strong><code>after_trigger_drop</code></strong></dt>
<dt><strong><code>after_table_sync</code></strong></dt>
<dt><strong><code>exception</code></strong></dt>
<dt><strong><code>conflict</code></strong></dt>
<dt><strong><code>before_trigger_enable</code></strong></dt>
<dt><strong><code>after_trigger_enable</code></strong></dt>
<dt><strong><code>after_txn</code></strong></dt>
<dt><strong><code>before_sync</code></strong></dt>
<dt><strong><code>after_sync</code></strong></dt>
</dl>
</dd>
</dl>
<p>
</p>
<h3><a name="update_db">update db</a></h3>
<pre>
bucardo udpate db <name> port=xxx host=xxx user=xxx pass=xxx</pre>
<p>Updates a database. The <a href="#name"><code>name</code></a> is the name by which the database is known to
Bucardo. This may vary from the actual database name, as multiple hosts might
have databases with the same name.</p>
<p>The supported named parameters are:</p>
<dl>
<dt><strong><code>dbname</code></strong></dt>
<dt><strong><code>db</code></strong></dt>
<dd>
<p>The actual name of the database.</p>
</dd>
<dt><strong><code>type</code></strong></dt>
<dt><strong><code>dbtype</code></strong></dt>
<dd>
<p>The type of the database. Currently supported values are:</p>
<ul>
<li><strong><code>postgres</code></strong>
</li>
<li><strong><code>drizzle</code></strong>
</li>
<li><strong><code>mongo</code></strong>
</li>
<li><strong><code>mysql</code></strong>
</li>
<li><strong><code>maria</code></strong>
</li>
<li><strong><code>oracle</code></strong>
</li>
<li><strong><code>redis</code></strong>
</li>
<li><strong><code>sqlite</code></strong>
</li>
</ul>
</dd>
<dt><strong><code>username</code></strong></dt>
<dt><strong><code>dbuser</code></strong></dt>
<dt><strong><code>user</code></strong></dt>
<dd>
<p>The username Bucardo should use to connect to the database.</p>
</dd>
<dt><strong><code>password</code></strong></dt>
<dt><strong><code>dbpass</code></strong></dt>
<dt><strong><code>pass</code></strong></dt>
<dd>
<p>The password Bucardo should use when connecting to the database.</p>
</dd>
<dt><strong><code>dbhost</code></strong></dt>
<dt><strong><code>pghost</code></strong></dt>
<dt><strong><code>host</code></strong></dt>
<dd>
<p>The host name to which to connect.</p>
</dd>
<dt><strong><code>dbport</code></strong></dt>
<dt><strong><code>pgport</code></strong></dt>
<dt><strong><code>port</code></strong></dt>
<dd>
<p>The port to which to connect.</p>
</dd>
<dt><strong><code>dbconn</code></strong></dt>
<dt><strong><code>pgconn</code></strong></dt>
<dt><strong><code>conn</code></strong></dt>
<dd>
<p>Additional connection parameters, e.g., <code>sslmode=require</code>. Optional.</p>
</dd>
<dt><strong><code>status</code></strong></dt>
<dd>
<p>Status of the database in Bucardo. Must be either "active" or "inactive".</p>
</dd>
<dt><strong><code>dbgroup</code></strong></dt>
<dt><strong><code>server_side_prepares</code></strong></dt>
<dt><strong><code>ssp</code></strong></dt>
<dd>
<p>Enable or disable server-side prepares. Pass 1 to enable them or 0 to disable
them.</p>
</dd>
<dt><strong><code>dbservice</code></strong></dt>
<dt><strong><code>service</code></strong></dt>
<dd>
<p>The service name to use for a Postgres database.</p>
</dd>
<dt><strong><code>dbgroup</code></strong></dt>
<dd>
<p>A comma-separated list of dbgroups to which to add the database. The
database will be removed from any other dbgroups of which it was previously a
member.</p>
</dd>
</dl>
<p>
</p>
<h3><a name="update_sync">update sync</a></h3>
<pre>
bucardo update sync syncname relgroup=xxx dbs=xxx</pre>
<p>Updates a sync, which is a named replication event containing information about
what to replicate from where to where. The supported parameters are:</p>
<dl>
<dt><strong><code>name</code></strong></dt>
<dd>
<p>The name of the sync. Required.</p>
</dd>
<dt><strong><code>dbs</code></strong></dt>
<dd>
<p>The name of a dbgroup or comma-delimited list of databases.</p>
</dd>
<dt><strong><code>relgroup</code></strong></dt>
<dd>
<p>The name of a relgroup to synchronize.</p>
</dd>
<dt><strong><code>status</code></strong></dt>
<dd>
<p>Indicates whether or not the sync is active. Must be either "active" or
"inactive". Note that this will not change the current run status of the sync,
just mark whether it should be active or inactive on the next reload. Use the
<code>activate sync</code> and <deactivate sync> commands to actually activate or
deactivate a sync.</p>
</dd>
<dt><strong><code>rebuild_index</code></strong></dt>
<dd>
<p>Boolean indicating whether or not to rebuild indexes after every sync.</p>
</dd>
<dt><strong><code>lifetime</code></strong></dt>
<dd>
<p>Number of seconds a KID can live before being reaped.</p>
</dd>
<dt><strong><code>maxkicks</code></strong></dt>
<dd>
<p>Number of times a KID may be kicked before being reaped.</p>
</dd>
<dt><strong><a name="isolation_level" class="item"><code>isolation_level</code></a></strong></dt>
<dd>
<p>The transaction isolation level this sync should use.
Only choices are "serializable" and "repeatable read"</p>
</dd>
<dt><strong><code>conflict_strategy</code></strong></dt>
<dd>
<p>The conflict resolution strategy to use in the sync. Supported values:</p>
<dl>
<dt><strong><code>bucardo_source</code></strong></dt>
<dd>
<p>The rows on the "source" database always "win". In other words, in a conflict,
Bucardo copies rows from source to target.</p>
</dd>
<dt><strong><code>bucardo_target</code></strong></dt>
<dd>
<p>The rows on the "target" database always win.</p>
</dd>
<dt><strong><code>bucardo_skip</code></strong></dt>
<dd>
<p>Any conflicting rows are simply not replicated. Not recommended for most
cases.</p>
</dd>
<dt><strong><code>bucardo_random</code></strong></dt>
<dd>
<p>Each database has an equal chance of winning each time.</p>
</dd>
<dt><strong><code>bucardo_latest</code></strong></dt>
<dd>
<p>The row that was most recently changed wins.</p>
</dd>
<dt><strong><code>bucardo_abort</code></strong></dt>
<dd>
<p>The sync is aborted on a conflict.</p>
</dd>
</dl>
</dd>
<dt><strong><code>onetimecopy</code></strong></dt>
<dd>
<p>Determines whether or not a sync should switch to a full copy mode for a
single run. Supported values are:</p>
<ol>
<li><strong><a name="off2" class="item">: off</a></strong>
</li>
<li><strong><a name="always_full_copy2" class="item">: always full copy</a></strong>
</li>
<li><strong><a name="only_copy_tables_that_are_empty_on_the_target2" class="item">: only copy tables that are empty on the target</a></strong>
</li>
</ol>
</dd>
<dt><strong><code>stayalive</code></strong></dt>
<dd>
<p>Boolean indicating whether or not the sync processes (CTL) should be
persistent.</p>
</dd>
<dt><strong><code>kidsalive</code></strong></dt>
<dd>
<p>Boolean indicating whether or not the sync child processes (KID) should be
persistent.</p>
</dd>
<dt><strong><code>autokick</code></strong></dt>
<dd>
<p>Boolean indicating whether or not tables in the sync should automatically send
kick messages when they're modified. May be overridden by the <a href="#autokick"><code>autokick</code></a>
parameter of individual tables.</p>
</dd>
<dt><strong><code>checktime</code></strong></dt>
<dd>
<p>An interval specifying the maximum time a sync should go before being
kicked. Useful for busy systems where you don't want the overhead of notify
triggers.</p>
</dd>
<dt><strong><code>priority</code></strong></dt>
<dd>
<p>An integer indicating the priority of the sync. Lower numbers are higher
priority. Currently used only for display purposes.</p>
</dd>
<dt><strong><code>analyze_after_copy</code></strong></dt>
<dd>
<p>Boolean indicating whether or not to analyze tables after every sync. Off by
default.</p>
</dd>
<dt><strong><code>overdue</code></strong></dt>
<dd>
<p>An interval specifying the amount of time after which the sync has not run
that it should be considered overdue. <code>check_bucardo_sync</code> issues a warning
when a sync has not been run in this amount of time.</p>
</dd>
<dt><strong><code>expired</code></strong></dt>
<dd>
<p>An interval specifying the amount of time after which the sync has not run
that it should be considered expired. <code>check_bucardo_sync</code> issues a critical
message when a sync has not been run in this amount of time.</p>
</dd>
<dt><strong><code>track_rates</code></strong></dt>
<dd>
<p>Boolean indicating whether or not to track synchronization rates.</p>
</dd>
<dt><strong><code>rebuild_index</code></strong></dt>
<dd>
<p>Boolean indicating whether or not to rebuild indexes after every sync.</p>
</dd>
<dt><strong><code>strict_check</code></strong></dt>
<dd>
<p>Boolean indicating whether or not to be strict when comparing tables in the
sync. If the columns have different names or data types, the validation will
fail. But perhaps the columns are allowed to have different names or data
types. If so, disable <a href="#strict_check"><code>strict_check</code></a> and column differences will result in
warnings rather than failing the validation. Defaults to true.</p>
</dd>
</dl>
<p>
</p>
<h3><a name="update_table">update table</a></h3>
<pre>
bucardo update table [schema].table db=actual_db_name</pre>
<p>Updates a table object. The table information will be read from the specified
database. Supported parameters:</p>
<dl>
<dt><strong><code>db</code></strong></dt>
<dd>
<p>The name of the database from which to read the table information. Should be a
name known to Bucardo.</p>
</dd>
<dt><strong><code>schemaname</code></strong></dt>
<dd>
<p>The name of the schema in which the table is found.</p>
</dd>
<dt><strong><code>tablename</code></strong></dt>
<dd>
<p>The actual name of the table.</p>
</dd>
<dt><strong><code>autokick</code></strong></dt>
<dd>
<p>Boolean indicating whether or not the table should automatically send kick
messages when it's modified. Overrides the <a href="#autokick"><code>autokick</code></a> parameter of any syncs
of which the table is a part.</p>
</dd>
<dt><strong><code>rebuild_index</code></strong></dt>
<dd>
<p>Boolean indicating whether or not to rebuild indexes after every sync.</p>
</dd>
<dt><strong><code>analyze_after_copy</code></strong></dt>
<dd>
<p>Boolean indicating whether or not to analyze the table after every sync.</p>
</dd>
<dt><strong><code>vacuum_after_copy</code></strong></dt>
<dd>
<p>Boolean indicating whether or not to vacuum the table after every sync.</p>
</dd>
<dt><strong><code>relgroup</code></strong></dt>
<dd>
<p>Adds the table to the named relgroup. May be specified more than once.
The table will be removed from any other relgroups.</p>
</dd>
<dt><strong><code>makedelta</code></strong></dt>
<dd>
<p>Specifies which databases need makedelta enabled for this table.</p>
</dd>
<dt><strong><code>strict_check</code></strong></dt>
<dd>
<p>Boolean indicating whether or not to be strict when comparing the table
between syncs. If the columns have different names or data types, the
validation will fail. But perhaps the columns are allowed to have different
names or data types. If so, disable <a href="#strict_check"><code>strict_check</code></a> and column differences will
result in warnings rather than failing the validation. Defaults to true.</p>
</dd>
</dl>
<p>
</p>
<h3><a name="update_sequence">update sequence</a></h3>
<pre>
bucardo update sequence [schema].sequence relgroup=xxx</pre>
<dl>
<dt><strong><code>db</code></strong></dt>
<dd>
<p>The name of the database where the sequence lives.</p>
</dd>
<dt><strong><code>schemaname</code></strong></dt>
<dd>
<p>The name of the schema in which the sequence is found.</p>
</dd>
<dt><strong><code>relgroup</code></strong></dt>
<dd>
<p>Adds the sequence to the named relgroup. May be speci<fied more than
once. The sequence will be removed from any other relgroups.</p>
</dd>
</dl>
<p>
</p>
<h2><a name="remove">remove</a></h2>
<pre>
bucardo remove <item_type> <item_name></pre>
<p>Removes one or more objects from Bucardo. Valid item types are;</p>
<ul>
<li><strong><a name="db_or_database" class="item"><a href="#db"><code>db</code></a> or <a href="#database"><code>database</code></a></a></strong>
<p>Use the <code>--force</code> option to clear out related tables and groups instead of
erroring out.</p>
</li>
<li><strong><code>dbgroup</code></strong>
</li>
<li><strong><code>relgroup</code></strong>
</li>
<li><strong><code>sync</code></strong>
</li>
<li><strong><code>table</code></strong>
</li>
<li><strong><code>sequence</code></strong>
</li>
<li><strong><code>customcols</code></strong>
</li>
<li><strong><code>customname</code></strong>
</li>
<li><strong><code>customcode</code></strong>
</li>
</ul>
<p>Aliases:</p>
<dl>
<dt><strong><a name="delete" class="item"><code>delete</code></a></strong></dt>
<dt><strong><a name="del" class="item"><code>del</code></a></strong></dt>
</dl>
<p>
</p>
<h2><a name="kick">kick</a></h2>
<pre>
bucardo kick <syncname(s)> [timeout]</pre>
<p>Tells one or more named syncs to fire as soon as possible. Note that this simply sends a request that
the sync fire: it may not start right away if the same sync is already running, or if the source or
target database has exceeded the number of allowed Bucardo connections. If the final argument is a
number, it is treated as a timeout. If this number is zero, the bucardo command will not return
until the sync has finished. For any other number, the sync will wait at most that number of seconds.
If any sync has not finished before the timeout, an exit value of 1 will be returned. Errors will
cause exit values of 2 or 3. In all other cases, an exit value of 0 will be returned.</p>
<p>If a timeout is given, the total completion time in seconds is also displayed. If the sync is going to
multiple targets, the time that each target takes from the start of the kick is also shown as each
target finishes. Options:</p>
<dl>
<dt><strong><a name="retry" class="item"><code>--retry</code></a></strong></dt>
<dd>
<p>The number of times to retry a sync if it fails. Defaults to 0.</p>
</dd>
<dt><strong><a name="retry_sleep" class="item"><code>--retry-sleep</code></a></strong></dt>
<dd>
<p>How long to sleep, in seconds, between each retry attempt.</p>
</dd>
<dt><strong><a name="notimer" class="item"><code>--notimer</code></a></strong></dt>
<dd>
<p>By default, kicks with a timeout argument give a running real-time summary of
time elapsed by using the backspace character. This may not be wanted if
running a kick, for example, via a cronjob, so turning --notimer on will
simply print the entire message without backspaces.</p>
</dd>
</dl>
<p>
</p>
<h2><a name="pause">pause</a></h2>
<pre>
bucardo pause <syncname(s)>
bucardo pause all
bucardo resume <syncname(s)>
bucardo resume all</pre>
<p>Tells one or more named syncs to temporarily pause, or to resume from a previous pause. This
only applies to active syncs and only takes effect if Bucardo is currently running. The
keyword 'all' can be used as well to pause or resume all known active syncs.</p>
<p>
</p>
<h2><a name="reload_config">reload config</a></h2>
<pre>
bucardo reload config
bucardo reload config 30</pre>
<p>Sends a message to all CTL and KID processes asking them to reload the Bucardo
configuration. This configuration is a series of key/value pairs that
configure Bucardo's behavior, and not any of the objects managed by the
<code>add</code>, <code>remove</code>, or <code>update</code> commands.</p>
<p>By default, Bucardo will send the message and then exit. Pass an optional
number and Bucardo will instead wait up to that length of time for all child
processes to report completion.</p>
<p>
</p>
<h2><a name="set">set</a></h2>
<pre>
bucardo set setting1=value [setting2=value]</pre>
<p>Sets one or more configuration setting table. Setting names are
case-insensitive. The available settings are:</p>
<dl>
<dt><strong><a name="autosync_ddl" class="item"><code>autosync_ddl</code></a></strong></dt>
<dd>
<p>Which DDL changing conditions do we try to remedy automatically? Default: <code>newcol</code>.</p>
</dd>
<dt><strong><a name="bucardo_version" class="item"><code>bucardo_version</code></a></strong></dt>
<dd>
<p>Current version of Bucardo. Default: <code>5.1.2</code>.</p>
</dd>
<dt><strong><a name="bucardo_vac" class="item"><code>bucardo_vac</code></a></strong></dt>
<dd>
<p>Do we want the automatic VAC daemon to run? Default: <code>1</code>.</p>
</dd>
<dt><strong><a name="bucardo_initial_version" class="item"><code>bucardo_initial_version</code></a></strong></dt>
<dd>
<p>Bucardo version this schema was created with. Default: <code>5.1.2</code>.</p>
</dd>
<dt><strong><a name="ctl_checkonkids_time" class="item"><code>ctl_checkonkids_time</code></a></strong></dt>
<dd>
<p>How often does the controller check on the kids health? Default: <code>10</code>.</p>
</dd>
<dt><strong><a name="ctl_createkid_time" class="item"><code>ctl_createkid_time</code></a></strong></dt>
<dd>
<p>How long do we sleep to allow kids-on-demand to get on their feet? Default: <code>0.5</code>.</p>
</dd>
<dt><strong><a name="ctl_sleep" class="item"><code>ctl_sleep</code></a></strong></dt>
<dd>
<p>How long does the controller loop sleep? Default: <code>0.2</code>.</p>
</dd>
<dt><strong><a name="default_conflict_strategy" class="item"><code>default_conflict_strategy</code></a></strong></dt>
<dd>
<p>Default conflict strategy for all syncs. Default: <a href="#bucardo_latest"><code>bucardo_latest</code></a>.</p>
</dd>
<dt><strong><a name="default_email_from" class="item"><code>default_email_from</code></a></strong></dt>
<dd>
<p>Who the alert emails are sent as. Default: <code>nobody@example.com</code>.</p>
</dd>
<dt><strong><a name="default_email_host" class="item"><code>default_email_host</code></a></strong></dt>
<dd>
<p>Which host to send email through. Default: <code>localhost</code>.</p>
</dd>
<dt><strong><a name="default_email_to" class="item"><code>default_email_to</code></a></strong></dt>
<dd>
<p>Who to send alert emails to. Default: <code>nobody@example.com</code>.</p>
</dd>
<dt><strong><a name="email_debug_file" class="item"><code>email_debug_file</code></a></strong></dt>
<dd>
<p>File to save a copy of all outgoing emails to. Default: None.</p>
</dd>
<dt><strong><a name="endsync_sleep" class="item"><code>endsync_sleep</code></a></strong></dt>
<dd>
<p>How long do we sleep when custom code requests an endsync? Default: <code>1.0</code>.</p>
</dd>
<dt><strong><a name="flatfile_dir" class="item"><code>flatfile_dir</code></a></strong></dt>
<dd>
<p>Directory to store the flatfile output inside of. Default: <code>.</code>.</p>
</dd>
<dt><strong><a name="host_safety_check" class="item"><code>host_safety_check</code></a></strong></dt>
<dd>
<p>Regex to make sure we don't accidentally run where we should not. Default: None.</p>
</dd>
<dt><strong><code>isolation_level</code></strong></dt>
<dd>
<p>The transaction isolation level all sync should use. Defaults to 'serializable'.
The only other valid option is 'repeatable read'</p>
</dd>
<dt><strong><a name="kid_deadlock_sleep" class="item"><code>kid_deadlock_sleep</code></a></strong></dt>
<dd>
<p>How long to sleep in seconds if we hit a deadlock error. Default: <code>0.5</code>.
Set to -1 to prevent the kid from retrying.</p>
</dd>
<dt><strong><a name="kid_nodeltarows_sleep" class="item"><code>kid_nodeltarows_sleep</code></a></strong></dt>
<dd>
<p>How long do kids sleep if no delta rows are found? Default: <code>0.5</code>.</p>
</dd>
<dt><strong><a name="kid_pingtime" class="item"><code>kid_pingtime</code></a></strong></dt>
<dd>
<p>How often do we ping check the KID? Default: <code>60</code>.</p>
</dd>
<dt><strong><a name="kid_restart_sleep" class="item"><code>kid_restart_sleep</code></a></strong></dt>
<dd>
<p>How long to sleep in seconds when restarting a kid? Default: <code>1</code>.</p>
</dd>
<dt><strong><a name="kid_serial_sleep" class="item"><code>kid_serial_sleep</code></a></strong></dt>
<dd>
<p>How long to sleep in seconds if we hit a serialization error. Default: <code>0.5</code>.
Set to -1 to prevent the kid from retrying.</p>
</dd>
<dt><strong><a name="kid_sleep" class="item"><code>kid_sleep</code></a></strong></dt>
<dd>
<p>How long does a kid loop sleep? Default: <code>0.5</code>.</p>
</dd>
<dt><strong><a name="log_conflict_file" class="item"><code>log_conflict_file</code></a></strong></dt>
<dd>
<p>Name of the conflict detail log file. Default: <code>bucardo_conflict.log</code>.</p>
</dd>
<dt><strong><a name="log_level" class="item"><code>log_level</code></a></strong></dt>
<dd>
<p>How verbose to make the logging. Higher is more verbose. Default: <code>normal</code>.</p>
</dd>
<dt><strong><a name="log_microsecond" class="item"><code>log_microsecond</code></a></strong></dt>
<dd>
<p>Show microsecond output in the timestamps? Default: <code>0</code>.</p>
</dd>
<dt><strong><a name="log_showlevel" class="item"><code>log_showlevel</code></a></strong></dt>
<dd>
<p>Show log level in the log output? Default: <code>0</code>.</p>
</dd>
<dt><strong><a name="log_showline" class="item"><code>log_showline</code></a></strong></dt>
<dd>
<p>Show line number in the log output? Default: <code>0</code>.</p>
</dd>
<dt><strong><a name="log_showpid" class="item"><code>log_showpid</code></a></strong></dt>
<dd>
<p>Show PID in the log output? Default: <code>1</code>.</p>
</dd>
<dt><strong><a name="log_showtime" class="item"><code>log_showtime</code></a></strong></dt>
<dd>
<p>Show timestamp in the log output? 0=off 1=seconds since epoch 2=scalar gmtime 3=scalar localtime. Default: <code>3</code>.</p>
</dd>
<dt><strong><a name="mcp_dbproblem_sleep" class="item"><code>mcp_dbproblem_sleep</code></a></strong></dt>
<dd>
<p>How many seconds to sleep before trying to respawn. Default: <code>15</code>.</p>
</dd>
<dt><strong><a name="mcp_loop_sleep" class="item"><code>mcp_loop_sleep</code></a></strong></dt>
<dd>
<p>How long does the main MCP daemon sleep between loops? Default: <code>0.2</code>.</p>
</dd>
<dt><strong><a name="mcp_pingtime" class="item"><code>mcp_pingtime</code></a></strong></dt>
<dd>
<p>How often do we ping check the MCP? Default: <code>60</code>.</p>
</dd>
<dt><strong><a name="mcp_vactime" class="item"><code>mcp_vactime</code></a></strong></dt>
<dd>
<p>How often in seconds do we check that a VAC is still running? Default: <code>60</code>.</p>
</dd>
<dt><strong><a name="piddir" class="item"><code>piddir</code></a></strong></dt>
<dd>
<p>Directory holding Bucardo PID files. Default: <code>/var/run/bucardo</code>.</p>
</dd>
<dt><strong><a name="reason_file" class="item"><code>reason_file</code></a></strong></dt>
<dd>
<p>File to hold reasons for stopping and starting. Default: <code>bucardo.restart.reason.txt</code>.</p>
</dd>
<dt><strong><a name="reload_config_timeout" class="item"><code>reload_config_timeout</code></a></strong></dt>
<dd>
<p>Number of seconds the <a href="#reload_config"><code>reload_config</code></a> command should wait for the reload to complete.
Default: <code>30</code>.</p>
</dd>
<dt><strong><a name="semaphore_table" class="item"><code>semaphore_table</code></a></strong></dt>
<dd>
<p>Table to let apps know a sync is ongoing. Default: <code>bucardo_status</code>.</p>
</dd>
<dt><strong><a name="statement_chunk_size" class="item"><code>statement_chunk_size</code></a></strong></dt>
<dd>
<p>How many primary keys to shove into a single statement. Default: <code>10000</code>.</p>
</dd>
<dt><strong><a name="stats_script_url" class="item"><code>stats_script_url</code></a></strong></dt>
<dd>
<p>Location of the stats script. Default: <code>http://www.bucardo.org/</code>.</p>
</dd>
<dt><strong><a name="stopfile" class="item"><code>stopfile</code></a></strong></dt>
<dd>
<p>Name of the semaphore file used to stop Bucardo processes. Default: <code>fullstopbucardo</code>.</p>
</dd>
<dt><strong><a name="syslog_facility" class="item"><code>syslog_facility</code></a></strong></dt>
<dd>
<p>Which syslog facility level to use. Default: <code>log_local1</code>.</p>
</dd>
<dt><strong><a name="tcp_keepalives_count" class="item"><code>tcp_keepalives_count</code></a></strong></dt>
<dd>
<p>How many probes to send. 0 indicates sticking with system defaults. Default: <code>0</code>.</p>
</dd>
<dt><strong><a name="tcp_keepalives_idle" class="item"><code>tcp_keepalives_idle</code></a></strong></dt>
<dd>
<p>How long to wait between each keepalive probe. Default: <code>0</code>.</p>
</dd>
<dt><strong><a name="tcp_keepalives_interval" class="item"><code>tcp_keepalives_interval</code></a></strong></dt>
<dd>
<p>How long to wait for a response to a keepalive probe. Default: <code>0</code>.</p>
</dd>
<dt><strong><a name="vac_run" class="item"><code>vac_run</code></a></strong></dt>
<dd>
<p>How often does the VAC process run? Default: <code>30</code>.</p>
</dd>
<dt><strong><a name="vac_sleep" class="item"><code>vac_sleep</code></a></strong></dt>
<dd>
<p>How long does VAC process sleep between runs? Default: <code>120</code>.</p>
</dd>
<dt><strong><a name="warning_file" class="item"><code>warning_file</code></a></strong></dt>
<dd>
<p>File containing all log lines starting with "Warning". Default: <code>bucardo.warning.log</code>.</p>
</dd>
</dl>
<p>
</p>
<h2><a name="show">show</a></h2>
<pre>
bucardo show all|<setting> [<setting>...]</pre>
<p>Shows the current Bucardo settings. Use the keyword "all" to see all the
settings, or specify one or more search terms. See <a href="#set">set</a> for complete
details on the configuration settings.</p>
<p>
</p>
<h2><a name="config">config</a></h2>
<pre>
bucardo config show all|<setting> [<setting>...]
bucardo config set <setting=value> [<setting=value>...]</pre>
<p>Deprecated interface for showing and setting configuration settings. Use the
<a href="#show">show</a> and <a href="#set">set</a> commands, instead.</p>
<p>
</p>
<h2><a name="ping">ping</a></h2>
<pre>
bucardo ping
bucardo ping 60
bucardo ping 0</pre>
<p>Sends a ping notice to the MCP process to see if it will respond. By default, it will wait 15 seconds. A
numeric argument will change this timeout. Using a 0 as the timeout indicates waiting forever. If a response
was returned, the program will exit with a value of 0. If it times out, the value will be 1.
Returns a Nagios like message starting with "OK" or "CRITICAL" for success or failure.</p>
<p>
</p>
<h2><a name="status">status</a></h2>
<pre>
bucardo status [syncname(s)] [--sort=#] [--show-days] [--compress]</pre>
<p>Shows the brief status of all known syncs in a tabular format. If given one or more sync names,
shows detailed information for each one. To see detailed information for all syncs, simply
use "status all"</p>
<p>When showing brief information, the columns are:</p>
<ol>
<li><strong><a name="name" class="item"><strong>Name</strong></a></strong>
<p>The name of the sync</p>
</li>
<li><strong><a name="state" class="item"><strong>State</strong></a></strong>
<p>The state of the sync. Can be 'Good', 'Bad', 'Empty', 'No records found',
'Unknown', or the run state for a currently-running sync.</p>
</li>
<li><strong><a name="last_good" class="item"><strong>Last good</strong></a></strong>
<p>When the sync last successfully ran.</p>
</li>
<li><strong><a name="time" class="item"><strong>Time</strong></a></strong>
<p>How long it has been since the last sync success</p>
</li>
<li><strong><a name="last_i_u" class="item"><strong>Last I/U</strong></a></strong>
<p>The number of insert and deletes performed by the last successful sync. May also show
the number of rows truncated (T) or conflicted (C), if applicable.</p>
</li>
<li><strong><a name="last_bad" class="item"><strong>Last bad</strong></a></strong>
<p>When the sync last failed.</p>
</li>
<li><strong><a name="time2" class="item"><strong>Time</strong></a></strong>
<p>How long it has been since the last sync failure</p>
</li>
</ol>
<p>The options for <a href="#status"><code>status</code></a> are:</p>
<dl>
<dt><strong><a name="show_days" class="item"><code>--show-days</code></a></strong></dt>
<dd>
<p>Specifies whether or not do list the time interval with days, or simply show
the hours. For example, "3d 12h 6m 3s" vs. "48h 6m 3s"</p>
</dd>
<dt><strong><a name="compress" class="item"><code>--compress</code></a></strong></dt>
<dd>
<p>Specifies whether or not to compress the time interval by removing spaces.
Mostly used to limit the width of the 'status' display.</p>
</dd>
<dt><strong><a name="sort" class="item"><code>--sort=#</code></a></strong></dt>
<dd>
<p>Requests sorting of the 'status' output by one of the nine columns. Use a
negative number to reverse the sort order.</p>
</dd>
</dl>
<p>
</p>
<h2><a name="activate">activate</a></h2>
<pre>
bucardo activate syncname [syncname2 syncname3 ...] [timeout]</pre>
<p>Activates one or more named syncs. If given a timeout argument, it will wait until it has received
confirmation from Bucardo that each sync has been successfully activated.</p>
<p>
</p>
<h2><a name="deactivate">deactivate</a></h2>
<pre>
bucardo deactivate syncname [syncname2 syncname3 ...] [timeout]</pre>
<p>Deactivates one or more named syncs. If given a timeout argument, it will wait until it has received
confirmation from Bucardo that the sync has been successfully deactivated.</p>
<p>
</p>
<h2><a name="message">message</a></h2>
<pre>
bucardo message 'I WAS HERE'</pre>
<p>Sends a message to the running Bucardo logs. This message will appear prefixed with "MESSAGE: ". If
Bucardo is not running, the message will go to the logs the next time Bucardo runs and someone
adds another message.</p>
<p>
</p>
<h2><a name="reload">reload</a></h2>
<pre>
bucardo reload [syncname2 syncname3 ...]</pre>
<p>Sends a message to one or more sync processes, instructing them to reload.
Waits for each to reload before going on to the next. Reloading consists of
deactivating a sync, reloading its information from the database, and
activating it again.</p>
<p>
</p>
<h2><a name="inspect">inspect</a></h2>
<pre>
bucardo inspect <type> <name> [<name2>...]</pre>
<p>Inspects one or more objects of a particular type. The results are sent to
<code>STDOUT</code>. The supported types include:</p>
<dl>
<dt><strong><code>table</code></strong></dt>
<dt><strong><code>sync</code></strong></dt>
<dt><strong><code>relgroup</code></strong></dt>
</dl>
<p>
</p>
<h2><a name="validate">validate</a></h2>
<pre>
bucardo validate all|<sync> [<sync>...]</pre>
<p>Validates one or more syncs. Use the keyword "all" to validate all syncs, or
specify one or more syncs to validate.</p>
<p>Note that this command executes a subset of all the validation done when a
sync is started or activated.</p>
<p>
</p>
<h2><a name="purge">purge</a></h2>
<pre>
bucardo purge all|<table> [<table>...]</pre>
<p>Purges the delta and track tables for one or more tables, for one or more
databases. Use the keyword "all" to validate all tables, or specify one or
more tables to validate.</p>
<p>
</p>
<h2><a name="help">help</a></h2>
<pre>
bucardo help
bucardo help <command>
bucardo help <command> <action></pre>
<p>Get help. General help can be returned, as well as help for a single command
or a command and its action. Some examples:</p>
<pre>
bucard help list
bucard help add table</pre>
<p>
</p>
<hr />
<h1><a name="options_details">OPTIONS DETAILS</a></h1>
<p>It is usually easier to set most of these options at the top of the script, or make an alias for them,
as they will not change very often if at all.</p>
<dl>
<dt><strong><a name="d" class="item"><code>-d</code></a></strong></dt>
<dt><strong><a name="db_name" class="item"><code>--db-name</code></a></strong></dt>
<dd>
<pre>
bucardo --db-name widgets
bucardo -d bricolage</pre>
<p>Name of the Bucardo database to which to connect.</p>
</dd>
<dt><strong><a name="u" class="item"><code>-U</code></a></strong></dt>
<dt><strong><a name="db_user" class="item"><code>--db-user</code></a></strong></dt>
<dd>
<pre>
bucardo --db-user postgres
bucardo -U Mom</pre>
<p>User name to use when connecting to the Bucardo database.</p>
</dd>
<dt><strong><a name="p" class="item"><code>-P</code></a></strong></dt>
<dt><strong><a name="db_pass" class="item"><code>--db-pass</code></a></strong></dt>
<dd>
<pre>
bucardo --db-pass s3cr1t
bucardo -P lolz</pre>
<p>Password to use when connecting to the Bucardo database.</p>
</dd>
<dt><strong><a name="h" class="item"><code>-h</code></a></strong></dt>
<dt><strong><a name="db_host" class="item"><code>--db-host</code></a></strong></dt>
<dd>
<pre>
bucardo --db-host db.example.com
bucardo -h db2.example.net</pre>
<p>Host name to use when connecting to the Bucardo database.</p>
</dd>
<dt><strong><a name="p" class="item"><code>-p</code></a></strong></dt>
<dt><strong><a name="db_port" class="item"><code>--db-port</code></a></strong></dt>
<dd>
<pre>
bucardo --db-port 7654</pre>
<p>Port number to connect to when connecting to the Bucardo database.</p>
</dd>
<dt><strong><a name="bucardorc" class="item"><code>--bucardorc</code></a></strong></dt>
<dd>
<pre>
bucardo --bucardorc myrcfile</pre>
<p>Use the specified file for configuration instead of the default
<em class="file">./.bucardorc</em>.</p>
</dd>
<dt><strong><a name="no_bucardorc" class="item"><code>--no-bucardorc</code></a></strong></dt>
<dd>
<p>Do not use the <em class="file">./.bucardorc</em> configuration file.</p>
</dd>
<dt><strong><a name="verbose" class="item"><code>--verbose</code></a></strong></dt>
<dd>
<p>Makes bucardo run verbosely. Default is off.</p>
</dd>
<dt><strong><a name="quiet" class="item"><code>--quiet</code></a></strong></dt>
<dd>
<p>Tells bucardo to be as quiet as possible. Default is off.</p>
</dd>
<dt><strong><a name="help" class="item"><code>--help</code></a></strong></dt>
<dd>
<p>Shows a brief summary of usage for bucardo.</p>
</dd>
</dl>
<p>
</p>
<hr />
<h1><a name="files">FILES</a></h1>
<p>In addition to command-line configurations, you can put any options inside of a file. The file <em class="file">.bucardorc</em> in
the current directory will be used if found. If not found, then the file <em class="file">~/.bucardorc</em> will be used. Finally,
the file /etc/bucardorc will be used if available. The format of the file is option = value, one per line. Any
line starting with a '#' will be skipped. Any values loaded from a bucardorc file will be overwritten by
command-line options. All bucardorc files can be ignored by supplying a <a href="#no_bucardorc"><code>--no-bucardorc</code></a> argument. A specific
file can be forced with the <code>--bucardorc=file</code> option; if this option is set, bucardo will refuse to run
unless that file can be read.</p>
<p>
</p>
<hr />
<h1><a name="environment_variables">ENVIRONMENT VARIABLES</a></h1>
<p>The bucardo script uses <em>$ENV{HOME}</em> to look for a <em class="file">.bucardorc</em> file.</p>
<p>
</p>
<hr />
<h1><a name="bugs">BUGS</a></h1>
<p>Bug reports and feature requests are always welcome, please visit
<em>bucardo.org</em>, file <em>GitHub Issues</em>, or post to our
<em>email list</em>.</p>
<p>
</p>
<hr />
<h1><a name="see_also">SEE ALSO</a></h1>
<p>Bucardo</p>
<p>
</p>
<hr />
<h1><a name="copyright">COPYRIGHT</a></h1>
<p>Copyright 2006-2014 Greg Sabino Mullane <<a href="mailto:greg@endpoint.com">greg@endpoint.com</a>></p>
<p>This program is free to use, subject to the limitations in the LICENSE file.</p>
</body>
</html>
|