Technology

Apache httpd No Space Left on Device AH00023

Issue Had this pop up today, been several years since the ugly Apache semaphore scenario reared its messy head. You’ll have an Apache http web service down, upon typical quick look and attempt to restart, Apache fails to kick off. No biggie, whether digging through logs, systemctl status and journalctl stuffs you’ll eventually come across something similar to: [Sun Dec

Read More

Linux Mint 19.1 “Tessa” Cinnamon Released !

The team is proud to announce the release of Linux Mint 19.1 “Tessa” Cinnamon Edition. Linux Mint 19.1 is a long term support release which will be supported until 2023. It comes with updated software and brings refinements and many new features to make your desktop even more comfortable to use. New features: This new version of Linux Mint contains

Read More

Easily Change Cisco ASA VPN Peer IP

VPN use is very prevalent these days, especially for businesses and the number of mobile workers, remote offices and tunneled cloud infrastructure. Inevitably at some point the IP address of an end point will need to be changed. This can be accomplished quickly and easy in a few steps, in this blip we’ll look at a simple IKEv1 VPN tunnel

Read More

Ubuntu 18.04 Crashing on vmWare ESXi Server and Carrots

Internal scenario recently. Some Ubuntu Server guest VMs running on top of vmWare ESXi server. Everything running fine, no issues, then the Ubuntu guest VMs will just randomly become utterly unresponsive. Nothing happening before, the only thing on the Ubuntu guest logs are just a crap ton of carrot jibberish: “^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@” Luckily I came across this post related to Mastodon

Read More

SSH and FTP Slow Authentication, DBUS and Logind Restart

Fairly interesting Plesk Onyx, ProFTPD, DBUS and Logind scenario recently. Had a server sporadically terminating FTP sessions that were working fine previously. After verifying overall connectivity and firewalling were not the issue time to start diging through logs. While I could see the incomplete and terminated FTP sessions, there was nothing incredibly insightful as to why. Seeing the FTP daemon

Read More

Linux Mint 19.1 Beta Released and it is Incredible

If you use or keep up with all things Linux you’re no doubt aware that the Linux Mint 19.1 “Tessa” beta dropped last week. Linux Mint 19.1 is a long term support release which will be supported until 2023. It comes with updated software and brings refinements and many new features to make your desktop even more comfortable to use.

Read More

Stop WordPress Login Brute Force Attacks

WordPress Brute Force Attacks WordPress’ popularity not only attracts bloggers but also hackers. Hackers try to compromise WordPress installations to send spam, setup phishing exploits or launch other attacks. While there are many sophisticated attacks against WordPress, hackers often use a simple brute force password attack. In these attacks, botnets try to guess your admin password. You may think that

Read More

Change Linux Primary IP Address Without Losing Connectivity

You need to change an IP address of an interface on a Linux server without loosing connectivity, so here’s one way: First add a secondary IP address to the interface: ip addr add 192.168.1.10/24 dev eth0 ip addr show eth0 And confirm: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP link/ether 44:38:39:00:11:aa brd ff:ff:ff:ff:ff:ff inet 192.168.1.5/24 scope global eth0 inet 192.168.1.10/24

Read More

MySQL Buffered warning: Changed limits: max_connections: 214 (requested 800)

This is always an interesting one, comes up from time to time especially if you run a server with heavy database traffic. Possibly you’ve modified you my.cnf with various tweaked settings for ‘max_connections’ or ‘open_files_limit’ but your your ‘mysqld.log’ you start getting: [Warning] Buffered warning: Changed limits: max_open_files: 1024 (requested 5000) [Warning] Buffered warning: Changed limits: max_connections: 214 (requested 800)

Read More