User contributions
From DevOps Notebook
- 06:14, 14 May 2020 diff hist +65 Installing Python 3 with virtualenv on Amazon Linux v2
- 06:14, 14 May 2020 diff hist +165 N Installing Python 3 with virtualenv on Amazon Linux v2 Created page with "<pre> # yum install epel-release # yum install python3.x86_64 python3-pip # pip3 install -U pip # pip3 install -U virtualenv # /usr/local/bin/virtualenv .env </pre>"
- 06:10, 14 May 2020 diff hist +64 Linux How To
- 11:54, 28 April 2020 diff hist +134 Install maldet and run scan current
- 11:51, 28 April 2020 diff hist +222 N Install maldet and run scan Created page with "<pre> # wget https://www.rfxn.com/downloads/maldetect-current.tar.gz # tar -xvf maldetect-current.tar.gz # cd maldet-<version> # ./install.sh # maldet -a (scan all) # maldet..."
- 11:27, 28 April 2020 diff hist +37 Linux How To
- 08:39, 17 April 2020 diff hist +100 Find
- 08:19, 17 April 2020 diff hist +148 N Tar Created page with "=== Exclude file or folder from tar archive === <pre> $ tar --exclude='./uploads' --exclude='./uploads/folder2' -zcvf /backup/filename.tgz . </pre>" current
- 08:17, 17 April 2020 diff hist +10 Linux commands
- 08:17, 17 April 2020 diff hist +97 Linux commands
- 10:16, 16 April 2020 diff hist +457 N Check if IP is valid Created page with "Method 1: <syntaxhighlight lang="python"> import socket try: socket.inet_aton(addr) # legal except socket.error: # Not legal </syntaxhighlight> Method 2: <syntaxh..." current
- 10:15, 16 April 2020 diff hist +29 Python current
- 23:22, 10 April 2020 diff hist -4 Linux cli snippets
- 23:21, 10 April 2020 diff hist +4 Linux cli snippets
- 23:21, 10 April 2020 diff hist -15 Linux cli snippets
- 23:21, 10 April 2020 diff hist +21 Linux cli snippets
- 23:21, 10 April 2020 diff hist +258 Linux cli snippets
- 23:12, 10 April 2020 diff hist +289 N How To Install PHP 7.3 on CentOS 8 Created page with "<pre> # dnf install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm # dnf install https://rpms.remirepo.net/enterprise/remi-release-8.rpm # yum list | g..." current
- 23:11, 10 April 2020 diff hist +43 N Linux How To Created page with "How To Install PHP 7.3 on CentOS 8 <br>"
- 23:11, 10 April 2020 diff hist +23 Linux
- 10:23, 9 April 2020 diff hist +229 N Send email using stored procedure in mssql Created page with "<syntaxhighlight lang="mysql> EXEC msdb.dbo.sp_send_dbmail @profile_name = 'Db email', @recipients = '[email protected]', @body_format ='HTML', @body..." current
- 10:14, 9 April 2020 diff hist +76 N MSSQL Created page with "==Microsoft SQL Server== Send email using stored procedure in mssql<br>"
- 10:11, 9 April 2020 diff hist +15 Database current
- 10:07, 9 April 2020 diff hist +4,486 N .NET CLR LocksAndThreads Queue Created page with "<syntaxhighlight lang="json"> { "IsEnabled": true, "EngineConfiguration": { "Components": [ { "FullName": "AWS.EC2.Windows.CloudWatch.EventLog.EventLogIn..." current
- 10:06, 9 April 2020 diff hist +39 N CloudWatch configuration files snippets Created page with ".NET CLR LocksAndThreads Queue <br>" current
- 10:05, 9 April 2020 diff hist +49 Amazon CloudWatch current
- 09:46, 9 April 2020 diff hist -1 Redirect http to https in nginx current
- 09:46, 9 April 2020 diff hist +38 Redirect http to https in nginx
- 09:45, 9 April 2020 diff hist -1 Setup password authentication in nginx current
- 09:45, 9 April 2020 diff hist +38 Setup password authentication in nginx
- 09:45, 9 April 2020 diff hist +37 Setup password authentication in nginx
- 09:43, 9 April 2020 diff hist -16 Setup password authentication in nginx
- 09:43, 9 April 2020 diff hist +704 N 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..."
- 09:41, 9 April 2020 diff hist +47 NGINX
- 15:28, 5 April 2020 diff hist +245 N 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:26, 5 April 2020 diff hist +27 Linux
- 15:22, 5 April 2020 diff hist +123 N 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>"
- 15:21, 5 April 2020 diff hist +12 Windows
- 23:02, 4 April 2020 diff hist +27 AWS CLI current
- 23:01, 4 April 2020 diff hist +2 AWS CLI
- 23:01, 4 April 2020 diff hist +288 N 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..."
- 22:57, 4 April 2020 diff hist +17 Amazon AWS
- 16:22, 21 March 2020 diff hist +13 Percona XtraBackup current
- 16:20, 21 March 2020 diff hist +841 Percona XtraBackup
- 16:18, 21 March 2020 diff hist +5 Percona XtraBackup
- 16:17, 21 March 2020 diff hist +70 Percona XtraBackup
- 16:16, 21 March 2020 diff hist -4 Percona XtraBackup
- 16: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..."
- 16:11, 21 March 2020 diff hist +33 MySQL
- 14:22, 21 March 2020 diff hist -2 Nmap →Scan network for used ip address in a range