Install wkhtmltopdf 0.12.5 on Centos 7 Rumi, April 2, 2021April 2, 2021 Install Dependencies yum install fontconfig libXext freetype libpng zlib libjpeg-turbo libpng libjpeg openssl icu libX11 libXext libXrender xorg-x11-fonts-Type1 xorg-x11-fonts-75dpi Install wkhtmltopdf sudo yum install -y https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/0.12.5/wkhtmltox-0.12.5-1.centos7.x86_64.rpm Test wkhtmltopdf http://www.google.com google.pdf Src:: https://otodiginet.com/software/tools/how-to-install-and-using-wkhtmltopdf-on-centos-7/ Continue Reading
Configure DomainKeys- DKIM (OpenDKIM) with Postfix on CentOS 7 Rumi, March 31, 2021March 31, 2021 OpenDKIM is method to digitally sign & verify emails on the mail servers using public & private keys. In other words opendkim implements the DKIM (DomainKeys Identified Mail) standard for signing and verifying email messages on a per-domain basis. DomainKeys are implemented to reduce the chances of outgoing mails to… Continue Reading
Setup mail server on centos 7 using postfix and dovecot Rumi, March 30, 2021 Installing packages Step 1 » Assign hostname for the server using the below command. [root@krizna ~]# hostnamectl set-hostname mail.krizna.com Step 2 » Make a host entry with your IP in /etc/hosts file. 172.27.0.51 mail.krizna.com Step 3 » Now start installing packages. [root@krizna ~]# yum -y install postfix dovecot After package… Continue Reading
Install LAMP with PHP 7.4 on FastCGI/CGI configuration on CentOS 7 Rumi, March 24, 2021 Step 1 – Setup Yum Repository In the first step install all the required yum repositories in your system used in the remaining tutorial for various installations. You are adding REMI, EPEL, Webtatic & MySQL community server repositories in your system. CentOS / RHEL 7 yum install epel-release rpm -Uvh… Continue Reading
Install LAMP on CentOS 7 with PHP 5.4/7.0/7.1/7.2/7.3/7.4 Rumi, October 26, 2020 Preliminary Note In this tutorial, I use the hostname server1.example.com with the IP p 192.168.0.100. These settings might differ for you, so you have to replace them where appropriate. I will add the EPEL repo here to install latest phpMyAdmin as follows: rpm –import /etc/pki/rpm-gpg/RPM-GPG-KEY* yum -y install epel-release To edit files on… Continue Reading
Enable mod_rewrite for Apache on CentOS 7 Rumi, October 25, 2020 The mod_rewrite module is enabled by default on CentOS 7. If you find it is not enabled on your server, you can enable it by editing 00-base.conf file located in /etc/httpd/conf.modules.d/ directory. sudo nano /etc/httpd/conf.modules.d/00-base.conf Add or uncomment the following line: LoadModule rewrite_module modules/mod_rewrite.so Save and close the file, then… Continue Reading
Build a Centos 7 Repo Rumi, August 2, 2020 Install httpd [root@www ~]# yum -y install httpd # remove welcome page [root@www ~]# rm -f /etc/httpd/conf.d/welcome.conf Configure httpd. Replace server name to your own environment. [root@www ~]# vi /etc/httpd/conf/httpd.conf # line 86: change to admin’s email address ServerAdmin root@srv.world # line 95: change to your server’s name ServerName www.srv.world:80 # line 151: change AllowOverride All # line 164:… Continue Reading
Install h5ai – file indexer on Centos 7 Rumi, July 2, 2020 H5ai is a modern file indexer for HTTP web servers with focus on your files. Directories are displayed in a appealing way and browsing them is enhanced by different views, a breadcrumb and a tree overview. Initially h5ai was an acronym for HTML5 Apache Index but now it supports other… Continue Reading
Install Mydumper Myloader on Centos 7 Rumi, June 11, 2020July 4, 2020 If you want to execute logical backups using an alternative to mysqldump that works with parallel threads giving faster execution times mydumper is the correct tool. wget https://github.com/maxbube/mydumper/releases/download/v0.9.5/mydumper-0.9.5-2.el7.x86_64.rpm In order to use mydumper and myloader you can use the following sample commands: For dumping/exporting database: mydumper -u <username> -p <password>… Continue Reading
Install MariaDB on CentOS 7 Rumi, May 25, 2020 Start by adding the MariaDB YUM repository file MariaDB.repo for RHEL/CentOS and Fedora systems. # vi /etc/yum.repos.d/MariaDB.repo Now add the following lines to your respective Linux distribution version as shown. On CentOS 7 [mariadb] name = MariaDB baseurl = http://yum.mariadb.org/10.1/centos7-amd64 gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB gpgcheck=1 Step 2: Install MariaDB in CentOS 7 Once… Continue Reading