Skip site navigation (1)Skip section navigation (2)

FreeBSD Manual Pages

  
 
  

home | help
setac(3), endac(3), getacdir(3), getacdist(3), getacexpire(3), getacfilesz(3), getacflg(3), getachost(3), getacmin(3), getacna(3), getacpol(3), au_poltostr(3), au_strtopol(3)
look up information from the audit_control database
SSL_CTX_flush_sessions_ex(3), SSL_CTX_flush_sessions(3)
remove expired sessions
SSL_CTX_flush_sessions(3)
remove expired sessions
SSL_CTX_flush_sessions_ex(3ossl), SSL_CTX_flush_sessions(3ossl)
remove expired sessions
acerhdf(4)
Acer Aspire One fan control
au_control(3), setac(3), endac(3), getacdir(3), getacmin(3), getacexpire(3), getacfilesz(3), getacflg(3), getacna(3), getacpol(3), au_poltostr(3), au_strtopol(3)
look up information from the audit_control database
barman-cloud-backup(1) - Barman-cloud Commands Synopsis 0.0 3.5 barman-cloud-backup [ { -V | --version } ] [ --help ] [ { { -v | --verbose } | { -q | --quiet } } ] [ { -t | --test } ] [ --cloud-provider { aws-s3 | azure-blob-storage | google-cloud-storage } ] [ { { -z | --gzip } | { -j | --bzip2 } | --snappy } ] [ { -h | --host } HOST ] [ { -p | --port } PORT ] [ { -U | --user } USER ] [ { -d | --dbname } DBNAME ] [ { -n | --name } BACKUP_NAME ] [ { -J | --jobs } JOBS ] [ { -S | --max-archive-size } MAX_ARCHIVE_SIZE ] [ --immediate-checkpoint ] [ --min-chunk-size MIN_CHUNK_SIZE ] [ --max-bandwidth MAX_BANDWIDTH ] [ --snapshot-instance SNAPSHOT_INSTANCE ] [ --snapshot-disk NAME [ --snapshot-disk NAME ... ] ] [ --snapshot-zone GCP_ZONE ] [ -snapshot-gcp-project GCP_PROJECT ] [ --tag KEY,VALUE [ --tag KEY,VALUE ... ] ] [ --endpoint-url ENDPOINT_URL ] [ { -P | --aws-profile } AWS_PROFILE ] [ --profile AWS_PROFILE ] [ --read-timeout READ_TIMEOUT ] [ { -e | --encryption } { AES256 | aws:kms } ] [ --sse-kms-key-id SSE_KMS_KEY_ID ] [ --aws-region AWS_REGION ] [ --aws-await-snapshots-timeout AWS_AWAIT_SNAPSHOTS_TIMEOUT ] [ --aws-snapshot-lock-mode { compliance | governance } ] [ --aws-snapshot-lock-duration DAYS ] [ --aws-snapshot-lock-cool-off-period HOURS ] [ --aws-snapshot-lock-expiration-date DATETIME ] [ { --azure-credential | --credential } { azure-cli | managed-identity | default } ] [ --encryption-scope ENCRYPTION_SCOPE ] [ --azure-subscription-id AZURE_SUBSCRIPTION_ID ] [ --azure-resource-group AZURE_RESOURCE_GROUP ] [ --gcp-project GCP_PROJECT ] [ --kms-key-name KMS_KEY_NAME ] [ --gcp-zone GCP_ZONE ] DESTINATION_URL SERVER_NAME Description The barman-cloud-backup script is used to create a local backup of a Postgres server and transfer it to a supported cloud provider, bypassing the Barman server. It can also be utilized as a hook script for copying Barman backups from the Barman server to one of the supported clouds (post_backup_retry_script). This script requires read access to PGDATA and tablespaces, typically run as the postgres user. When used on a Barman server, it requires read access to the directory where Barman backups are stored. If --snapshot- arguments are used and snapshots are supported by the selected cloud provider, the backup will be performed using snapshots of the specified disks (--snapshot-disk). The backup label and metadata will also be uploaded to the cloud. NOTE: 0.0 3.5 For GCP, only authentication with GOOGLE_APPLICATION_CREDENTIALS env is supported. IMPORTANT: 0.0 3.5 The cloud upload may fail if any file larger than the configured --max-archive-size is present in the data directory or tablespaces. However, Postgres files up to 1GB are always allowed, regardless of the --max-archive-size setting. Parameters 0.0 SERVER_NAME Name of the server to be backed up. DESTINATION_URL URL of the cloud destination, such as a bucket in AWS S3. For example: s3://bucket/path/to/folder. -V / --version Show version and exit. --help show this help message and exit. -v / --verbose Increase output verbosity (e.g., -vv is more than -v). -q / --quiet Decrease output verbosity (e.g., -qq is less than -q). -t / --test Test cloud connectivity and exit. --cloud-provider The cloud provider to use as a storage backend. Allowed options: 7.0 (bu 2 aws-s3. (bu 2 azure-blob-storage. (bu 2 google-cloud-storage. -z / --gzip gzip-compress the backup while uploading to the cloud (should not be used with python < 3.2). -j / --bzip2 bzip2-compress the backup while uploading to the cloud (should not be used with python < 3.3). --snappy snappy-compress the backup while uploading to the cloud (requires optional python-snappy library). -h / --host Host or Unix socket for Postgres connection (default: libpq settings). -p / --port Port for Postgres connection (default: libpq settings). -U / --user User name for Postgres connection (default: libpq settings). -d / --dbname Database name or conninfo string for Postgres connection (default: (dqpostgres(dq). -n / --name A name which can be used to reference this backup in commands such as barman-cloud-restore and barman-cloud-backup-delete. -J / --jobs Number of subprocesses to upload data to cloud storage (default: 2). -S / --max-archive-size Maximum size of an archive when uploading to cloud storage (default: 100GB). --immediate-checkpoint Forces the initial checkpoint to be done as quickly as possible. --min-chunk-size Minimum size of an individual chunk when uploading to cloud storage (default: 5MB for aws-s3, 64KB for azure-blob-storage, not applicable for google-cloud-storage). --max-bandwidth The maximum amount of data to be uploaded per second when backing up to object storages (default: 0 - no limit). --snapshot-instance Instance where the disks to be backed up as snapshots are attached. --snapshot-disk Name of a disk from which snapshots should be taken. --tag Tag to be added to all uploaded files in cloud storage, and/or to snapshots created, if snapshots are used. --tags Tags to be added to all uploaded files in cloud storage, and/or to snapshots created, if snapshots are used. NOTE: 0.0 3.5 If you are using --tags before positional arguments, you must insert -- after it to indicate the end of optional arguments. This tells the parser to treat everything after -- as positional arguments. Without the --, Barman may misinterpret positional arguments as values for the last option. Deprecated since version 3.15: --tags is deprecated. Use --tag instead. Extra options for the AWS cloud provider 0.0 --endpoint-url Override default S3 endpoint URL with the given one. -P / --aws-profile Profile name (e.g. INI section in AWS credentials file). --profile (deprecated) Profile name (e.g. INI section in AWS credentials file)
replaced by --aws-profile. --read-timeout The time in seconds until a timeout is raised when waiting to read from a connection (defaults to 60 seconds). -e / --encryption The encryption algorithm used when storing the uploaded data in S3. Allowed options: 7.0 (bu 2 AES256. (bu 2 aws:kms. --sse-kms-key-id The AWS KMS key ID that should be used for encrypting the uploaded data in S3. Can be specified using the key ID on its own or using the full ARN for the key. Only allowed if -e / --encryption is set to aws:kms. --aws-region The name of the AWS region containing the EC2 VM and storage volumes defined by the --snapshot-instance and --snapshot-disk arguments. --aws-await-snapshots-timeout The length of time in seconds to wait for snapshots to be created in AWS before timing out (default: 3600 seconds). --aws-snapshot-lock-mode The lock mode for the snapshot. This is only valid if --snapshot-instance and --snapshot-disk are set. Allowed options: 7.0 (bu 2 compliance. (bu 2 governance. --aws-snapshot-lock-duration The lock duration is the period of time (in days) for which the snapshot is to remain locked, ranging from 1 to 36,500. Set either the lock duration or the expiration date (not both). --aws-snapshot-lock-cool-off-period The cooling-off period is an optional period of time (in hours) that you can specify when you lock a snapshot in compliance mode, ranging from 1 to 72. --aws-snapshot-lock-expiration-date The lock duration is determined by an expiration date in the future. It must be at least 1 day after the snapshot creation date and time, using the format YYYY-MM-DDTHH:MM:SS.sssZ. Set either the lock duration or the expiration date (not both). Extra options for the Azure cloud provider 0.0 --azure-credential / --credential Optionally specify the type of credential to use when authenticating with Azure. If omitted then Azure Blob Storage credentials will be obtained from the environment and the default Azure authentication flow will be used for authenticating with all other Azure services. If no credentials can be found in the environment then the default Azure authentication flow will also be used for Azure Blob Storage. Allowed options: 7.0 (bu 2 azure-cli. (bu 2 managed-identity. (bu 2 default. --encryption-scope The name of an encryption scope defined in the Azure Blob Storage service which is to be used to encrypt the data in Azure. --azure-subscription-id The ID of the Azure subscription which owns the instance and storage volumes defined by the --snapshot-instance and --snapshot-disk arguments. --azure-resource-group The name of the Azure resource group to which the compute instance and disks defined by the --snapshot-instance and --snapshot-disk arguments belong. Extra options for GCP cloud provider 0.0 --gcp-project GCP project under which disk snapshots should be stored. --snapshot-gcp-project (deprecated) GCP project under which disk snapshots should be stored - replaced by --gcp-project. --kms-key-name The name of the GCP KMS key which should be used for encrypting the uploaded data in GCS. --gcp-zone Zone of the disks from which snapshots should be taken. --snapshot-zone (deprecated) Zone of the disks from which snapshots should be taken - replaced by --gcp-zone
bemenu(1)
dynamic menu inspired by dmenu(1)
blockattack(6)
a puzzle game inspired by Tetris Attack
bzip3(1)
an efficient statistical file compressor and spiritual successor to bzip2
certwatch(1)
Watch X509 certificates expiration dates
dexpire(8)
Diablo program to expire article files
dexpireover(8)
Diablo program to expire overview files for diablo reader side
dhisexpire(8)
Diablo program to clean the history file
dirvish-expire(8)
delete expired dirvish images
eif(1)
Empire InterFace
emp_server(6)
Empire server
empdump(6)
Export/import Empire game state
empire(6)
Empire client
empire(6)
the wargame of the century
empsched(6)
Print Empire update schedule
epn.conf(5)
Expiring Password Notification configuration file
expire(8)
delete old articles from the new spool
expire(8cn), doexpire(8cn), expireiflow(8cn)
expire old news upact - update news active file
expire-ip-db(1)
remove old entries from a dns-terror DB file
expire.ctl(5)
Configuration file for article expiration
expire_image(3), expire_image (3)
Schedule the image for deletion
expireover(8)
Expire entries from the news overview database
expirerm(8)
Remove articles that have been expired
expiretable(1)
removes PF table entries based on age
fairland(6)
Empire land generator
files(6)
Empire file initialization
flow-capture(1)
Manage storage of flow file archives by expiring old data
flow-expire(1)
Manage storage of flow file archives by expiring old data
gleHelicoid(3)
Generalized torus, spiral with circle contour
gleHelicoid(3gle)
Generalized torus, spiral with circle contour
gleSpiral(3)
Sweep an arbitrary contour along a helical path
gleSpiral(3gle)
Sweep an arbitrary contour along a helical path
gnutls_certificate_expiration_time_peers(3)
API function
gnutls_certificate_get_ocsp_expiration(3)
API function
gnutls_db_check_entry_expire_time(3)
API function
gnutls_db_get_default_cache_expiration(3)
API function
gnutls_db_set_cache_expiration(3)
API function
gnutls_x509_crt_get_expiration_time(3)
API function
gnutls_x509_crt_set_expiration_time(3)
API function
history(5)
Record of current and recently expired Usenet articles
hugo-list-expired(1)
List expired content
hypnowheel(6)
draws overlapping, translucent spiral patterns
inspircd(1), tInspIRCd(1)
the stable, high-performance and modular Internet Relay Chat Daemon
inspircd-testssl(1), tInspIRCd(1)
the stable, high-performance and modular Internet Relay Chat Daemon
ipa-epn(1)
Send expiring password notifications
kak(1)
a vim-inspired, selection oriented code editor
ken(1), b1ff(1), censor(1), chef(1), cockney(1), eleet(1), fanboy(1), fudd(1), jethro(1), jibberish(1), jive(1), kenny(1), kraut(1), ky00te(1), nethackify(1), newspeak(1), nyc(1), pirate(1), rasterman(1), scottish(1), spammer(1), scramble(1), studly(1), uniencode(1), upside-down(1)
assorted text filters
kumppa(6)
spiraling, spinning, splashes of color rush toward the screen
ldns-rrsig(1)
print out the inception and expiration dates in human readable form
ldns_key_list_key_count(3), ldns_key_list_key(3), ldns_key_rsa_key(3), ldns_key_dsa_key(3), ldns_key_algorithm(3), ldns_key_hmac_key(3), ldns_key_origttl(3), ldns_key_inception(3), ldns_key_expiration(3), ldns_key_keytag(3), ldns_key_pubkey_owner(3), ldns_key_flags(3)
read ldns_keys
ldns_key_set_algorithm(3), ldns_key_set_rsa_key(3), ldns_key_set_dsa_key(3), ldns_key_set_hmac_key(3), ldns_key_set_origttl(3), ldns_key_set_inception(3), ldns_key_set_expiration(3), ldns_key_set_pubkey_owner(3), ldns_key_set_keytag(3), ldns_key_set_flags(3), ldns_key_list_set_key_count(3), ldns_key_algo_supported(3)
set ldns_key attributes
ldns_rr_rrsig_typecovered(3), ldns_rr_rrsig_set_typecovered(3), ldns_rr_rrsig_algorithm(3), ldns_rr_rrsig_set_algorithm(3), ldns_rr_rrsig_labels(3), ldns_rr_rrsig_set_labels(3), ldns_rr_rrsig_origttl(3), ldns_rr_rrsig_set_origttl(3), ldns_rr_rrsig_expiration(3), ldns_rr_rrsig_set_expiration(3), ldns_rr_rrsig_inception(3), ldns_rr_rrsig_set_inception(3), ldns_rr_rrsig_keytag(3), ldns_rr_rrsig_set_keytag(3), ldns_rr_rrsig_signame(3), ldns_rr_rrsig_set_signame(3), ldns_rr_rrsig_sig(3), ldns_rr_rrsig_set_sig(3)
get and set RRSIG RR rdata fields
home | help