We do support Round the Clock 24 x 7 x 365 (+91) 883 012 3924
 

Category: Mysql database

How to Safely Change the Location of MySQL Data Directory on cPanel/WHM CloudLinux Servers

1. Make a full mysqldump file # mysqldump –opt -uroot -proot_password > /tmp/mysqldump 2. Uncheck monitor in WHM > Service Manager for Mysql and save the area 3. Stop MySQL service # /etc/init.d/mysql stop 4. Ensure that the following settings are present check file /etc/systemd/system/mariadb.service.d/homedir.conf [Service] ProtectHome=false ProtectSystem=off 5. Make…

How to increase phpMyAdmin Upload Limit on Centos Web Panel CWP server

Sometimes you want to upload or import large mysql database through phpMyAdmin but it fails with upload limit error. Follow below steps to increase upload or import limit for phpMyAdmin : # Login with root user on Centos Web Panel CWP server # Open below file : /usr/local/cwp/php71/php.ini Search for upload_max_filesize and post_max_size…

How to install “mongodb” on cPanel server

Here are steps to install “mongodb” on cPanel server : # Install the MongoDB repo: cd /etc/yum.repos.d # Create mongodb.repo file: vi mongodb.repo # Paste below lines into mongodb.repo file : [mongodb] name=MongoDB Repo baseurl=http://downloads-distro.mongodb.org/repo/redhat/os/x86_64/ gpgcheck=0 enabled=1 # Install MongoDB using Yum yum install mongo-10gen mongo-10gen-server # Configure MongoDB to…