User contributions
From DevOps Notebook
- 17:16, 21 March 2020 diff hist -4 Percona XtraBackup
- 17:16, 21 March 2020 diff hist +517 N Percona XtraBackup Created page with "== Backup and restore with XtraBackup 8.0 == ''Note that credentials need to be in .my.cnf in home folder of running user'' Backup: <pre> $ xtrabackup --backup --target-dir=/p..."
- 17:11, 21 March 2020 diff hist +33 MySQL
- 15:22, 21 March 2020 diff hist -2 Nmap →Scan network for used ip address in a range
- 15:21, 21 March 2020 diff hist 0 Nmap
- 15:20, 21 March 2020 diff hist 0 Nmap
- 15:20, 21 March 2020 diff hist +92 N Nmap Created page with "=== Scan network for free ip address in a range === <pre> # nmap -sP -PR 10.5.12.0/24 </pre>"
- 15:19, 21 March 2020 diff hist +27 Linux commands
- 17:45, 5 March 2020 diff hist +246 N Set DNS with powershell Created page with "===Set primary windows dns with powershell script=== <pre> $dnsserver = (,"1.1.1.1") Get-WmiObject -Class Win32_NetworkAdapterConfiguration -Filter IPEnabled=TRUE | Invoke-Wmi..."
- 17:44, 5 March 2020 diff hist +31 N PowerShell Created page with "Set DNS with powershell<br>"
- 17:44, 5 March 2020 diff hist +19 Windows
- 23:15, 4 March 2020 diff hist 0 How to remove services in Windows current
- 23:15, 4 March 2020 diff hist +335 N How to remove services in Windows Created page with "==Deleting Services in windows registry== 1. Open the Windows Registry. (run ''regedit'') 2. Navigate to the key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services. 3. Backu..."
- 23:13, 4 March 2020 diff hist +42 N Registry Created page with "How to remove services in Windows <br>" current
- 23:13, 4 March 2020 diff hist +16 N Windows Created page with "Registry<br>"
- 23:13, 4 March 2020 diff hist +17 Main Page
- 11:03, 27 February 2020 diff hist +115 Find
- 21:39, 26 February 2020 diff hist +88 N Recover skype chat information from files Created page with "<pre> $ grep -i "string you are looking for" ~/Library/Application Support/Skype/ </pre>" current
- 21:38, 26 February 2020 diff hist +45 N MacOS Created page with "Recover skype chat information from files"
- 21:37, 26 February 2020 diff hist +15 Main Page
- 12:34, 24 February 2020 diff hist +16 Redirect all except selected IP to another url current
- 12:32, 24 February 2020 diff hist +134 N Redirect all except selected IP to another url Created page with "<pre> RewriteEngine On RewriteBase / RewriteCond %{REMOTE_HOST} !^1.2.3.4 RewriteRule .* https://someotherwebsite.com [R=302,L] </pre>"
- 12:32, 24 February 2020 diff hist +55 N Apache Created page with "Redirect all except selected IP to another url <br>"
- 12:30, 24 February 2020 diff hist +16 Web Server current
- 11:28, 20 February 2020 diff hist +706 N Set ulimit without reboot Created page with " Modify ''limits.conf'' file located (on most distros) at ''/etc/security/limits.conf''. <br> Append following lines: <pre> * soft nproc 768000 * hard nproc..." current
- 11:22, 20 February 2020 diff hist +53 N Kernel Created page with "==Configuration== Set ulimit without reboot <br>"
- 11:21, 20 February 2020 diff hist +16 Linux
- 12:02, 26 December 2019 diff hist +55 Linux commands
- 11:40, 18 December 2019 diff hist +171 N Redirect http to https in nginx Created page with "<pre> server { listen 80 default_server; listen [::]:80 default_server; server_name example.com www.example.com; return 301 https://$server_name$request_uri; } </pre>"
- 11:40, 18 December 2019 diff hist +40 N NGINX Created page with "Redirect http to https in nginx <br>"
- 11:39, 18 December 2019 diff hist +14 N Web Server Created page with "NGINX <br>"
- 11:39, 18 December 2019 diff hist +14 Main Page
- 18:45, 9 December 2019 diff hist +599 Monitoring Memory and Disk Metrics for Amazon EC2 Linux Instances current
- 13:20, 7 December 2019 diff hist +177 Du current
- 12:49, 7 December 2019 diff hist +134 N Find Created page with "== Find largest files in given location == <pre> find /home/tecmint/Downloads/ -type f -exec du -Sh {} + | sort -rh | head -n 5 </pre>"
- 12:47, 7 December 2019 diff hist +1 Du
- 12:47, 7 December 2019 diff hist -2 Du
- 12:47, 7 December 2019 diff hist +2 Du →find top 10 largest directories
- 12:46, 7 December 2019 diff hist +82 N Du Created page with "== find top 10 largest directories == <pre> # du -hs * | sort -rh | head -5 </pre>"
- 12:43, 7 December 2019 diff hist +25 Linux commands
- 12:40, 7 December 2019 diff hist +9 Database
- 16:56, 4 December 2019 diff hist +18 Database
- 12:24, 4 December 2019 diff hist +81 N Get limited number of records from mysqldump Created page with "<pre> $ mysqldump --opt --where="1 limit 1000000" database_name > dump.sql </pre>" current
- 12:23, 4 December 2019 diff hist +52 N MySQL Commands snippets Created page with "Get limited number of records from mysqldump<br>"
- 12:22, 4 December 2019 diff hist +28 N MySQL Created page with "MySQL Commands snippets "
- 12:22, 4 December 2019 diff hist +9 N Database Created page with "MySQL"
- 12:21, 4 December 2019 diff hist +17 Main Page
- 19:35, 28 November 2019 diff hist +2 How to reset user password via console in gitlab current
- 19:34, 28 November 2019 diff hist +2 Monitoring Memory and Disk Metrics for Amazon EC2 Linux Instances
- 19:33, 28 November 2019 diff hist +444 N How to reset user password via console in gitlab Created page with "To reset your user password, first log into your server with root privileges. Start a Ruby on Rails console with this command: <pre> gitlab-rails console -e production </pre>..."