Use bpipe with Bacula
- No Comments
- lut, 10, 2019
- siwy
- Bacula
Source: bacula.us-1 bacula.us-2 I use bpipe to backup ProxMox VM. The *.vma files is transfer to Bacula and save disk space on hypervisor. The plugin bpipe is installed in default bacula instalation. 1. Make a script in the bacula machine: #!/bin/bash echo „bpipe:/var/100-vm.vma:/usr/bin/vzdump 100 –quiet –stdout –mode suspend:/usr/sbin/qmrestore – 100 –force” […]
Read MoreBacula-client installation (CentOS 7 and Debian 9)
- No Comments
- sty, 13, 2019
- siwy
- Bacula, CentOS, Debian
1. Installation dependence: CentOS 7 sudo yum install gcc gcc-c++ libacl-devel lzo-devel mt-st mtx openssl-devel readline-devel zlib-devel Debian 9 sudo apt install build-essential 2. Installation bacula-client: Download bacula tar from sourceforge.net: bacula-9.4.1.tar.gz and sent tar to server CentOS 7 and Debian 9 tar -xvzf bacula-gui-9.4.1.tar.gz cd bacula-9.4.1/ sudo ./configure –prefix=/usr/local/bacula \ –disable-build-dird […]
Read MoreInstallation Bacula 9 and Baculum on CentOS 7
- 2 komentarze
- sty, 09, 2019
- siwy
- Bacula, CentOS
Source: www.bacula.pl www.bacula.org bacula.us/compilation/ bacula.us/baculum/ This tutorial install DIR and SD on one machine. 1. Download bacula tar from sourceforge.net: bacula-9.4.1.tar.gz and sent tar to server 2. Install PostgreSQL: sudo yum install postgresql-server postgresql-contrib postgresql-devel sudo postgresql-setup initdb sudo systemctl start postgresql sudo systemctl enable postgresql 3. Configuration firewalld: sudo firewall-cmd […]
Read MoreEncrypted zip with hidden files list without compression
- No Comments
- lis, 26, 2018
- siwy
- Useful commands
7z a -p -t7z -mx0 -mhe=on file.7z /path/dir a – Add files to archive -p – Set Password -t7z – Set type of archive -mx0 – Set compression Method 0 – NON 1 – Fastest 3 – Fast 5 – Normal 7 – Maximum 9 – Ultra -mhe=on – Hide files list
Read Moreknife bootstrap – Missing Cookbooks: roles
- No Comments
- lis, 26, 2018
- siwy
- Chef - Automate IT Infrastructure
Error when calling the knife bootstrap: Missing Cookbooks: —————— The following cookbooks are required by the client but don’t exist on the server: * roles Solution: Call knife bootstrap from roles folder.
Read MoreManual change of URL in WordPress
- No Comments
- paź, 18, 2018
- siwy
- Useful commands, WordPress
First login to database. Check what is the current URL: select * from wp_options where option_name = 'home’ OR option_name = 'siteurl’; SQL to change URL: UPDATE wp_options SET option_value = replace(option_value, 'https://www.old.pl’, 'http://new.home.pl’) WHERE option_name = 'home’ OR option_name = 'siteurl’; UPDATE wp_posts SET guid = replace(guid, 'https://www.old.pl’,’http://new.home.pl’); UPDATE wp_posts SET […]
Read MoreHow to fix slow LAN upload speed in Windows 10
- No Comments
- lip, 31, 2018
- siwy
- OS
Source: www.youtube.com In advanced options the ethernet adapter, disabled options: Large Send Offload (IPv4) Large Send Offload v2 (IPv4) Large Send Offload v2 (IPv6)
Read MoreInitialize Docker Swarm in CentOS (Error response from daemon: rpc error: code = Unavailable desc = grpc: the connection is unavailable)
- No Comments
- lip, 09, 2018
- siwy
- CentOS, Docker
Source: training.play-with-docker.com forums.docker.com 1. Initializing Docker Swarm on 1 node: sudo docker swarm init –advertise-addr 192.168.0.1 2. Try add the worker on 2 node: sudo docker swarm join –token SWMTKN-1-3b33jjwsqpkcy2c8og73aorjf2ao9sjm4crvbwg3xpd1ome459-ckfdcxqqahb9gy9s2t9n5mi78 192.168.0.1:2377 I have error:Error response from daemon: rpc error: code = Unavailable desc = grpc: the connection is unavailable 3. Solution: Open […]
Read MoreWordPress blog syntax
- No Comments
- lip, 04, 2018
- siwy
- Knowledge, WordPress
Source: <ul> <li><a href=”https://www.youtube.com/watch?v=jSnvgBvlweY”>www.youtube.com</a></li> </ul> Syntax: Enter – List: text <li>List:</li> <ul> <li>text</li> </ul> Chars: < – < > – > / – / ] – ] [ – [ ” – " ’ – &q#39; “ – “ ” – ” ‘ – ‘ ’ – ’ & – & […]
Read More