Advanced Search
Search Results
97 total results found
Let's Encrypt & Certbot
Installation Ubunutu add-apt-repository ppa:certbot/certbot apt-get update && apt-get install python-certbot CentOS yum install epel-release yum install python-certbot certbot Certbot You must stop anything on port 443/80 before starting certbo...
Update a port in Neutron
To update a port in neutron you can do the following: neutron port-update --fixed-ip subnet_id=SubNetID,ip_address=X.X.X.X --fixed-ip subnet_id=SubNetID,ip_address=X.X.X.X <PORT_ID> * Don't forget to input the already present IPs in the comman...
Openstack commands
Nova: List of instances openstack server list nova list Details on a specific instance openstack server show <server id> nova show <server id> Rebuild an instance openstack server rebuild --image <image-id> <server-i...
DRBD + Pacemaker & Corosync MySQL Cluster Centos7
On Both Nodes Host file vim /etc/hosts 10.1.2.114 db1 db1.localdomain.com10.1.2.115 db2 db2.localdomain.com Corosync will not work if you add something like this: 127.0.0.1 db1 db2.localdomain.com - however you do not need to delete 127.0.0.1 localho...
Cisco ASA Site to Site
Verification: NAT or transparent mode Value should return ( Firewall mode: Router ) show firewall Always do a backup!!! copy running-config disk0:/running-config-backup-DDMMYYYY ACL / No NAT Rules Change net-local and and remote for local and remote ...
Fedora 30 QEMU-KVM OVMF Passthrough
My Hardware Motherboard: Z370 AORUS Gaming 5 (rev. 1.0)CPU: Intel(R) Core(TM) i7-8700K CPURAM: 64 GB CORSAIR Vengeance LPX 2666GPU: RTX 2080, GTX 1050PSU: EVGA SuperNOVA 850 G3STORAGE: 2 HDD's, 1 SSD, 2 NVME Packages to install sudo dnf install virt qemu kv...
IPv4 Subnet Mask Cheat Sheet
CIDR Subnet Mask Total IPs Usable IPs /32 255.255.255.255 1 1 /31 255.255.255.254 2 2* /30 255.255.255.252 4 2 /29 255.255.255.248 8 6 /28 255.255.255.240 16 14 /27 255.255.255.224 32 30 /26 255.255...
DB's and Users
Create a DB CREATE DATABASE new_database; Drop a DB DROP DATABASE new_database; Create a new user with all prems CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'password'; GRANT [type of permission] ON [database name].[table name] TO ‘[username]’@'local...
Innodb recovery
What we will need to do for the recovery is to stop mysql and put it in innodb_force_recovery to attempt to backup all databases. service mysqld stop mkdir /root/mysqlbak cp -rp /var/lib/mysql/ib* /root/mysqlbak vim /etc/my.cnf You can start from 1 to 4, ...
MySQL Replication
*** TESTED FOR CENTOS 7 *** NEED TO HAVE PORT 3306 OPENED! -- MASTER = 10.1.2.117, SLAVE = 10.1.2.118 Master: vi /etc/my.cnf [mysqld]bind-address = 10.1.2.117server-id = 1log_bin = /var/lib/mysql/mysql-bin.logbinlog-do-db=mydbdatadir=/var/lib/mysqlsocket=/...
Regular expressions
SED Character Description ^ Matches the beginning of the line $ Matches the end of the line . Matches any single character * Will match zero or more occurrences of the previous character [ ] Matches all the characters inside the [ ] ...
Linux Routing
Routing View routes ip route ip route Adding a route ip addr add 192.168.1.100/24 dev eth0 Add a gateway ip route add default via 192.168.1.1 dev eth0 Add a route of a subnet to a gateway ip route add 10.1.2.0/24 via 10.1.2.1 dev eth0 null route (bla...
SSL .htaccess
WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{HTTPS} !=on RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] # BEGIN WordPress RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f Rewri...
rdiff-backup
#!/bin/bash SERVEURS="HOSTNAME.SEVER.COM 127.0.0.1" RDIFFEXCLUSIONS="--exclude /mnt --exclude /media --exclude /proc --exclude /dev --exclude /sys --exclude /var/lib/lxcfs --exclude-sockets" RDIFFOPTS="--print-statistics" DATE=`date +%Y-%m-%d` echo ...
Docker
Docker hub https://hub.docker.com/ Searching an Image docker search <img-name> Pull a Image docker pull <image>:<version> Run a Container docker run -it <img-name> /bin/bash Run a Container with ports + volume -v = volume, -p =...
Juniper Cli
Display Show Display configuration show configuration | display set Show display detail configuration show configuration | display detail show arp macs show ethernet-switching table File To navigate the file system you can do file list /? Backup Bac...
Firewall iptables script
# Interfaces WAN="ens3" LAN="ens9" #ifconfig $LAN up #ifconfig $LAN 192.168.1.1 netmask 255.255.255.0 echo 1 > /proc/sys/net/ipv4/ip_forward sysctl -w net.ipv4.ip_forward=1 iptables -F iptables -t nat -F iptables -t mangle -F iptables -X ...
named
/etc/named.conf options { listen-on port 53 { any; }; listen-on-v6 { none; }; directory "/var/named"; dump-file "/var/named/data/cache_dump.db"; statistics-file "/var/named/data/named_stats....
cPanel Notes
Useful scripts Restart ssh from URL http://11.22.33.44:2086/scripts2/doautofixer?autofix=safesshrestart To setup nat The /var/cpanel/cpnat file acts as a flag file for NAT mode. If the installer mistakenly detects a NAT-configured network, delete the/v...
Ansible
This Wiki page is a list of examples based of this project i created, for the full project details go to the link below http://git.myhypervisor.ca/dave/grafana_ansible Directory Structure playbook ├── ansible.cfg ├── playbook-example.yml ├── group_vars ...