R.I.P. Terri Garr
RIP Terri Garr Born: 1944, Lakewood, OH Died: October 29, 2024 (age 79 years), Los Angeles, CA
RIP Terri Garr Born: 1944, Lakewood, OH Died: October 29, 2024 (age 79 years), Los Angeles, CA
First, enable Developer mode via the Safari menu -> Settings… -> Advanced Tab Then, disable Cross-Origin Restrictions on the Developer Tab Finally, be sure to refresh the page you are having issues with. As always, YMMV!
To disable all automatic WordPress updates, just edit your WordPress/wp-config.php file and locate the line that says: /* That’s all, stop editing! Happy blogging. */ Add the following line ABOVE that line, then save and exit:
1 |
define( 'WP_AUTO_UPDATE_CORE', false ); |
Edit your WordPress/wp-config.php file and locate the line that says: /* That’s all, stop editing! Happy blogging. */ Add the following three lines ABOVE that line, then save and exit:
1 2 3 |
define('FS_METHOD', 'direct'); define('FS_CHMOD_DIR',0775); define('FS_CHMOD_FILE',0664); |
Be sure to refresh your browser to get the new settings! BONUS To force the use of FTP, change FS_METHOD from direct to ftpext: […]
1 2 3 4 5 6 7 |
iptables -P INPUT ACCEPT iptables -P FORWARD ACCEPT iptables -P OUTPUT ACCEPT iptables -t nat -F iptables -t mangle -F iptables -F iptables -X |
shell> vimdiff file1 file2 ~OR~ shell> vim file1 file2 Create a vertical split window: Control-w v Enable visual diff on the left side: :diffthis Move the cursor to the right side buffer: Control-w Right-arrow Enable visual diff on the left side: :diffthis You should now see the differences highlighted on both sides.
1 |
httpd -t -D DUMP_VHOSTS |
This was caused by having the PERL5LIB environment variable set.
1 2 3 4 5 6 7 8 9 10 11 12 |
root@server1:/root # /etc/webmin/restart-by-force-kill Force stopping Webmin server in /usr/libexec/webmin /etc/webmin/.stop-init: line 10: kill: (10111) - No such process Starting Webmin server in /usr/libexec/webmin /usr/bin/perl: symbol lookup error: /root/perl5/lib/perl5/x86_64-linux-thread-multi/auto/Net/SSLeay/SSLeay.so: undefined symbol: Perl_ss_handshake root@ server1:/root # unset PERL5LIB root@ server1:/root # /etc/webmin/restart-by-force-kill Force stopping Webmin server in /usr/libexec/webmin /etc/webmin/.stop-init: line 10: kill: (10111) - No such process Starting Webmin server in /usr/libexec/webmin |
Summary In this blog we explore how to use certificates from Let’s Encrypt to secure self-hosted Bamboo and Crucible. Process To Follow Install Certbot Ensure that external DNS resolves to the correct IP addressping example.yourdomain.com Ensure that Port 80 is open from the outside to that IP address so that Let’s Encrypt can validate the […]
Add inbound rule(s) for a security group ID:
1 |
shell> aws ec2 authorize-security-group-ingress --group-id sg-NNNNNNNN --protocol tcp --port 80 --cidr '0.0.0.0/0' |
## Delete inbound rule(s) for a security group ID
1 |
shell> aws ec2 revoke-security-group-ingress --group-id sg-NNNNNNNN --protocol tcp --port 80 --cidr '0.0.0.0/0' |
## List security groups by security group ID
1 |
shell> aws ec2 describe-security-groups --output json | jq -r '.SecurityGroups[]|.GroupId+" "+.GroupName' |
## List inbound rules for a specific security group ID
1 |
shell> aws ec2 describe-security-groups --group-ids sg-NNNNNNNN --output json | jq -r '.SecurityGroups[].IpPermissions[]|. as $parent|(.IpRanges[].CidrIp+" "+($parent.ToPort|tostring))' |
Thanks to: https://www.bluematador.com/learn/aws-cli-cheatsheet