This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ------------------------ | |
# agent | |
# ------------------------ | |
sudo rpm -ivh http://repo.zabbix.com/zabbix/3.4/rhel/7/x86_64/zabbix-release-3.4-2.el7.noarch.rpm | |
sudo yum list zabbix-agent | |
sudo yum install zabbix-agent | |
sudo firewall-cmd --zone=public --add-port=10050/tcp | |
sudo firewall-cmd --zone=public --add-port=10050/tcp --permanent | |
sudo semanage permissive -a zabbix_agent_t | |
sudo systemctl enable zabbix-agent.service |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- List of schemas | |
\dn | |
-- list all tables | |
\dt | |
-- list only tables with "public" schema | |
\dt public.* | |
-- database size |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# @see https://www.tecmint.com/install-upgrade-kernel-version-in-centos-7/ | |
uname -sr | |
# Linux 3.10.0-1062.12.1.el7.x86_64 | |
rpm --import https://www.elrepo.org/RPM-GPG-KEY-elrepo.org | |
rpm -Uvh http://www.elrepo.org/elrepo-release-7.0-4.el7.elrepo.noarch.rpm | |
yum --disablerepo="*" --enablerepo="elrepo-kernel" list available | |
yum --enablerepo=elrepo-kernel install kernel-ml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- logs | |
SET log_statement = 'all'; | |
-- list database(s) | |
\l+ [database] | |
-- list schema(s) | |
\dn | |
-- list tables in all schemas |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ------------------------ | |
# debian | |
# ------------------------ | |
apt-cache policy proftpd-basic | |
apt-get install proftpd | |
proftpd --version | |
proftpd -vv | |
nano /etc/proftpd/proftpd.conf | |
Include /etc/proftpd/conf.d/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://www.mercurial-scm.org/ | |
# https://www.mercurial-scm.org/wiki/UnixInstall#System-wide_installation | |
# rooted version :) | |
sudo -i | |
yum list mercurial | |
#Loaded plugins: priorities, update-motd, upgrade-helper | |
#Error: No matching Packages to list | |
yum groupinstall "Development Tools" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ------------------------ | |
# CentOS | |
# @see https://www.digitalocean.com/community/tutorials/how-to-secure-nginx-with-let-s-encrypt-on-centos-7 | |
# ------------------------ | |
sudo yum install git bc | |
sudo git clone https://github.com/letsencrypt/letsencrypt /opt/letsencrypt | |
sudo systemctl stop nginx | |
netstat -na | grep ':80.*LISTEN' | |
firewall-cmd --add-port=443/tcp | |
cd /opt/letsencrypt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ------------------------------------------------------- | |
# STEP 1: install requirements | |
# ------------------------------------------------------- | |
# CentOS / RHEL / Amazon EC2 AMI: | |
# @see https://webtatic.com/packages/php70/ | |
sudo yum install php70w php70w-devel | |
sudo yum groupinstall "Development Tools" | |
sudo yum install libmemcached libmemcached-devel zlib zlib-devel | |
# ------------------------------------------------------- | |
# Debian |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# @see http://sphinxsearch.com/downloads/release/ | |
# redhats: yum remove sphinx | |
# debians: apt-get remove sphinxsearch | |
cd /usr/local/src | |
wget -c http://sphinxsearch.com/files/sphinx-2.2.10-release.tar.gz | |
tar xzvf sphinx-2.2.10-release.tar.gz | |
cd sphinx-2.2.10-release | |
./configure | |
make install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# df - report file system disk space usage | |
df -h | |
df -i | |
df -hl | |
df -hl | sort -n | |
# du - disk used - estimate file space usage | |
alias du1='du . -hs' | |
alias du10='du . -k | sort -n -r | head -n 10' |