Ubuntu 24.04 LTS How to Install Docker Server

What’s Docker Docker is a cutting-edge platform that enables developers to build, ship, and run distributed applications in lightweight containers. This technology provides an efficient, scalable, and secure way...
SysadminID
1 min read

Reset root password on CentOS 7

Edit boot menu on-the-go 0. reboot the CentOS 7 and press ESC when GRUB menu show up on the...
SysadminID
18 sec read

Hide PHP-FPM Version on NGINX

Check PHP-FPM version on NGINX HTTP response $ curl -I localhost/index.php HTTP/1.1 200 OK Date: Sat, 12 Aug 2017...
SysadminID
16 sec read

Hide Server Info Response on NGINX

How to hide `Server:` Response info on NGINX $ curl -I localhost HTTP/1.1 200 OK Server: nginx/1.4.6 (Ubuntu) Date:...
SysadminID
26 sec read

Free ext4 reserved blocks with tune2fs

Check disk usage df -h Filesystem Size Used Avail Use% Mounted on /dev/vda1 95G 82G 7.9G 92% / Check...
SysadminID
19 sec read

Block or ban ip with NGINX

How to block ip with NGINX 0. define block ip on nginx.conf vim /etc/nginx/nginx.conf http { geo $ban_ip { default 0;...
SysadminID
23 sec read

Send Xymon/Hobbit Alerts to Slack Channel

How to sent xymon/hobbit alerts to slack channel 0. create bash script to push xymon/hobbit alerts to slack vim /etc/xymon/scripts/alert_to_slack.sh #!/bin/bash...
SysadminID
22 sec read

Redirect www and non-www http to non-www https on NGINX

How to set up redirect www and non-www http to non-www https o nginx config file vim /etc/nginx/sites-enabled/blackonsole.conf # http server...
SysadminID
16 sec read

CSS Fonts Missing: No ‘Access-Control-Allow-Origin’ header is present on the requested resource

CSS Fonts Missing on web The error some like: Font from origin 'http://css.blackonsole.org' has been blocked from loading by Cross-Origin Resource...
SysadminID
14 sec read

KVM/Archipel enable ttyconsole on guest vm with virsh

Debian Jessie Guest VM + Enable and start serial console systemctl enable [email protected] systemctl start [email protected] + Check status systemctl list-units...
SysadminID
24 sec read

Fix courier imapd.pem error PEM routines no start line

Error courier imapd.pem file tailf /var/log/mail.log imapd-ssl: couriertls: /etc/courier/imapd.pem: error:0906D06C:PEM routines:PEM_read_bio:no start line How to fix vim /etc/courier/imapd-ssl Make sure dhparams.pem...
SysadminID
14 sec read

How to push AutoMysqlBackup files to Google Drive

What is AutoMysqlBackup AutoMySQLBackup with a basic configuration will create Daily, Weekly and Monthly backups of one or more of your...
SysadminID
44 sec read

How to add NAT iptables rules with CSF

What is CSF Config Server Firewall (or CSF) is a free and advanced firewall for most Linux distributions. How...
SysadminID
32 sec read

Fix AWStats on WHM/cPanel with NGINX

What is AWStats AWStats is short for Advanced Web Statistics. AWStats is powerful log analyzer which creates advanced web, ftp, mail and streaming server...
SysadminID
24 sec read

How to install Gitlab in Ubuntu 14.04

What is Gitlab GitLab is a web-based Git repository manager with wiki and issue tracking features. How to install...
SysadminID
24 sec read

How to Install Archipel on Linux Ubuntu

What is Archipel Archipel is a solution to manage and supervise virtual machines. No matter if you have a few locally...
SysadminID
6 min read

Puppet master with Nginx and Passenger 5.0

What is this Puppet: a free (libre) configuration management utility. It runs on many Unix-like systems as well as on Microsoft...
SysadminID
39 sec read

All Stories

:: reinstall apache on cpanel

:: how to reinstall apache on cpanel login to your cpanel server and run easyapache script # /scripts/easyapache or you can...
SysadminID
6 sec read

:: reset wordpress theme

:: how to reset wordpress theme to default # using mysql cli $ mysql -u user -p mysql> use dbwordpress; mysql>...
SysadminID
25 sec read

:: installing flashplayer on 64bit

:: download flashplayer 10 for 64bit linux distro # wget //download.macromedia.com/pub/labs/flashplayer10/flashplayer10_2_p3_64bit_linux_111710.tar.gz :: extracting and installing flashplayer # tar -xzf flashplayer10_2_p3_64bit_linux_111710.tar.gz -C...
SysadminID
11 sec read

:: libgtk-x11: cannot open shared object file

:: if you running thunderbird / firefox and get error like: /usr/local/firefox/firefox-bin: error while loading shared libraries: libgtk-x11-2.0.so.0: cannot open shared...
SysadminID
16 sec read

:: installing thunderbird 3.1.10 on linux

:: download thunderbird 3.1.10 email client # wget //mozilla.cdn.leaseweb.com/thunderbird/releases/3.1.10/linux-i686/en-US/thunderbird-3.1.10.tar.bz2 or you can download on thunderbird download page :: installing thunderbird from...
SysadminID
18 sec read

:: installing nginx with h264 streaming

:: download and extract package # wget //nginx.org/download/nginx-1.0.0.tar.gz # tar xzf nginx-1.0.0.tar.gz # wget //h264.code-shop.com/download/nginx_mod_h264_streaming-2.2.7.tar.gz # tar -zxvf nginx_mod_h264_streaming-2.2.7.tar.gz # wget...
SysadminID
52 sec read

:: php-fpm on php 5.2.10

:: how to installing php-fpm on php 5.2.10 # zypper in patch # cd php-5.2.10/ # wget //php-fpm.org/downloads/php-5.2.10-fpm-0.5.13.diff.gz # gunzip php-5.2.10-fpm-0.5.13.diff.gz...
SysadminID
8 sec read