Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

175 total results found

New Page

Bash, Scripting & Coding Bash

Auto Restart Services

Linux Software & Service Management

https://www.redhat.com/sysadmin/systemd-automate-recovery  1) Edit elasticsearch service unit file using the following command systemctl edit elasticsearch.service  2) Now, add the following lines in the unit file. [Service] Restart=always 3) Refresh t...

Bacula Restores

Linux Backups & Restores

Useful Bacula commands  Watch restore job: watch -n1 'echo "status client client=\"srv-IP_IP_IP_IP\"" | bconsole'  Check backup client status via bconsole: status client ==================================================================================== ...

Commvault Restores

Linux Backups & Restores

Commvault Restores Commvault restore types: MySQL Restores File level restores VPC Restores ==================================================================================== MySQL Restores There are 2 types of database restore we can look to perform ...

Firefly 3

My Solution Self Hosted

Firefly 3 is a self hosted finance tracking application.  

Planka

My Solution Self Hosted

Planka is a self hosted 'to-do-list' application.

Authelia

My Solution Self Hosted

Authelia is a 2FA application that I use for protecting access to my web apps.

ARP

Linux System Networking

show arp cache arp -a 

User and Database Management

Linux MySQL

Command syntax will vary between MySQL Versions ==================================================================================== User Management Show all users and hosts SELECT user, host FROM mysql. user; Add User CREATE USER 'name'@'localhost' IDEN...

Realip

Linux NGINX

==================================================================================== Ensure that the nginx 'ngx_http_realip_module' is installed: nginx -V 2>&1 | grep --color -o 'http_realip_module' 2. Create a new file, for example /etc/nginx/cloudflar...

WP-CLI

Linux WordPress

==================================================================================== WP-CLI Installation guide ------------------------------------------------------------------------------------------------------------------------------------------------ D...

TOP

Linux Logging

------------------------------------------------------------------------------------------------------------------------------------------------ Logging interval To change ATOP's logging interval edit the below file: vim /usr/share/atop/atop.daily In here,...

Permissions Restores

Linux Backups & Restores

==================================================================================== Client chowned their server? did you chown a clients server? Never fear, facl is here. https://kb.ukfast.net/Linux_file_permissions ========================================...

FHS - Filesystem Hierarchy Standard

Linux Linux Filesystem (FHS), Storage Concept...

==================================================================================== FHS as defined by RedHat: ------------------------------------------------------------------------------------------------------------------------------------------------ /...

Linux+

LVM (Logical Volume Manager)

Linux Linux Filesystem (FHS), Storage Concept...

==================================================================================== LVM, or Logical Volume Manager, is a tool used on Linux systems to manage disk space in a more flexible way compared to traditional partitioning. It acts like a layer of abst...

STORAGE CONCEPTS

Linux Linux Filesystem (FHS), Storage Concept...

==================================================================================== This page details the storage concepts for a linux system. ------------------------------------------------------------------------------------------------------------------...

Sandboxing & CHROOT

Linux Software & Service Management

==================================================================================== CHROOT (Changed Root) Jail CHROOT essentially means that a user or application has it's root changed, essentially locking it away from the rest of the server filesystem. ...

VI/VIM

Linux Bash

Line Numbers vim can display line numbers using the below command: :set number Skip to specific line number To skip to line 255: :255 ------------------------------------------------------------------------------------------------------------------------...