<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Bacula on centos Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/bacula-on-centos/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Mon, 25 Mar 2019 19:25:47 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.8.12</generator>
	<item>
		<title>How Install Bacula Backup Server and Client on CentOS</title>
		<link>https://www.osradar.com/how-install-bacula-backup-server-and-client-on-centos/</link>
					<comments>https://www.osradar.com/how-install-bacula-backup-server-and-client-on-centos/#comments</comments>
		
		<dc:creator><![CDATA[Mel]]></dc:creator>
		<pubDate>Mon, 25 Mar 2019 19:25:47 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Bacula on centos]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=11571</guid>

					<description><![CDATA[<p>Introduction: Bacula is an open source network backup program enabling you to backup, restore, and verify data across your network. There are Bacula clients for Linux, Windows, and Mac making it a cross-platform network wide solution. It is very flexible and robust, which makes it, while slightly cumbersome to configure, suitable for backups in many situations. [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-install-bacula-backup-server-and-client-on-centos/">How Install Bacula Backup Server and Client on CentOS</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Introduction:<br />
Bacula is an open source network backup program enabling you to backup, restore, and verify data across your network. There are Bacula clients for Linux, Windows, and Mac making it a cross-platform network wide solution. It is very flexible and robust, which makes it, while slightly cumbersome to configure, suitable for backups in many situations. A backup system is an important component in most server infrastructures, as recovering from data loss is often a critical part of disaster recovery plans. In this tutorial, we will show you how to install and configure the server components of Bacula on a Centos 7 server.</p>
<ol>
<li>Prerequisites:<br />
You must have super user (sudo) access on a Centos 7 server. Also, the server will require adequate disk space for all of the backups that you plan on retaining at any given time. You should enable Private Networking on your Bacula server, and all of your client servers that are in the same datacenter region. This will allow your servers to use private networking when performing backups, reducing network overhead.</p>
<ol>
<li>Overview:<br />
Bacula is made up of several components and services used to manage which files to backup and backup locations:</li>
</ol>
<ul>
<li>Bacula Director: a service that controls all backup, restore, verify, and archive operations.</li>
<li>Bacula Console: an application allowing communication with the Director. There are three versions of the Console:
<ul>
<li>Text based command line version.</li>
<li>Gnome based GTK+ Graphical User Interface (GUI) interface.</li>
<li>wxWidgets GUI interface.</li>
</ul>
</li>
<li>Bacula File: also known as the Bacula Client program. This application is installed on machines to be backed up, and is responsible for the data requested by the Director.</li>
<li>Bacula Storage: it is programs that performs the storage and recovery of data to the physical media.</li>
<li>Bacula Catalog: is responsible for maintaining the file indexes and volume databases for all files backed up, enabling quick location and restoration of archived files. The Catalog supports three different databases MySQL, PostgreSQL, and SQLite.</li>
</ul>
</li>
<li>Installation:<br />
Bacula uses an SQL database, such as MySQL or Mariadb, to manage its backups catalog. We will use Mariadb. First we will login as root user.</p>
<pre>#su</pre>
<p>Then install Bacual and mysql server using command:</p>
<pre># yum  -y install bacula-director-mysql bacula-console bacula-client bacula-storage-mysql mysql-server mysql-devel</pre>
<pre># yum –y install mariadb-server.86_64 mariadb</pre>
<p>Once the installation is complete, we need to start MySQL service and configure it to automatically start on system reboot with the following command:</p>
<pre># sudo systemctl start mariadb.service#sudo systemctl enable mariadb.service

</pre>
<p>Now create root password for mysql.</p>
<p>Note:  i am using password as <strong>“centos” </strong>wherever i need to setup password. create your own password.</p>
<pre># mysqladmin -u root password centos</pre>
<p>Next run the following commands one by one to create database and necessary tables for Bacula. Here <strong>“-u root”</strong> means that login with root account and <strong>“-p”</strong> means prompt for mysql root password in my case is <strong>“centos”</strong>.</p>
<p>&nbsp;</p>
<pre># /usr/libexec/bacula/grant_mysql_privileges -u root -p

# /usr/libexec/bacula/create_mysql_database -u root -p

# /usr/libexec/bacula/make_mysql_tables -u root -p</pre>
<p>&nbsp;</p>
<p>Next, we want to run a simple security script that will remove some dangerous defaults and lock down access to our database system a little bit.</p>
<pre># sudo mysql_secure_installation</pre>
<p>&nbsp;</p>
<p>The prompt will ask you for your current root password. Enter the password. For the rest of the questions, you should simply hit the Enter key through each prompt to accept the default values. This will remove some sample users and databases, disable remote root logins, and load these new rules so that MySQL immediately respects the changes we have made.</p>
<p>It will look like this</p>
<p><img loading="lazy" class="wp-image-11574 size-full aligncenter" src="https://www.osradar.com/wp-content/uploads/2019/03/mariadb-pic-3.png" alt="" width="732" height="89" srcset="https://www.osradar.com/wp-content/uploads/2019/03/mariadb-pic-3.png 732w, https://www.osradar.com/wp-content/uploads/2019/03/mariadb-pic-3-300x36.png 300w, https://www.osradar.com/wp-content/uploads/2019/03/mariadb-pic-3-696x85.png 696w" sizes="(max-width: 732px) 100vw, 732px" /></p>
<p>Now we need to set the password for the Bacula database user.</p>
<p>Enter the MySQL console, as the root MySQL user:</p>
<pre># mysql -u root –p</pre>
<p>Enter the MySQL root password.</p>
<p>Now set the password for the Bacula database user. Use this command, but replace &#8220;centos&#8221; with strong password:</p>
<pre># Mariadb [(none)]&gt; UPDATE mysql.user SET password=PASSWORD("centos") WHERE user='bacula';Mariadb [(none)]&gt; FLUSH PRIVILEGES;</pre>
<p>&nbsp;</p>
<p>Once you&#8217;re done here, exit the MySQL prompt:</p>
<pre># Mariadb [(none)]&gt; exit</pre>
<p>Enable MariaDB to start on boot. Use the following command to do so:</p>
<p>&nbsp;</p>
<pre># sudo systemctl enable mariadb</pre>
<p>&nbsp;</p>
<h3>Set Bacula to Use MySQL Library</h3>
<p>By default, Bacula is set to use the PostgreSQL library. Because we are using MySQL, we need to set it to use the MySQL library instead.</p>
<p>Run this command:</p>
<pre># sudo alternatives --config libbaccats.s</pre>
<p>You will see the following prompt.</p>
<p>Enter 1 (MySQL):</p>
<pre>OutputThere are 3 programs which provide 'libbaccats.so'.

 Selection    Command

-----------------------------------------------

1           /usr/lib64/libbaccats-mysql.so

2           /usr/lib64/libbaccats-sqlite3.so*+

 3           /usr/lib64/libbaccats-postgresql.so 

Enter to keep the current selection[+], or type selection number: 1</pre>
<h2><strong>Create Backup and Restore Directories</strong></h2>
<p>Bacula needs a <strong>backup</strong> directory—for storing backup archives—and <strong>restore</strong> directory—where restored files will be placed. If your system has multiple partitions, make sure to create the directories on one that has sufficient space.</p>
<p>Let&#8217;s create new directories for both of these purposes:</p>
<pre># sudo mkdir -p /bacula/backup /bacula/restore</pre>
<p>We need to change the file permissions so that only the bacula process (and a superuser) can access these locations:</p>
<pre># sudo chown -R bacula:bacula /bacula

# sudo chmod -R 700 /bacula</pre>
<p>Now we&#8217;re ready to configure the Bacula Director.</p>
<h2><strong>Configure Bacula Director</strong></h2>
<p>Bacula has several components that must be configured independently in order to function correctly. The configuration files can all be found in the /etc/bacula directory.</p>
<p>We&#8217;ll start with the Bacula Director.<br />
Open the Bacula Director Configuration file in your favorite text editor. We&#8217;ll use vim:</p>
<p># sudo vim /etc/bacula/bacula-dir.conf</p>
<h3>Configure Director Resource</h3>
<p>In this file we will Update Bacula server hostname, bacula mysql user password, Bacula console password, Bacula file daemon password etc. Be mindful that you should use a fully qualified domain name for adding clients or simply use the IP address instead. Edit just those words are <strong>Bold</strong>.</p>
<p>bacula-dir.conf — Add Director DirAddress</p>
<p>[&#8230;]Director {                            # define myself<br />
Name = bacula-dir<br />
DIRport = 9101                # where we listen for UA connections<br />
QueryFile = &#8220;/usr/libexec/bacula/query.sql&#8221;<br />
WorkingDirectory = &#8220;/var/spool/bacula&#8221;<br />
PidDirectory = &#8220;/var/run&#8221;<br />
Maximum Concurrent Jobs = 1<br />
Password = &#8220;<strong>centos</strong>&#8221;      # Console password<br />
Messages = Daemon</p>
<p>[&#8230;]</p>
<p># Client (File Services) to backup</p>
<p>Client {<br />
Name = bacula-fd<br />
Address = <strong>192.168.100.146<br />
</strong>FDPort = 9102<br />
Catalog = MyCatalogPassword = &#8220;<strong>centos</strong>&#8221;          # password for FileDaemon<br />
File Retention = 30 days            # 30 days<br />
Job Retention = 6 months            # six months<br />
AutoPrune = yes                     # Prune expired Jobs/Files</p>
<p>}<br />
[&#8230;]</p>
<p># Definition of file storage device<br />
Storage {<br />
Name = File# Do not use &#8220;localhost&#8221; here<br />
Address =<strong> 192.168.100.146 </strong>               # N.B. Use a fully qualified name here<br />
SDPort = 9103<br />
Password = &#8220;<strong>centos</strong>&#8221;<br />
Device = FileStorage<br />
Media Type = File<br />
}<br />
[&#8230;]<br />
# Generic catalog service<br />
Catalog {<br />
Name = MyCatalog<br />
# Uncomment the following line if you want the dbi driver<br />
# dbdriver = &#8220;dbi:sqlite3&#8221;; dbaddress = 127.0.0.1; dbport =<br />
dbname = &#8220;bacula&#8221;; dbuser = &#8220;<strong>bacula</strong>&#8220;; dbpassword = &#8220;<strong>centos</strong>&#8221;</p>
<p>}<br />
[&#8230;]</p>
<p>Console {<br />
Name = bacula-mon<br />
Password = &#8220;centos&#8221;<br />
CommandACL = status, .status<br />
}<br />
Now move on to the rest of the file. Now we will Update Bacula Console.</p>
<p>Edit file <strong>/etc/bacula/bconsole.conf</strong></p>
<pre># vi /etc/bacula/bconsole.conf</pre>
<p>&nbsp;</p>
<p>Director {<br />
Name = bacula-dir<br />
DIRport = 9101<br />
address = localhost<br />
Password = &#8220;<strong>centos</strong>&#8221;<br />
}</p>
<p style="line-height: 19.5pt; background: white; margin: 0in 0in 19.5pt 0in;"><strong><span style="color: #222222;">Update Storage Daemon</span></strong></p>
<p style="line-height: 19.5pt; background: white; margin: 0in 0in 19.5pt 0in;"><span style="color: #222222;">Edit file <strong>/etc/bacula/bacula-sd.conf</strong></span></p>
<pre style="margin-top: .25in; background: #F1F1F1;"><span style="font-size: 12.0pt; font-family: 'Times New Roman',serif; color: #222222;"># vi /etc/bacula/bacula-sd.conf</span></pre>
<p style="background: white; margin: 0in 0in 16.5pt 0in;"><span style="color: black;"> </span></p>
<p style="background: white; margin: 0in 0in 16.5pt 0in;"><span style="color: #222222; background: white;">Update the password, Find the red lines and delete them, do not uncomment them. Also set your Archive device path.</span></p>
<p style="background: white; margin: 0in 0in 16.5pt 0in;"><span style="color: #222222; background: white;">Set password here.</span></p>
<pre style="margin-top: .25in; background: #F1F1F1;"><span style="font-size: 12.0pt; font-family: 'Times New Roman',serif; color: #222222;">[...]</span></pre>
<pre style="margin-top: .25in; background: #F1F1F1;"><span style="font-size: 12.0pt; font-family: 'Times New Roman',serif; color: #222222;">Director {</span></pre>
<pre style="margin-top: .25in; background: #F1F1F1;"><span style="font-size: 12.0pt; font-family: 'Times New Roman',serif; color: #222222;">Name = bacula-dir</span></pre>
<pre style="margin-top: .25in; background: #F1F1F1;"><span style="font-size: 12.0pt; font-family: 'Times New Roman',serif; color: #222222;">Password = </span><span style="font-size: 12.0pt; font-family: 'Times New Roman',serif; color: red;">"centos"</span></pre>
<pre style="margin-top: .25in; background: #F1F1F1;"><span style="font-size: 12.0pt; font-family: 'Times New Roman',serif; color: #222222;">}</span></pre>
<p style="background: white; margin: 0in 0in 16.5pt 0in;"><span style="color: black;"> </span></p>
<p style="background: white; margin: 0in 0in 16.5pt 0in;"><span style="color: black;">Set archive path here .</span></p>
<pre style="margin-top: .25in; background: #F1F1F1;"><span style="font-size: 12.0pt; font-family: 'Times New Roman',serif; color: #222222;">Device {</span></pre>
<pre style="margin-top: .25in; background: #F1F1F1;"><span style="font-size: 12.0pt; font-family: 'Times New Roman',serif; color: #222222;">Name = FileStorage</span></pre>
<pre style="margin-top: .25in; background: #F1F1F1;"><span style="font-size: 12.0pt; font-family: 'Times New Roman',serif; color: #222222;">Media Type = File</span></pre>
<pre style="margin-top: .25in; background: #F1F1F1;"><span style="font-size: 12.0pt; font-family: 'Times New Roman',serif; color: #222222;">Archive Device = </span><span style="font-size: 12.0pt; font-family: 'Times New Roman',serif; color: red;">/mybackup</span></pre>
<pre style="margin-top: .25in; background: #F1F1F1;"><span style="font-size: 12.0pt; font-family: 'Times New Roman',serif; color: #222222;">LabelMedia = yes;                   # lets Bacula label unlabeled media</span></pre>
<pre style="margin-top: .25in; background: #F1F1F1;"><span style="font-size: 12.0pt; font-family: 'Times New Roman',serif; color: #222222;">Random Access = Yes;</span></pre>
<pre style="margin-top: .25in; background: #F1F1F1;"><span style="font-size: 12.0pt; font-family: 'Times New Roman',serif; color: #222222;">AutomaticMount = yes;               # when device opened, read it</span></pre>
<pre style="margin-top: .25in; background: #F1F1F1;"><span style="font-size: 12.0pt; font-family: 'Times New Roman',serif; color: #222222;">RemovableMedia = no;</span></pre>
<pre style="margin-top: .25in; background: #F1F1F1;"><span style="font-size: 12.0pt; font-family: 'Times New Roman',serif; color: #222222;">AlwaysOpen = no;</span></pre>
<pre style="margin-top: .25in; background: #F1F1F1;"><span style="font-size: 12.0pt; font-family: 'Times New Roman',serif; color: #222222;">}</span></pre>
<pre style="margin-top: .25in; background: #F1F1F1;"><span style="font-size: 12.0pt; font-family: 'Times New Roman',serif; color: #222222;">[...]</span></pre>
<p style="background: white; margin: 0in 0in 16.5pt 0in;"><span style="color: black;"> </span></p>
<p style="background: white; margin: 0in 0in 16.5pt 0in;"><span style="color: black;">Delete these lines in the picture below.</span></p>
<p><img loading="lazy" class="alignnone wp-image-11575 size-full" src="https://www.osradar.com/wp-content/uploads/2019/03/delete-pic-1.png" alt="" width="568" height="177" srcset="https://www.osradar.com/wp-content/uploads/2019/03/delete-pic-1.png 568w, https://www.osradar.com/wp-content/uploads/2019/03/delete-pic-1-300x93.png 300w" sizes="(max-width: 568px) 100vw, 568px" /></p>
<p style="line-height: 19.5pt; background: white; margin: 0in 0in 19.5pt 0in;"><strong><span style="color: #222222;">Now we will Update file daemon</span></strong></p>
<p style="line-height: 19.5pt; background: white; margin: 0in 0in 19.5pt 0in;"><span style="color: #222222;">Edit file <strong>/etc/bacula/bacula-fd.conf</strong>,</span></p>
<pre style="margin-top: .25in; background: #F1F1F1;"><span style="font-size: 12.0pt; font-family: 'Times New Roman',serif; color: #222222;"># vi /etc/bacula/bacula-fd.conf</span></pre>
<p style="line-height: 19.5pt; background: white; margin: 0in 0in 19.5pt 0in;"><span style="color: #222222;">Update the password.</span></p>
<p style="line-height: 19.5pt; background: white; margin: 0in 0in 19.5pt 0in;"><span style="color: #222222;"> </span></p>
<pre style="margin-top: .25in; background: #F1F1F1;"><span style="font-size: 12.0pt; font-family: 'Times New Roman',serif; color: #222222;"># List Directors who are permitted to contact this File daemon</span></pre>
<pre style="margin-top: .25in; background: #F1F1F1;"><span style="font-size: 12.0pt; font-family: 'Times New Roman',serif; color: #222222;">#</span></pre>
<pre style="margin-top: .25in; background: #F1F1F1;"><span style="font-size: 12.0pt; font-family: 'Times New Roman',serif; color: #222222;">Director {</span></pre>
<pre style="margin-top: .25in; background: #F1F1F1;"><span style="font-size: 12.0pt; font-family: 'Times New Roman',serif; color: #222222;">Name = bacula-dir</span></pre>
<pre style="margin-top: .25in; background: #F1F1F1;"><span style="font-size: 12.0pt; font-family: 'Times New Roman',serif; color: #222222;">Password = </span><span style="font-size: 12.0pt; font-family: 'Times New Roman',serif; color: red;">"centos"</span></pre>
<pre style="margin-top: .25in; background: #F1F1F1;"><span style="font-size: 12.0pt; font-family: 'Times New Roman',serif; color: #222222;">}</span></pre>
<p style="line-height: 19.5pt; background: white; margin: 0in 0in 19.5pt 0in;"><span style="color: #222222;"> </span></p>
<p style="line-height: 19.5pt; background: white; margin: 0in 0in 19.5pt 0in;"><span style="color: #222222;">Delete these line in below picture</span></p>
<p style="line-height: 19.5pt; background: white; margin: 0in 0in 19.5pt 0in;"><span style="color: #222222;"> </span><img loading="lazy" class="wp-image-11576 size-full aligncenter" src="https://www.osradar.com/wp-content/uploads/2019/03/delete-pic-2.png" alt="" width="412" height="128" srcset="https://www.osradar.com/wp-content/uploads/2019/03/delete-pic-2.png 412w, https://www.osradar.com/wp-content/uploads/2019/03/delete-pic-2-300x93.png 300w" sizes="(max-width: 412px) 100vw, 412px" /></p>
<p>Now we finished all passwords and address modifications. Next restart all bacula daemons and make them to start automatically on every reboot.</p>
<pre style="line-height: 19.5pt; background: white; margin: 0in 0in 19.5pt 0in;"># systemctl start bacula-dir
# systemctl start bacula-fd
# systemctl start bacula-sd
# systemctl enable bacula-dir
# systemctl enable bacula-fd
# systemctl enable bacula-sd</pre>
<p>&nbsp;</p>
<p>Bacula has been successfully installed and configured. You can now add clients, jobs and volumes by updating the Bacula Config files. Alternatively you can use <strong>webmin</strong> to make the work simpler. It is quite easier then updating the Config files manually.</p>
<p><strong>Manage Bacula With Webmin</strong></p>
<p>Webmin is a web-based interface for system administration for Linux/Unix. Using any modern web browser, you can setup user accounts, Apache, DNS, file sharing and much more.</p>
<p>Download and install the latest version of webmin.</p>
<p>&nbsp;</p>
<pre style="line-height: 19.5pt; background: white; margin: 0in 0in 19.5pt 0in;"># wget http://prdownloads.sourceforge.net/webadmin/webmin-1.900-1.noarch.rpm</pre>
<p>Webmin requires some dependencies, so we will install using this command</p>
<pre style="line-height: 19.5pt; background: white; margin: 0in 0in 19.5pt 0in;">#yum -y install perl perl-Net-SSLeay openssl perl-IO-Tty perl-Encode-Detect
# rpm -Uvh webmin-1.900-1.noarch.rpm
# systemctl start webmin
# systemctl enable webmin</pre>
<p><strong>Rule for Firewall.</strong></p>
<p>Now we will Add rule for Firewall, If we want to access the bacula server from a remote system, allow the webmin port <strong>“10000”</strong> and bacula ports <strong>“9101”, “9102”, “9103”</strong> through your firewall. Open terminal and run these commands one by one.</p>
<pre style="background: white; margin: 0in 0in 16.5pt 0in;"># sudo firewall-cmd --zone=public --add-port=10000/tcp --permanent
# sudo firewall-cmd --zone=public --add-port=9101/tcp --permanent
# sudo firewall-cmd --zone=public --add-port=9102/tcp --permanent
# sudo firewall-cmd --zone=public --add-port=9103/tcp --permanent</pre>
<p>&nbsp;</p>
<p>Reload the rules:</p>
<pre style="background: white; margin: 0in 0in 16.5pt 0in;">#firewall-cmd --reload</pre>
<p><strong>Access Webmin<br />
</strong></p>
<p style="line-height: 19.5pt; background: white; margin: 0in 0in 19.5pt 0in;"><span style="color: #222222;">Now you can login through webmin by <strong>“//http://server-ip-address:10000” </strong>or<strong>“http://domain-name:10000/”</strong>.</span></p>
<p style="line-height: 19.5pt; background: white; margin: 0in 0in 19.5pt 0in;"><span style="color: #222222;">Login to webmin using your root user and its password.</span></p>
<p><img loading="lazy" class="alignnone wp-image-11579 size-full" src="https://www.osradar.com/wp-content/uploads/2019/03/webmin-logged-in.png" alt="" width="1366" height="642" srcset="https://www.osradar.com/wp-content/uploads/2019/03/webmin-logged-in.png 1366w, https://www.osradar.com/wp-content/uploads/2019/03/webmin-logged-in-300x141.png 300w, https://www.osradar.com/wp-content/uploads/2019/03/webmin-logged-in-768x361.png 768w, https://www.osradar.com/wp-content/uploads/2019/03/webmin-logged-in-1024x481.png 1024w, https://www.osradar.com/wp-content/uploads/2019/03/webmin-logged-in-696x327.png 696w, https://www.osradar.com/wp-content/uploads/2019/03/webmin-logged-in-1068x502.png 1068w, https://www.osradar.com/wp-content/uploads/2019/03/webmin-logged-in-894x420.png 894w" sizes="(max-width: 1366px) 100vw, 1366px" /></p>
<p style="line-height: 19.5pt; background: white; margin: 0in 0in 19.5pt 0in;"><span style="color: #222222;">If unable to login. Stop firewall (not recommended just for testing) by this command</span></p>
<pre style="line-height: 19.5pt; background: white; margin: 0in 0in 19.5pt 0in;"><span style="color: #222222;"># systemctl stop firewalld</span></pre>
<p style="line-height: 19.5pt; background: white; margin: 0in 0in 19.5pt 0in;"><span style="color: #222222;">Then try to login again if logged in then your firewall rules are need to set.</span></p>
<p style="line-height: 19.5pt; background: white; margin: 0in 0in 19.5pt 0in;"><span style="color: #222222;"> </span></p>
<p style="line-height: 19.5pt; background: white; margin: 0in 0in 19.5pt 0in;"><span style="color: #222222;"><img loading="lazy" class="alignnone wp-image-11578 size-full" src="https://www.osradar.com/wp-content/uploads/2019/03/webmin-logged-in-1.png" alt="" width="1365" height="725" srcset="https://www.osradar.com/wp-content/uploads/2019/03/webmin-logged-in-1.png 1365w, https://www.osradar.com/wp-content/uploads/2019/03/webmin-logged-in-1-300x159.png 300w, https://www.osradar.com/wp-content/uploads/2019/03/webmin-logged-in-1-768x408.png 768w, https://www.osradar.com/wp-content/uploads/2019/03/webmin-logged-in-1-1024x544.png 1024w, https://www.osradar.com/wp-content/uploads/2019/03/webmin-logged-in-1-696x370.png 696w, https://www.osradar.com/wp-content/uploads/2019/03/webmin-logged-in-1-1068x567.png 1068w, https://www.osradar.com/wp-content/uploads/2019/03/webmin-logged-in-1-791x420.png 791w" sizes="(max-width: 1365px) 100vw, 1365px" /></span></p>
<p style="line-height: 19.5pt; background: white; margin: 0in 0in 19.5pt 0in;"><span style="color: #222222; background: white;">Click on the <strong>“Bacula Backup System” </strong>link. Initially the Bacula server won’t start automatically. To start Bacula server click on <strong>“Module Configuration”</strong> link on the right of the <strong>“Bacula Backup System”</strong> page.</span></p>
<p><img loading="lazy" class="aligncenter wp-image-11581 size-full" src="https://www.osradar.com/wp-content/uploads/2019/03/bacula-backup-fialed.png" alt="" width="1366" height="656" srcset="https://www.osradar.com/wp-content/uploads/2019/03/bacula-backup-fialed.png 1366w, https://www.osradar.com/wp-content/uploads/2019/03/bacula-backup-fialed-300x144.png 300w, https://www.osradar.com/wp-content/uploads/2019/03/bacula-backup-fialed-768x369.png 768w, https://www.osradar.com/wp-content/uploads/2019/03/bacula-backup-fialed-1024x492.png 1024w, https://www.osradar.com/wp-content/uploads/2019/03/bacula-backup-fialed-696x334.png 696w, https://www.osradar.com/wp-content/uploads/2019/03/bacula-backup-fialed-1068x513.png 1068w, https://www.osradar.com/wp-content/uploads/2019/03/bacula-backup-fialed-875x420.png 875w" sizes="(max-width: 1366px) 100vw, 1366px" /></p>
<p><img loading="lazy" class="alignnone size-medium wp-image-11582" src="https://www.osradar.com/wp-content/uploads/2019/03/bacula-backup-pan-181x300.png" alt="" width="181" height="300" srcset="https://www.osradar.com/wp-content/uploads/2019/03/bacula-backup-pan-181x300.png 181w, https://www.osradar.com/wp-content/uploads/2019/03/bacula-backup-pan-253x420.png 253w, https://www.osradar.com/wp-content/uploads/2019/03/bacula-backup-pan.png 427w" sizes="(max-width: 181px) 100vw, 181px" /> <img loading="lazy" class="alignnone wp-image-11583 size-full" src="https://www.osradar.com/wp-content/uploads/2019/03/bacula-module-settings.png" alt="" width="1366" height="656" srcset="https://www.osradar.com/wp-content/uploads/2019/03/bacula-module-settings.png 1366w, https://www.osradar.com/wp-content/uploads/2019/03/bacula-module-settings-300x144.png 300w, https://www.osradar.com/wp-content/uploads/2019/03/bacula-module-settings-768x369.png 768w, https://www.osradar.com/wp-content/uploads/2019/03/bacula-module-settings-1024x492.png 1024w, https://www.osradar.com/wp-content/uploads/2019/03/bacula-module-settings-696x334.png 696w, https://www.osradar.com/wp-content/uploads/2019/03/bacula-module-settings-1068x513.png 1068w, https://www.osradar.com/wp-content/uploads/2019/03/bacula-module-settings-875x420.png 875w" sizes="(max-width: 1366px) 100vw, 1366px" /></p>
<p>That&#8217;s it. here you can schedule backups according to your desire.</p>
<p><img loading="lazy" class="alignnone wp-image-11584 size-full" src="https://www.osradar.com/wp-content/uploads/2019/03/finished.png" alt="" width="1365" height="729" srcset="https://www.osradar.com/wp-content/uploads/2019/03/finished.png 1365w, https://www.osradar.com/wp-content/uploads/2019/03/finished-300x160.png 300w, https://www.osradar.com/wp-content/uploads/2019/03/finished-768x410.png 768w, https://www.osradar.com/wp-content/uploads/2019/03/finished-1024x547.png 1024w, https://www.osradar.com/wp-content/uploads/2019/03/finished-696x372.png 696w, https://www.osradar.com/wp-content/uploads/2019/03/finished-1068x570.png 1068w, https://www.osradar.com/wp-content/uploads/2019/03/finished-786x420.png 786w" sizes="(max-width: 1365px) 100vw, 1365px" /></p>
<p>Best of Luck. !!!!</p>
<p>&nbsp;</p>
<p><strong> </strong></li>
</ol>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-install-bacula-backup-server-and-client-on-centos/">How Install Bacula Backup Server and Client on CentOS</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/how-install-bacula-backup-server-and-client-on-centos/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
	</channel>
</rss>
