Install Apache, MySQL, PHP (LAMP) Stack on CentOS 8
First disable SELinux by editing file vi /etc/selinux/config Find SELINUX=enforcing Replace with SELINUX=disabled Now restart the server. reboot Verify SELinux is disabled…
First disable SELinux by editing file vi /etc/selinux/config Find SELINUX=enforcing Replace with SELINUX=disabled Now restart the server. reboot Verify SELinux is disabled…
On a Cpanel Server using CentOS 7 + php-fpm, site phpinfo() shows few functions are set to disabled in disable_functions. I checked…
KernelCare allow you to update Linux Kernel with out rebooting your server. You can find more info at https://www.kernelcare.com To install KernelCare,…
mongoimport allow you to restore mongodb backups. mongoimport –db DB_NAME –collection COLLECTION_NAME –file COLLECTION_BACKUP.json Example mongoimport –db direct_db –collection image_settings –file image_settings.json…
Nginx Location Directive is used to route request to correct files. Match Exact match is used to match an exact URL. server…
To install NextCloud desktop client on Ubuntu, add PPA sudo add-apt-repository ppa:nextcloud-devs/client sudo apt-get update Now run sudo apt install nextcloud-client After…
dnf is package manager for RHEL/CentOS 8. This is improved version of yum. To search for a package, use dnf search PACKAGE_NAME…
CentOS 8 is a short-lived Linux distribution based on Red Hat Enterprise Linux (RHEL). Due to a change in policy, CentOS 8…
mod ruid2 allow you to run web site as differnt user from the one web server is running. This is helpfull when…
ulimit command allow you to view or set user limits. boby@sok-01:~$ ulimit -a core file size (blocks, -c) 0 data seg size…
On CentOS 7 sevrer running apache, when try to install plugin in WordPress admin area, i get error Installazione fallita: Il download…
To install ImageMagick on CentOS, run yum install ImageMagick To install on Ubuntu/Debian, run apt install -y imagemagick How to check if…