summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add a new variable VerifyRecoveryLock which can be used to disable the test ↵root2009-05-013-4/+13
| | | | | | that the recovery daemon holds the lock properly when performing a recovery (This used to be ctdb commit 329df9e47e6ca8ab5143985a999e68f37c6d88a5)
* dont unconditionally kill/restart ctdb when given "service ctdb start" ↵Ronnie Sahlberg2009-04-301-1/+7
| | | | | | only start ctdb if it is not already running, and print an error message othervise (This used to be ctdb commit 94343309992929a592348c936e09a7b4f8b512c1)
* we only need to have transaction nesting disabled when we start the new ↵Ronnie Sahlberg2009-04-261-0/+1
| | | | | | transaction for the recovery (This used to be ctdb commit bf8dae63d10498e6b6179bbacdd72f1ff0fc60be)
* set the TDB_NO_NESTING flag for the tdb before we start a transaction from ↵Ronnie Sahlberg2009-04-261-0/+1
| | | | | | within recovery (This used to be ctdb commit 1b2029dbb055ff07367ebc1f307f5241320227b2)
* add TDB_NO_NESTING. When this flag is set tdb will not allow any nested ↵Ronnie Sahlberg2009-04-262-4/+15
| | | | | | transactions and tdb_transaction_start() will implicitely _cancel() any pending transactions before starting any new ones. (This used to be ctdb commit 459e4ee135bd1cd24c15e5325906eb4ecfd550ec)
* add a tuneable RecoveryDropAllIPs so it is possible to control after how ↵Ronnie Sahlberg2009-04-243-1/+3
| | | | | | | | | | long a node that has been stuck in recovery will wait until it will yield all public addresses. this now defaults to 60 seconds This is useful if a split brain occurs due to network partitioning since it will make sure that the "other half" of the cluster that does not contain the recovery master will eventually release all ips and thus avoiding a duplicate ip situation for the public addresses (This used to be ctdb commit 70f21428c9eec96bcc787be191e7478ad68956dc)
* increase the loglevel for the message we print when we automatically release ↵Ronnie Sahlberg2009-04-241-2/+2
| | | | | | all ips when we have been in recovery for too long (This used to be ctdb commit 7af060ded5113a49832f6a08a942523a202586b3)
* tweak some timeouts so that we do trigger a banning even if the control ↵Ronnie Sahlberg2009-04-242-4/+4
| | | | | | hangs/timesout (This used to be ctdb commit 1860a365e6ba8212e15c33016c80a2adcf8d10f4)
* If we can not pull a database from a node during recovery, mark this node as ↵Ronnie Sahlberg2009-04-241-2/+22
| | | | | | a "culprit" so that it will eventually become banned. (This used to be ctdb commit 69dc3bf60b86d8df6dc5c7c6ebf303e847fb2ba9)
* change shutdown level for ctdb to be 01Andrew Tridgell2009-04-231-1/+1
| | | | | | | | | | We want ctdb to shutdown first, as it manages many other services. With the old level of 32 the NFS service would shutdown first, and that would trigger ctdb to do a recovery. Then ctdb itself would be shutdown a few seconds later, which causes a lot of error messages in the other nodes logs (This used to be ctdb commit 2f952af1a12e81a652ec9a4794db96f9593f2676)
* Merge commit 'ronnie/master'Andrew Tridgell2009-04-238-8/+74
|\ | | | | | | (This used to be ctdb commit 373a04d6a47a5c7cf8d822d60be1d9b9ab4df784)
| * new version 1.0.79Ronnie Sahlberg2009-04-081-1/+9
| | | | | | | | (This used to be ctdb commit 6c900aa343096c5e1e297e055c36832ffa5028dd)
| * create a function "remote_ip" which can be used from scripts to remove a ↵Ronnie Sahlberg2009-04-082-3/+29
| | | | | | | | | | | | | | | | single ip from an interface. use this fucntion from the natgw eventscript (This used to be ctdb commit feab5f30b2d6cebf4dd28abc5a81f93424a4c852)
| * set libdir to ../lib64 on x86-64 platformsRonnie Sahlberg2009-04-081-0/+9
| | | | | | | | (This used to be ctdb commit a9f851caec2525ccbb3a6d6283eaef52b89a4eb2)
| * install ctdb.pc from the RPMRonnie Sahlberg2009-04-081-0/+1
| | | | | | | | (This used to be ctdb commit 1b47ddc97373376b416a50939b74dc8c926fc917)
| * From Mathieu Parent <math.parent@gmail.com>Ronnie Sahlberg2009-04-084-3/+6
| | | | | | | | | | | | Install the pkgconfig file (This used to be ctdb commit 7c4389cc0baa43a0ffa9fb08944c253db7885807)
| * (This used to be ctdb commit b0718551f55d5da9be0e6aba233f57c1ff8509be)Mathieu Parent2009-04-081-0/+19
| |
| * install /etc/ctdb/notify.sh as executable.Ronnie Sahlberg2009-04-081-1/+1
| | | | | | | | | | | | this addresses bug 6250 (This used to be ctdb commit b8be5b06c3359d037db336dc12d38e0018349951)
* | Merge commit 'ronnie/master'Andrew Tridgell2009-04-0738-723/+2167
|\| | | | | | | (This used to be ctdb commit 43c718ebd402abe2e1e6360ce21b08cc13030c88)
| * we only need to switch into client mode from the eventscript child if we are ↵Ronnie Sahlberg2009-04-061-9/+10
| | | | | | | | | | | | running the monitor event (This used to be ctdb commit 13e2c9044950f21918e4610726e73ed3d8f76920)
| * increase the listen queue. Now that the eventscripts may become clients and ↵Ronnie Sahlberg2009-04-061-1/+1
| | | | | | | | | | | | connect back to the server we do get a lot more concurrent connection attempts (takepip/teleaseip are performed in parallell) (This used to be ctdb commit 018f8b0b1823ef59b46f1a671aec5309d10628f4)
| * use _exit() and not exit() when we terminate a failed eventscript child processRonnie Sahlberg2009-04-061-1/+1
| | | | | | | | (This used to be ctdb commit 33b296cee177adc61edc911caec8c24b3efa8441)
| * We dont need to verify the nodemap on remote nodes that are bannedRonnie Sahlberg2009-04-061-1/+1
| | | | | | | | (This used to be ctdb commit 7f8f9385deee6eff2b7303147bc6412bbdc122df)
| * if we cant pull the remote nodemap off a node we should mark it as a culprit ↵Ronnie Sahlberg2009-04-021-0/+2
| | | | | | | | | | | | so it eventually becomes banned. (This used to be ctdb commit 0889ae3c237bdb3bd72d45f2f64f5e5d8420870c)
| * Change the (dodgy) seqnumfrequency variable to have ms resolution instead of ↵Ronnie Sahlberg2009-04-013-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | second resolution. Rename the variable to SeqnumInterval for 1, it is an interval and not a 1/interval unit 2, so that we catch when people use this old variable and can update the sysconfig file instead of silently changin semantics of this variable this is a real dodgy variable (This used to be ctdb commit 68eac459e5d2b6b534f72821036675ffe5d7a350)
| * remove a prototype for a function no longer usedRonnie Sahlberg2009-04-011-1/+0
| | | | | | | | (This used to be ctdb commit 9ac9745ba9296d01e3b18148ae8c3240e51cf090)
| * new release 1.0.78Ronnie Sahlberg2009-03-311-1/+4
| | | | | | | | (This used to be ctdb commit 00d2213613822b758939019361a619bd7d7f4984)
| * we should also install the 11.natgw eventscript if we want to be able to use itRonnie Sahlberg2009-03-312-0/+2
| | | | | | | | (This used to be ctdb commit 42e2797271bc1cdb4eecf1227d4c2db668587193)
| * install a default /etc/ctdb/notify.sh script as example on how to useRonnie Sahlberg2009-03-313-0/+39
| | | | | | | | | | | | snmptrap/email to notify that a node has changed health status (This used to be ctdb commit ee52c0866e2b26c396fe60946159c559d47199eb)
| * add a mechanism where the ctdb daemon will run a usercontrolled script when ↵Ronnie Sahlberg2009-03-315-0/+87
| | | | | | | | | | | | | | | | the node status changes to/from UNHEALTHY state. This would allow a sysadmin to set up ctdb to send an email/snmptrap/... when the status of the node changes. (This used to be ctdb commit ce534a83a05dbd40238e4eee0669d60ff396f935)
| * new version 1.0.77Ronnie Sahlberg2009-03-311-1/+3
| | | | | | | | (This used to be ctdb commit 274a4a1fe2e016f33296ebfc5ed6337ce3141d06)
| * we must also try to set the routes when we release an ip since during the ↵Ronnie Sahlberg2009-03-311-2/+2
| | | | | | | | | | | | release/10.interfaces there can actually be a window where the kernel decides to remove all addresses (before we manually add them back in 10.interfaces) during which the kernel may also decide to delete all routes since there are no gateways reachable through this interface anymore. (This used to be ctdb commit 34633223a46caaa079da233663f9c6dcc1803f87)
| * new version 1.0.76Ronnie Sahlberg2009-03-251-1/+4
| | | | | | | | (This used to be ctdb commit 56b7095994d1de95e40a223ed503b5572ea9d1b9)
| * change the ctdb command table to allow us to describe commands which can be ↵Ronnie Sahlberg2009-03-251-74/+152
| | | | | | | | | | | | | | | | run independtly of the ctdb daemon. create a new debugging command xpnn which discovers the pnn of the local node and which works even if the local daemon is not running (This used to be ctdb commit cd78765f9400d7abce7929a2dd199f65226e7664)
| * iupdate the documentation for NATGW to reflect that you can now useRonnie Sahlberg2009-03-253-39/+80
| | | | | | | | | | | | multiple natgw groups in one cluster (This used to be ctdb commit e059df6d3cd81c67e5505e8ef2d6d0ef9a287b31)
| * update how the NATGW configuration works.Ronnie Sahlberg2009-03-253-12/+119
| | | | | | | | | | | | allow the cluster to be partitioned into multiple disjoint natgw subsets (This used to be ctdb commit 1046885cd22b5001e0251de2e536b5f6793459be)
| * web: fix typoRonnie Sahlberg2009-03-241-1/+1
| | | | | | | | | | | | | | | | Conflicts: web/index.html (This used to be ctdb commit 95d22e4cf265d2119f72200ab0ec708f095853df)
| * update the documentatio n with all the new commands we supprot in theRonnie Sahlberg2009-03-243-46/+330
| | | | | | | | | | | | ctdb tool (This used to be ctdb commit ae317b2013eee01c4c0a5108c03f4024bea9e313)
| * fix the html so that mine and obnox names are shownRonnie Sahlberg2009-03-241-2/+2
| | | | | | | | (This used to be ctdb commit 0840aa2bd31b2da95342dca8ff35786a3d998688)
| * Merge branch 'obnox'Ronnie Sahlberg2009-03-247-116/+104
| |\ | | | | | | | | | (This used to be ctdb commit 972036a5d510fb9b399f1ee34a8861dee4221267)
| | * Merge commit 'ctdb-ronnie/master'Michael Adam2009-03-2316-465/+1208
| | |\ | | | | | | | | | | | | (This used to be ctdb commit 39a972b0d6d0d70282c25c54a124b67431467e77)
| | * | ctdb.sysconfig: add CTDB_MANAGES_HTTPD comment sectionMichael Adam2009-03-101-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | Michael (This used to be ctdb commit ccaf9ebe062127124cf23e69dcd2ac2edda40020)
| | * | events.d/50.samba: allow CTDB_SERVICE_{SMB,NMB,WINBIND} to be overriden from ↵Michael Adam2009-03-092-12/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | sysconfig Michael (This used to be ctdb commit b1aba6651143ae1c85b24d78b67c760795ff5bff)
| | * | ctdb.sysconfig: add CTDB_INIT_STYLE with explanationMichael Adam2009-03-091-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | Michael (This used to be ctdb commit 8518c9e0ffec44677d45f60e63936a831d62ab20)
| | * | Merge commit 'ctdb-ronnie/master'Michael Adam2009-03-043-3/+9
| | |\ \ | | | | | | | | | | | | | | | (This used to be ctdb commit 36709e4325fe9a0f377e8e79741741ded4e7f7b0)
| | * \ \ Merge commit 'ctdb-ronnie/master'Michael Adam2009-02-281-0/+2
| | |\ \ \ | | | | | | | | | | | | | | | | | | (This used to be ctdb commit f0e3cdde7bd35bb586a46c31609398b7d4b05a26)
| | * | | | move common code of system_linux.c and system_aix.c into new system_common.cMichael Adam2009-02-285-104/+74
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Michael (This used to be ctdb commit 124874847e5e03ce2a44bddfe778f01dfb0a7a03)
| * | | | | new version 1.0.75Ronnie Sahlberg2009-03-241-1/+5
| | | | | | | | | | | | | | | | | | | | | | | | (This used to be ctdb commit 857733ae2bdfa0037af224abfabc020e2ac384c7)
| * | | | | create a varient of kill_tcp_connections that only kills off the local side ↵Ronnie Sahlberg2009-03-242-1/+43
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | of a connection (This used to be ctdb commit dc2f28f7c988364b5d45f3048be4db3e5ff113b3)
| * | | | | set --single-public-ip when lvs is usedRonnie Sahlberg2009-03-241-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | (This used to be ctdb commit 292fff6eace39141591871e12f9a64e3441237be)