Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changed some descriptions and unified ip's #2

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 21 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,14 +143,20 @@ The client's configured. Now return to the Director to add the client profile,
cd /etc/bacula/local.d/servers/
cp 1/self.conf 2/server-1.conf
nano 2/server-1.conf
# Edit Name = self, Password = "XYZ", Address = "127.0.0.1"
# New configuration should look like
# Client {
# Name = server-1
# Password = "foo/bar+baz"
# Address = "43.2.1.5"
# FileSet = "Client-Layer"
# }
```

Update Name, Password, and Address with information of the client you wish to backup. Example:

```bash
MACscr marked this conversation as resolved.
Show resolved Hide resolved
Client {
Name = server-1
Password = "foo/bar+baz"
Address = "61.2.12.11"
FileSet = "Client-Layer"
}
```

```bash
systemctl restart bacula-dir
```

Expand All @@ -167,6 +173,11 @@ Clone repository and install supplemental RPMs.
```bash
git clone https://github.com/apisnetworks/apnscp-bacula
yum install -y bacula-director bacula-client bacula-storage bacula-console
cp -a apnscp-bacula/conf/* /etc/bacula/
cd /etc/bacula/
ln -s bconsole-apnscp.conf bconsole.conf
ln -s bacula-sd-apnscp.conf bacula-sd.conf
ln -s bacula-dir-apnscp.conf bacula-dir.conf
systemctl enable bacula-sd bacula-dir
```

Expand Down Expand Up @@ -217,7 +228,7 @@ systemctl enable bacula-sd bacula-dir bacula-fd

### File Daemon manual installation

For each device whitelist firewall using firewall-cmd.
For each device, whitelist the Director IP address in the firewall using firewall-cmd.
```bash
firewall-cmd --permanent --zone=public --add-source=192.168.100.1
firewall-cmd --permanent --zone=public --add-source=43.2.1.5
```