| Cloud & Platforms | Containers & Orchestration | IaC & Automation |
|---|---|---|
| CI/CD & DevOps | Languages | Databases & Monitoring |
|---|---|---|
| Cloud & Platforms | Containers & Orchestration | IaC & Automation |
|---|---|---|
| CI/CD & DevOps | Languages | Databases & Monitoring |
|---|---|---|
# How to Install Varnish + Hitch Cache for Apache on CentOS/RHEL8
- Varnish Cache is a free open source, modern and `high-performance` web application accelerator. It is a fast reverse HTTP proxy that caches content to speed up your web server performance, by storing web content in server memory β in a cache. It is configured to run in front of an origin server such as Apache `(HTTPD)` webserver.
# Compare remote server file using ssh commands
# ssh user@remote-host "cat /home/root/file_remote" | diff - file_local
# ssh -P<port> -l root <remote server ip> "cat /home/root/file_remote" | diff - /home/root/local_server_file
# Postgresql
`Bash
psql -U postgres -c 'SHOW config_file'
psql -U postgres -c 'SHOW config_file'
psql -U postgres -c 'SHOW max_connections'
# Freeswitch outbound calling through Asterisk
````bash
[cloud]
type=peer
host=X.X.X.X
# -- autodial scriprt not running getting pycurl package import issue --
yum install openssl-devel
pip install --compile --install-option="--with-openssl" pycurl
# Resize root partition (or how to delete the default /home partition) on CentOS 8 through SSH
This requires you to be able to ssh into the instance using the root user account and that no services be running as users out of /home on the target machine.
The examples are from a default installation with no customation-you NEED to know what you're working with for volumes/partitions to not horribly break things.