Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
We’re running Atomicorp’s Workload Security, previous known as Atomic Secure Linux, and have started getting the following error whenever we restart any service. ** (pkttyagent:112415): WARNING **: 12:49:43.934: Unable to register authentication agent: GDBus.Error:org.freedesktop.PolicyKit1.Error.Failed: Cannot determine user of subject Error…
This error indicates that there is a problem with communication between the Nginx server and the backend server it is proxying to. upstream timed out (110: Connection timed out) while reading response header from upstream, client: X.X.X.X | 504 Gateway…
GoAccess is a web log viewer and analyzer, it also parses logs in realtime. This comes specially handy when you need to understand the traffic your server is getting. While installing GoAccess on a new server we got the following…
We recently had to deploy a wildcard SSL certificate to an Microsoft Azure web app. The company we buy our certs from, issues them in .crt format by default, we have to convert them to .pfx ourselves. This isn’t a…
We recently needed to upgrade a server from MySQL 5.7 to MariaDB 10.3 and one of the key steps in doing so is to disable strict mode after the upgrade. By default, MariaDB enables strict mode from version 10.2 and…
We got this error when trying to install ZFS on a server recently: Error: Package: kmod-zfs-0.7.13-1.el7_6.x86_64 (zfs-kmod) Requires: kernel(posix_acl_valid) = 0x7add44b5 Installed: kernel-3.10.0-1127.19.1.el7.x86_64 (@updates) kernel(posix_acl_valid) = 0xc89bfa92 Available: kernel-3.10.0-1127.el7.x86_64 (base) kernel(posix_acl_valid) = 0xc89bfa92 Available: kernel-3.10.0-1127.8.2.el7.x86_64 (updates) kernel(posix_acl_valid) = 0xc89bfa92 Available:…
We were faced with this error while trying to install vnstat from source on one of our servers. checking for sqlite3_prepare_v2 in -lsqlite3… no configure: error: could not find required sqlite3 library As to what this error is about, well…
We’re running cPanel with MariaDB 10.2 on one of our servers and during a complete database dump we ran into this error: mysqldump: Got error: 1356: “View ‘sys.host_summary’ references invalid table(s) or column(s) or function(s) or definer/invoker of view lack…
A security scan on one of our servers recently revealed that directory listing was enabled for a particular URL: abc.com We have configured our webservers to globally disable directory listing so this stumped us. We revisited our Apache httpd.conf, tweaked…
To mount a Windows share on a Linux machine you’ll need CIFS. To install CIFS, issue the following at shell: yum install cifs-utils sudo apt-get install cifs-utils Create an empty folder at the location you want to mount the drive:…