[Bacula-users] Bad caps from SD: auth cram-md5

2022-10-18 Thread Kees Bakker via Bacula-users
Hi, Recently I upgraded one system to CentOS 9 stream which has bacula-client 11.0.1 I'm using the same PKI config as before (CentOS 7 with bacula-client 5.2.13) The director and the storage server have bacula 9.4.2. Other clients (Ubuntu and CentOS8) have version 9.4.2 and 9.0.6). All these cli

Re: [Bacula-users] Bad caps from SD: auth cram-md5

2022-10-19 Thread Kees Bakker via Bacula-users
On 18-10-2022 18:34, Bill Arlofski via Bacula-users wrote: On 10/18/22 04:59, Kees Bakker via Bacula-users wrote: Hi, Recently I upgraded one system to CentOS 9 stream which has bacula-client 11.0.1 I'm using the same PKI config as before (CentOS 7 with bacula-client 5.2.13) The directo

[Bacula-users] Default postgresql password readable for everyone

2024-07-18 Thread Kees Bakker via Bacula-users
Hi, Today I installed bacula-postgresql 15.0.2 on a Ubuntu 22.04 system. This was done through ansible scripts, so everything that apt install did was non-interactive. Then I was curious what the password for the database was. I saw a new random password in   /etc/dbconfig-common/bacula-post

[Bacula-users] What is a API instance for Bacularis

2024-07-22 Thread Kees Bakker via Bacula-users
Hi, The docker bacularis-web [1] asks me to add a Baculum [2] API instance. What exactly is that? I already have a functioning Bacula system with a Dir/SD and several FDs. I am looking for a replacement of the good old BAT and was hoping that Bacularis would be it. [1] https://hub.docker.c

Re: [Bacula-users] What is a API instance for Bacularis

2024-07-23 Thread Kees Bakker via Bacula-users
On 22-07-2024 17:51, Marcin Haba wrote: On Mon, 22 Jul 2024 at 17:31, Kees Bakker via Bacula-users wrote: Hi, The docker bacularis-web [1] asks me to add a Baculum [2] API instance. What exactly is that? I already have a functioning Bacula system with a Dir/SD and

[Bacula-users] Bacularis wants to connect to hardcoded port 9097

2024-07-31 Thread Kees Bakker via Bacula-users
Hi, It seems that Bacularis has port 9097 hardcoded somewhere. I've setup Apache to do Bacularis. But not with the supplied example of using port 9097. I'm just using port 433 with a proper SSL certificate. Bacula Dir/SD/FD were already running on this system, installed with Ubuntu apt. The

Re: [Bacula-users] Bacularis wants to connect to hardcoded port 9097

2024-07-31 Thread Kees Bakker via Bacula-users
On 31-07-2024 12:21, Marcin Haba wrote: On Wed, 31 Jul 2024 at 11:36, Kees Bakker via Bacula-users wrote: Hi, It seems that Bacularis has port 9097 hardcoded somewhere. I've setup Apache to do Bacularis. But not with the supplied example of using port 9097. I'm

Re: [Bacula-users] Bacularis wants to connect to hardcoded port 9097

2024-07-31 Thread Kees Bakker via Bacula-users
On 31-07-2024 12:21, Marcin Haba wrote: Hello Kees, [...] For the configuration part, Bacularis has an option to use Bacula configs in read-only mode for all or for selected Bacula resources and Bacula components. If you are interested in, you can see it on this video guide: https://www.you

Re: [Bacula-users] Bacularis wants to connect to hardcoded port 9097

2024-07-31 Thread Kees Bakker via Bacula-users
On 31-07-2024 14:31, Marcin Haba wrote: On Wed, 31 Jul 2024 at 14:08, Kees Bakker wrote: I have now enabled Config. Two problems: 1. On the Director details page, it does not show the "Configure director" tab. Hello Kees, Hi Marcin, To have the configuration function enabled,

Re: [Bacula-users] Bacularis wants to connect to hardcoded port 9097

2024-07-31 Thread Kees Bakker via Bacula-users
On 31-07-2024 14:54, Kees Bakker via Bacula-users wrote: On 31-07-2024 14:31, Marcin Haba wrote: On Wed, 31 Jul 2024 at 14:08, Kees Bakker wrote: I have now enabled Config. Two problems: 1. On the Director details page, it does not show the "Configure director" tab.

[Bacula-users] Is there a bconsole command to list the file size of a job?

2024-08-01 Thread Kees Bakker via Bacula-users
Hi, We have the "list files jobid=" command, but that only lists the file names. How can I list the files in a job with the names, the size and other details (perhaps "ls -l" style output)? -- Kees ___ Bacula-users mailing list Bacula-users@lists

Re: [Bacula-users] Is there a bconsole command to list the file size of a job?

2024-08-01 Thread Kees Bakker via Bacula-users
On 01-08-2024 15:00, Radosław Korzeniewski wrote: Hi, czw., 1 sie 2024 o 13:43 Kees Bakker napisał(a): Thanks BTW What GUI is that? IBAdmin from Inteos. There is even (unmaintained) open-source version of it: https://github.com/inteos/IBAdmin Thanks Django, Python. Now we're tal

Re: [Bacula-users] running bconsole commands in bash script

2025-06-23 Thread Kees Bakker via Bacula-users
Perhaps you want to do it like this for vol in `echo ${vol_list}` do   echo “purge volume=$vol yes” done | bconsole or for vol in ${vol_list} do