All public logs
From DevOps Notebook
Combined display of all available logs of DevOps Notebook. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)- 10:14, 9 April 2020 MilosZ talk contribs created page MSSQL (Created page with "==Microsoft SQL Server== Send email using stored procedure in mssql<br>")
- 10:07, 9 April 2020 MilosZ talk contribs created page .NET CLR LocksAndThreads Queue (Created page with "<syntaxhighlight lang="json"> { "IsEnabled": true, "EngineConfiguration": { "Components": [ { "FullName": "AWS.EC2.Windows.CloudWatch.EventLog.EventLogIn...")
- 10:06, 9 April 2020 MilosZ talk contribs created page CloudWatch configuration files snippets (Created page with ".NET CLR LocksAndThreads Queue <br>")
- 09:43, 9 April 2020 MilosZ talk contribs created page Setup password authentication in nginx (Created page with "Generate htpasswd password and put it in file <pre> # echo "admin:$(openssl passwd -apr1 Q89C82CNCeLxfSX3)" | sudo tee -a /etc/nginx/.htpasswd # cat /etc/nginx/.htpasswd </pre...")
- 15:28, 5 April 2020 MilosZ talk contribs created page Linux cli snippets (Created page with "== Linux command line snippets == === Get website SSL certificate details using CLI === <pre> $ echo | openssl s_client -showcerts -servername sendfileto.net -connect sendfil...")
- 15:22, 5 April 2020 MilosZ talk contribs created page CMD (Created page with "=== Restart windows via CMD === <pre> shutdown /r /f /t 180 /c "Please Save your work now your computer will logoff" </pre>")
- 23:01, 4 April 2020 MilosZ talk contribs created page AWS CLI (Created page with "'''AWS Command Line Interface''' snippets == EC2 via AWS CLI == === Start EC2 instance by tag === <pre> $ aws ec2 describe-instances --filters Name=tag:AutomationGroup,Value...")
- 16:16, 21 March 2020 MilosZ talk contribs created page 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...")
- 14:20, 21 March 2020 MilosZ talk contribs created page Nmap (Created page with "=== Scan network for free ip address in a range === <pre> # nmap -sP -PR 10.5.12.0/24 </pre>")
- 16:45, 5 March 2020 MilosZ talk contribs created page 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...")
- 16:44, 5 March 2020 MilosZ talk contribs created page PowerShell (Created page with "Set DNS with powershell<br>")
- 22:15, 4 March 2020 MilosZ talk contribs created page 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...")
- 22:13, 4 March 2020 MilosZ talk contribs created page Registry (Created page with "How to remove services in Windows <br>")
- 22:13, 4 March 2020 MilosZ talk contribs created page Windows (Created page with "Registry<br>")
- 20:39, 26 February 2020 MilosZ talk contribs created page Recover skype chat information from files (Created page with "<pre> $ grep -i "string you are looking for" ~/Library/Application Support/Skype/ </pre>")
- 20:38, 26 February 2020 MilosZ talk contribs created page MacOS (Created page with "Recover skype chat information from files")
- 11:32, 24 February 2020 MilosZ talk contribs created page 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>")
- 11:32, 24 February 2020 MilosZ talk contribs created page Apache (Created page with "Redirect all except selected IP to another url <br>")
- 10:28, 20 February 2020 MilosZ talk contribs created page 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...")
- 10:22, 20 February 2020 MilosZ talk contribs created page Kernel (Created page with "==Configuration== Set ulimit without reboot <br>")
- 10:40, 18 December 2019 MilosZ talk contribs created page 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>")
- 10:40, 18 December 2019 MilosZ talk contribs created page NGINX (Created page with "Redirect http to https in nginx <br>")
- 10:39, 18 December 2019 MilosZ talk contribs created page Web Server (Created page with "NGINX <br>")
- 11:49, 7 December 2019 MilosZ talk contribs created page 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>")
- 11:46, 7 December 2019 MilosZ talk contribs created page Du (Created page with "== find top 10 largest directories == <pre> # du -hs * | sort -rh | head -5 </pre>")
- 11:24, 4 December 2019 MilosZ talk contribs created page Get limited number of records from mysqldump (Created page with "<pre> $ mysqldump --opt --where="1 limit 1000000" database_name > dump.sql </pre>")
- 11:23, 4 December 2019 MilosZ talk contribs created page MySQL Commands snippets (Created page with "Get limited number of records from mysqldump<br>")
- 11:22, 4 December 2019 MilosZ talk contribs created page MySQL (Created page with "MySQL Commands snippets ")
- 11:22, 4 December 2019 MilosZ talk contribs created page Database (Created page with "MySQL")
- 18:33, 28 November 2019 MilosZ talk contribs created page 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>...")
- 18:31, 28 November 2019 MilosZ talk contribs created page Git (Created page with "== GitLab == How to reset user password via console in gitlab <br>")
- 17:07, 22 November 2019 MilosZ talk contribs created page Extend lvm partition (Created page with "== Create lvm partition with fdisk == <pre> # fdisk /dev/sdX </pre> To Create new partition Press '''n'''. <br> Choose primary partition use '''p'''. <br> Choose which numbe...")
- 16:52, 22 November 2019 MilosZ talk contribs created page LVM (Created page with "Extend lvm partition")
- 21:33, 21 November 2019 MilosZ talk contribs created page How to run xfs repair on root filesystem (Created page with "1. Reboot linux 2. On boot menu, select to edit grub (usually e) 3. Into line that loads kernel, at the and add word ''single'' This will get us into single user mode <pre> li...")
- 21:29, 21 November 2019 MilosZ talk contribs created page XFS (Created page with "How to run xfs_repair on root filesystem")
- 21:28, 21 November 2019 MilosZ talk contribs created page Linux Filesystem (Created page with "XFS <br>")
- 16:42, 19 November 2019 MilosZ talk contribs created page Linux commands (Created page with "find - search files or directories <br> netstat - displays active TCP connections, ports on which the computer is listening, routing tables and network protocol statis...")
- 16:38, 19 November 2019 MilosZ talk contribs created page Linux (Created page with "Linux commands")
- 22:57, 14 November 2019 MilosZ talk contribs created page How to iterate over list in python (Created page with "Most simple way with for: <syntaxhiglight> # example list list = [1, 2, 22, 55, 29] # Using for loop for i in list: print(i) </syntaxhighlight>")
- 22:55, 14 November 2019 MilosZ talk contribs created page Python (Created page with "How to iterate over list in python <br> How to iterate over dict in python <br>")
- 22:54, 14 November 2019 MilosZ talk contribs created page Dev (Created page with "Python")
- 00:11, 11 November 2019 MilosZ talk contribs uploaded a new version of File:Devopsnotebook-logo.png
- 22:35, 10 November 2019 MilosZ talk contribs created page MediaWiki:Common.css (Created page with "CSS placed here will be applied to all skins: .color-right { display: inline-block; height: 0.35em; background: #0f2c3f; }")
- 22:32, 10 November 2019 MilosZ talk contribs created page File:Devopsnotebook-logo-l.png
- 22:32, 10 November 2019 MilosZ talk contribs uploaded File:Devopsnotebook-logo-l.png
- 22:28, 10 November 2019 MilosZ talk contribs created page File:Devopsnotebook-logo.png
- 22:28, 10 November 2019 MilosZ talk contribs uploaded File:Devopsnotebook-logo.png
- 13:33, 8 November 2019 MilosZ talk contribs created page Monitoring Memory and Disk Metrics for Amazon EC2 Linux Instances (Created page with "== Monitoring Memory and Disk Metrics for Amazon EC2 Linux Instances == === Required packages ==")
- 13:31, 8 November 2019 MilosZ talk contribs created page Amazon CloudWatch (Created page with "Monitoring Memory and Disk Metrics for Amazon EC2 Linux Instances")
- 13:30, 8 November 2019 MilosZ talk contribs created page Amazon AWS (Created page with "Amazon EC2 <br> Amazon CloudWatch")