Re: [Bacula-users] relabeled offsite copydisk

2016-04-19 Thread Kern Sibbald

  
  
Bacula never looks at any name that may
  be associated with a disk and that can be changed by parted. 
  Bacula only looks at filenames in a filesystem that resides in a
  disk partition.  If you have not modified any of the partitions,
  everything should still be on the disk and Bacula should not know
  the name was changed.  If you modified a partition containing
  Bacula data and you only extended it, Bacula will work fine.  If
  you moved the partition or combined it with a partition in front
  of it, the filesystem will be effected, and may even have been
  reformatted causing all the data to be lost.
  
  The net result of the above is that you may not need to reset any
  of the flags in the database.  If you really do need to reset the
  copy flag, I recommend that someone else on this list work with
  you on that.
  
  Best regards,
  Kern
  
  On 04/19/2016 11:39 PM, Jerry Lowry wrote:


  
Hello, 
I have unfortunately relabel one of my offsite
backup disks using ‘parted’.  I would like to go back and
recopy the jobs
that were on it.  Is there a way to reset the copy flag in
the database
for these specific jobs?
 
Thanks
for the help! 
  
  
  
  
  --
Find and fix application performance issues faster with Applications Manager
Applications Manager provides deep performance insights into multiple tiers of
your business applications. It resolves application problems quickly and
reduces your MTTR. Get your free trial!
https://ad.doubleclick.net/ddm/clk/302982198;130105516;z
  
  
  
  ___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users



  


--
Find and fix application performance issues faster with Applications Manager
Applications Manager provides deep performance insights into multiple tiers of
your business applications. It resolves application problems quickly and
reduces your MTTR. Get your free trial!
https://ad.doubleclick.net/ddm/clk/302982198;130105516;z___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] How to build tray-monitor

2016-04-19 Thread Jason Voorhees
Thank you Kern and Eric, now I was able to build tray-monitor using
qmake and make commands

On Tue, Apr 19, 2016 at 7:30 AM, Eric Bollengier
 wrote:
> Hello Jason,
>
> The Makefile is probably generated with the "qmake" command, so, try
>
> qmake
>
> make
>
> in the qt-console/tray-monitor directory.
>
> Hope it helps
>
> Best Regards,
> Eric
>
> On 04/19/2016 02:00 PM, Jason Voorhees wrote:
>> Thank you Kern.
>>
>> Yes, I have tried that but there's no Makefile in tray-monitor
>> directory so I can't run make under this path :( I'd like to build it
>> manually using gcc + arguments but I have no idea how to do it.
>>
>> On Mon, Apr 18, 2016 at 4:04 AM, Kern Sibbald  wrote:
>>> Hello Jason,
>>>
>>> cd 
>>> ./configure 
>>> make[or "make -j9" goes faster]
>>>
>>> [I assume you have done the above, but if not do it]
>>>
>>> cd src/qt-console/tray-monitor
>>> make
>>>
>>> If I am not mistaken the binary will be in bacula-tray-monitor. You must
>>> then create a configuration file for it that is valid (tray-monitor.conf)
>>> and execute it.
>>>
>>> I have never tried it, so I am not sure it will work.  Feedback would be
>>> appreciated.
>>>
>>> Best regards,
>>> Kern
>>>
>>>
>>> On 04/16/2016 01:06 AM, Jason Voorhees wrote:

 Hello guys:

 I've built Bacula 7.4.0 but I have no idea how to build the
 tray-monitor application. I can't find any arguments in ./configure
 --help to achieve it even when I found a tray-monitor directory in the
 contents of the tarball.

 Hope someone can give me some ideas.

 Thanks in advance.


>
> --
> Find and fix application performance issues faster with Applications Manager
> Applications Manager provides deep performance insights into multiple tiers of
> your business applications. It resolves application problems quickly and
> reduces your MTTR. Get your free trial!
> https://ad.doubleclick.net/ddm/clk/302982198;130105516;z
> ___
> Bacula-users mailing list
> Bacula-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/bacula-users

--
Find and fix application performance issues faster with Applications Manager
Applications Manager provides deep performance insights into multiple tiers of
your business applications. It resolves application problems quickly and
reduces your MTTR. Get your free trial!
https://ad.doubleclick.net/ddm/clk/302982198;130105516;z
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] relabeled offsite copydisk

2016-04-19 Thread Jerry Lowry
Hello,  I have unfortunately relabel one of my offsite backup disks using
‘parted’.  I would like to go back and recopy the jobs that were on it.  Is
there a way to reset the copy flag in the database for these specific jobs?



Thanks for the help!
--
Find and fix application performance issues faster with Applications Manager
Applications Manager provides deep performance insights into multiple tiers of
your business applications. It resolves application problems quickly and
reduces your MTTR. Get your free trial!
https://ad.doubleclick.net/ddm/clk/302982198;130105516;z___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] Bacula 7.0.5 and RHEL 7

2016-04-19 Thread Craig Shiroma
Hello,

I have a few RHEL 7 servers slated to be backed up soon.  Will Bacula 7.0.5
(on RHEL 6) have any problems backing up these servers?  Anything special I
need to do or be aware of?

Best regards,
Craig
--
Find and fix application performance issues faster with Applications Manager
Applications Manager provides deep performance insights into multiple tiers of
your business applications. It resolves application problems quickly and
reduces your MTTR. Get your free trial!
https://ad.doubleclick.net/ddm/clk/302982198;130105516;z___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] How to build tray-monitor

2016-04-19 Thread Eric Bollengier
Hello Jason,

The Makefile is probably generated with the "qmake" command, so, try

qmake

make

in the qt-console/tray-monitor directory.

Hope it helps

Best Regards,
Eric

On 04/19/2016 02:00 PM, Jason Voorhees wrote:
> Thank you Kern.
> 
> Yes, I have tried that but there's no Makefile in tray-monitor
> directory so I can't run make under this path :( I'd like to build it
> manually using gcc + arguments but I have no idea how to do it.
> 
> On Mon, Apr 18, 2016 at 4:04 AM, Kern Sibbald  wrote:
>> Hello Jason,
>>
>> cd 
>> ./configure 
>> make[or "make -j9" goes faster]
>>
>> [I assume you have done the above, but if not do it]
>>
>> cd src/qt-console/tray-monitor
>> make
>>
>> If I am not mistaken the binary will be in bacula-tray-monitor. You must
>> then create a configuration file for it that is valid (tray-monitor.conf)
>> and execute it.
>>
>> I have never tried it, so I am not sure it will work.  Feedback would be
>> appreciated.
>>
>> Best regards,
>> Kern
>>
>>
>> On 04/16/2016 01:06 AM, Jason Voorhees wrote:
>>>
>>> Hello guys:
>>>
>>> I've built Bacula 7.4.0 but I have no idea how to build the
>>> tray-monitor application. I can't find any arguments in ./configure
>>> --help to achieve it even when I found a tray-monitor directory in the
>>> contents of the tarball.
>>>
>>> Hope someone can give me some ideas.
>>>
>>> Thanks in advance.
>>>
>>>

--
Find and fix application performance issues faster with Applications Manager
Applications Manager provides deep performance insights into multiple tiers of
your business applications. It resolves application problems quickly and
reduces your MTTR. Get your free trial!
https://ad.doubleclick.net/ddm/clk/302982198;130105516;z
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] How to build tray-monitor

2016-04-19 Thread Kern Sibbald

  
  
Hello Jason,
  
  Yes, building the tray monitor is fairly complex, and perhaps in
  the next major version, it will be included in the automatic build
  because we will have some important new functionality via an
  enhanced "tray-monitor".
  
  So here is a corrected set of instructions that will probably
  work:
  
  cd 
./configure --enable-bat[note: I have added --enable-bat]
make[or "make -j9" goes faster]

[I assume you have done the above, but if not do it]

cd src/qt-console/tray-monitor
qmake [note: I have added qmake]
make

  I am not sure that the --enable-bat is really needed, but in any
  case, if you cannot build bat, you will not be able to build the
  tray monitor both of which require the correct version of Qt.  I
  use Ubuntu 12.04, which has the correct version of Qt dev library
  packages for compiling Bat. You need Qt version 4.8.4 or later,
  and I doubt that bat/tray-monitor will build with Qt >= 5.0.0
  
  That is about all the help I can be.  Sorry.
  
  Best regards,
  Kern
  
  
  On 04/19/2016 02:00 PM, Jason Voorhees wrote:


  Thank you Kern.

Yes, I have tried that but there's no Makefile in tray-monitor
directory so I can't run make under this path :( I'd like to build it
manually using gcc + arguments but I have no idea how to do it.

On Mon, Apr 18, 2016 at 4:04 AM, Kern Sibbald  wrote:

  
Hello Jason,

cd 
./configure 
make[or "make -j9" goes faster]

[I assume you have done the above, but if not do it]

cd src/qt-console/tray-monitor
make

If I am not mistaken the binary will be in bacula-tray-monitor. You must
then create a configuration file for it that is valid (tray-monitor.conf)
and execute it.

I have never tried it, so I am not sure it will work.  Feedback would be
appreciated.

Best regards,
Kern


On 04/16/2016 01:06 AM, Jason Voorhees wrote:


  
Hello guys:

I've built Bacula 7.4.0 but I have no idea how to build the
tray-monitor application. I can't find any arguments in ./configure
--help to achieve it even when I found a tray-monitor directory in the
contents of the tarball.

Hope someone can give me some ideas.

Thanks in advance.


--
Find and fix application performance issues faster with Applications
Manager
Applications Manager provides deep performance insights into multiple
tiers of
your business applications. It resolves application problems quickly and
reduces your MTTR. Get your free trial!
https://ad.doubleclick.net/ddm/clk/302982198;130105516;z
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users





  
  



  


--
Find and fix application performance issues faster with Applications Manager
Applications Manager provides deep performance insights into multiple tiers of
your business applications. It resolves application problems quickly and
reduces your MTTR. Get your free trial!
https://ad.doubleclick.net/ddm/clk/302982198;130105516;z___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] How to build tray-monitor

2016-04-19 Thread Jason Voorhees
Thank you Kern.

Yes, I have tried that but there's no Makefile in tray-monitor
directory so I can't run make under this path :( I'd like to build it
manually using gcc + arguments but I have no idea how to do it.

On Mon, Apr 18, 2016 at 4:04 AM, Kern Sibbald  wrote:
> Hello Jason,
>
> cd 
> ./configure 
> make[or "make -j9" goes faster]
>
> [I assume you have done the above, but if not do it]
>
> cd src/qt-console/tray-monitor
> make
>
> If I am not mistaken the binary will be in bacula-tray-monitor. You must
> then create a configuration file for it that is valid (tray-monitor.conf)
> and execute it.
>
> I have never tried it, so I am not sure it will work.  Feedback would be
> appreciated.
>
> Best regards,
> Kern
>
>
> On 04/16/2016 01:06 AM, Jason Voorhees wrote:
>>
>> Hello guys:
>>
>> I've built Bacula 7.4.0 but I have no idea how to build the
>> tray-monitor application. I can't find any arguments in ./configure
>> --help to achieve it even when I found a tray-monitor directory in the
>> contents of the tarball.
>>
>> Hope someone can give me some ideas.
>>
>> Thanks in advance.
>>
>>
>> --
>> Find and fix application performance issues faster with Applications
>> Manager
>> Applications Manager provides deep performance insights into multiple
>> tiers of
>> your business applications. It resolves application problems quickly and
>> reduces your MTTR. Get your free trial!
>> https://ad.doubleclick.net/ddm/clk/302982198;130105516;z
>> ___
>> Bacula-users mailing list
>> Bacula-users@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/bacula-users
>>
>

--
Find and fix application performance issues faster with Applications Manager
Applications Manager provides deep performance insights into multiple tiers of
your business applications. It resolves application problems quickly and
reduces your MTTR. Get your free trial!
https://ad.doubleclick.net/ddm/clk/302982198;130105516;z
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users