├── .gitignore ├── BaRe ├── bkup_cron.sh ├── handleBackup.sh ├── handleRestore.sh ├── misc │ └── 50-server.cnf ├── rSYNC.sh ├── ros.sh ├── trimLog.sh └── utils.sh ├── LICENSE ├── README.md ├── config.sample ├── docs ├── ExecutionLog.txt ├── ExecutionLog_1.png ├── ExecutionLog_2.png ├── ExecutionLog_3.png ├── ExecutionLog_4.png ├── ExecutionLog_5.png └── ExecutionLog_6.png ├── envars.example.sh ├── makeAskPassEmitter.sh ├── makeEnvarsFile.sh ├── makeMariaDBRestartScript.sh ├── master ├── makeMasterMariaDBScript.sh ├── makeMasterMariaDBconfPatch.sh ├── makeMasterTasks.sh └── prepareMaster.sh ├── prepareMasterAndSlave.sh ├── ros.sh └── slave ├── makeSlaveMariaDBScript.sh ├── makeSlaveMariaDBconfPatch.sh ├── makeSlaveTasks.sh └── prepareSlave.sh /.gitignore: -------------------------------------------------------------------------------- 1 | envars.sh 2 | DemoNote.txt 3 | -------------------------------------------------------------------------------- /BaRe/bkup_cron.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinhbramwell/ERPNextFailOver/HEAD/BaRe/bkup_cron.sh -------------------------------------------------------------------------------- /BaRe/handleBackup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinhbramwell/ERPNextFailOver/HEAD/BaRe/handleBackup.sh -------------------------------------------------------------------------------- /BaRe/handleRestore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinhbramwell/ERPNextFailOver/HEAD/BaRe/handleRestore.sh -------------------------------------------------------------------------------- /BaRe/misc/50-server.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinhbramwell/ERPNextFailOver/HEAD/BaRe/misc/50-server.cnf -------------------------------------------------------------------------------- /BaRe/rSYNC.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinhbramwell/ERPNextFailOver/HEAD/BaRe/rSYNC.sh -------------------------------------------------------------------------------- /BaRe/ros.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinhbramwell/ERPNextFailOver/HEAD/BaRe/ros.sh -------------------------------------------------------------------------------- /BaRe/trimLog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinhbramwell/ERPNextFailOver/HEAD/BaRe/trimLog.sh -------------------------------------------------------------------------------- /BaRe/utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinhbramwell/ERPNextFailOver/HEAD/BaRe/utils.sh -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinhbramwell/ERPNextFailOver/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinhbramwell/ERPNextFailOver/HEAD/README.md -------------------------------------------------------------------------------- /config.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinhbramwell/ERPNextFailOver/HEAD/config.sample -------------------------------------------------------------------------------- /docs/ExecutionLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinhbramwell/ERPNextFailOver/HEAD/docs/ExecutionLog.txt -------------------------------------------------------------------------------- /docs/ExecutionLog_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinhbramwell/ERPNextFailOver/HEAD/docs/ExecutionLog_1.png -------------------------------------------------------------------------------- /docs/ExecutionLog_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinhbramwell/ERPNextFailOver/HEAD/docs/ExecutionLog_2.png -------------------------------------------------------------------------------- /docs/ExecutionLog_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinhbramwell/ERPNextFailOver/HEAD/docs/ExecutionLog_3.png -------------------------------------------------------------------------------- /docs/ExecutionLog_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinhbramwell/ERPNextFailOver/HEAD/docs/ExecutionLog_4.png -------------------------------------------------------------------------------- /docs/ExecutionLog_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinhbramwell/ERPNextFailOver/HEAD/docs/ExecutionLog_5.png -------------------------------------------------------------------------------- /docs/ExecutionLog_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinhbramwell/ERPNextFailOver/HEAD/docs/ExecutionLog_6.png -------------------------------------------------------------------------------- /envars.example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinhbramwell/ERPNextFailOver/HEAD/envars.example.sh -------------------------------------------------------------------------------- /makeAskPassEmitter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinhbramwell/ERPNextFailOver/HEAD/makeAskPassEmitter.sh -------------------------------------------------------------------------------- /makeEnvarsFile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinhbramwell/ERPNextFailOver/HEAD/makeEnvarsFile.sh -------------------------------------------------------------------------------- /makeMariaDBRestartScript.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinhbramwell/ERPNextFailOver/HEAD/makeMariaDBRestartScript.sh -------------------------------------------------------------------------------- /master/makeMasterMariaDBScript.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinhbramwell/ERPNextFailOver/HEAD/master/makeMasterMariaDBScript.sh -------------------------------------------------------------------------------- /master/makeMasterMariaDBconfPatch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinhbramwell/ERPNextFailOver/HEAD/master/makeMasterMariaDBconfPatch.sh -------------------------------------------------------------------------------- /master/makeMasterTasks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinhbramwell/ERPNextFailOver/HEAD/master/makeMasterTasks.sh -------------------------------------------------------------------------------- /master/prepareMaster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinhbramwell/ERPNextFailOver/HEAD/master/prepareMaster.sh -------------------------------------------------------------------------------- /prepareMasterAndSlave.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinhbramwell/ERPNextFailOver/HEAD/prepareMasterAndSlave.sh -------------------------------------------------------------------------------- /ros.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinhbramwell/ERPNextFailOver/HEAD/ros.sh -------------------------------------------------------------------------------- /slave/makeSlaveMariaDBScript.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinhbramwell/ERPNextFailOver/HEAD/slave/makeSlaveMariaDBScript.sh -------------------------------------------------------------------------------- /slave/makeSlaveMariaDBconfPatch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinhbramwell/ERPNextFailOver/HEAD/slave/makeSlaveMariaDBconfPatch.sh -------------------------------------------------------------------------------- /slave/makeSlaveTasks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinhbramwell/ERPNextFailOver/HEAD/slave/makeSlaveTasks.sh -------------------------------------------------------------------------------- /slave/prepareSlave.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinhbramwell/ERPNextFailOver/HEAD/slave/prepareSlave.sh --------------------------------------------------------------------------------