root@server ~]# yum install ImageMagick [root@server ~]# yum install ImageMagick-devel PHP-imagick Installation: [root@server ~]# yum install gcc [root@server ~]# yum install make automake [root@server ~]# yum install php-pear [root@server ~]# yum install php-devel [root@server ~]# pecl install imagick On some servers yum install php-pecl-imagick.x86_64 Test: convert image.jpg -resize 64x64 resize_image.jpg
Run: # lscpu | grep '^CPU(s)'
To disable firewalld, run the following command as root: # systemctl disable firewalld To stop firewalld, run the following command as root: # systemctl stop firewalld To check the status of firewalld, run the following command as root: # systemctl status firewalld To enable firewalld, run the following command as root: # systemctl enable firewalld To start firewalld, run the…
Begin by opening the configuration file with your text editor as root: # nano /etc/ssh/sshd_config The first option that you may want to change is the port that SSH runs on. Find the line that looks like this: #Port 22 Change this to a different port #Port 2244 Reload ssh # systemctl reload sshd.service After saving, don’t exit until you’ve…
1. Getting the required software For an SSL encrypted web server you will need a few things. Depending on your install you may or may not have OpenSSL and mod_ssl, Apache's interface to OpenSSL. Use yum to get them if you need them. # yum install mod_ssl openssl Yum will either tell you they are installed or will install them…
To Disable Recursive DNS in the Parallels Plesk Panel Log in to the Parallels Plesk Panel as administrator. Click Tools & Settings. From the General Settings area, click DNS Template Settings. Click DNS Recursion.Select Localnets, and then click Ok. For Windows Servers: Log in to your Server through a Remote Desktop Connection. From the Start menu, click Control Panel, Administrative…
A very serious security problem has been found and patched in the GNU C Library called Glibc. It was announced on 27th January 2015. Here are the affected Linux distros: RHEL (Red Hat Enterprise Linux) version 5.x, 6.x and 7.x CentOS Linux version 5.x, 6.x & 7.x Ubuntu Linux version 10.04, 12.04 LTS Debian Linux version 7.x Linux Mint version…
Source: http://www.krizna.com/centos/setup-network-centos-7/ When installing Centos 7, You may not able to connect network in that machine. This will happen because Ethernet interfaces are not enabled by default and need additional configuration. Type “nmcli d” command in your terminal # nmcli d Recommended for beginners Step 1 » Type this command “nmtui” to open Network manager and press enter after choosing…
The Plesk one-click installer is a script that downloads itself and determines the correct Plesk version for your OS. You won’t accidentally pick the wrong version for your distribution. # wget -O - http://autoinstall.plesk.com/one-click-installer | sh If you get an error message, wget may not be installed. Rectify this pitiful situation like this: # yum install wget Opening Ports for…
Memcached (Memcache Daemon) is a caching daemon designed especially for dynamic web applications to decrease database load by storing objects in memory. It is commonly used to speed up dynamic database-driven websites by caching data and objects in server memory to reduce the number of times the data source must be read. Memcached is free and open-source software, licensed under…