Advertisement
Guest User

Untitled

a guest
Jul 29th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Diff 1.58 KB | None | 0 0
  1. # eboxlogs.conf - configuration file for ebox logs module.
  2. #
  3. # This file contains the most basic settings, most other stuff is configured
  4. # using the web interface.
  5. #
  6. # Everything after a '#' character is ignored
  7. #
  8. # All whitespace is ignored
  9. #
  10. # Config keys are set this way:
  11. #
  12. # key = value
  13. #
  14. # They may contain comments at the end:
  15. #
  16. # key = value # this is ignored
  17.  
  18. eboxlogs_dbname = eboxlogs
  19.  
  20. eboxlogs_dbuser = ebox
  21.  
  22. # Not used, but we keep it around to make stuff still work.
  23. eboxlogs_dbpass = eboxlogs
  24.  
  25.  
  26. # Time to wait until the insertion of buffered log entries
  27. # Default: 10 (in seconds)
  28. multi_insert_interval = 3
  29.  
  30. # Disable consolidation for Cloud reports. Only useful
  31. # to increase performance in servers that are not going
  32. # to be subscribed to Zentyal Cloud or generate reports
  33. # Allowed values = [yes|no]
  34. disable_consolidation = yes
  35.  
  36. # Wether to enable the sliced backup mode
  37. # Allowed values = [yes|no]
  38. eboxlogs_sliced_backup = yes
  39.  
  40. # Directory where slices are going to be stored
  41. # Recommended to set a remote directory
  42. # or the mount point of an external device
  43. # This directory needs to be manually created if not exits
  44. eboxlogs_sliced_backup_archive = /backup/logs-sliced-backup
  45.  
  46. # Duration of slices. Format: [number] days|weeks|months|years
  47. # Minimum value = 1 days
  48. eboxlogs_sliced_backup_period = 1 days
  49.  
  50. # Number of slices archived in each archive operation
  51. eboxlogs_sliced_backup_archive_at_once = 3
  52.  
  53. # Wether to allow restore with unarchived slices (you will lose data)
  54. # Allowed values = [yes|no]
  55. eboxlogs_force_not_archived_restore = no
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement