Register Domain
Use our search tool below to check the availability of your desired .com domain
Enjoy reliable 99.9% uptime, fast speeds, and 24/7 customer support.
Enjoy 99.9% uptime, one-click WordPress installation, and seamless updates.
Get your website online seamlessly on our SSD Servers without breaking the bank!
Enjoy personalized business-grade email, ample storage, and spam protection, all with 99.9% uptime.
Start on your own web hosting business with full control, custom branding, & tools.
Our NVMe Servers ensures your website or application runs flawlessly at any scale.
With root access, you handle your VPS, while we handle performance and reliability.
We handle all the technical aspects—while you focus on your business.
Before you start the transfer process, there are a few things you need to do to prepare for it...
WordPress is a user-friendly popular Content Management System that powers over 40% of websites worldwide...
Use our search tool below to check the availability of your desired .com domain
Easily transfer your domain to us and have a peace of mind.
Make instant ₦500 registration bonus after sign-up.
You can easily import/export your database using the phpMyAdmin menu in cPanel, with this guideline. However, it only allows the import and export of databases that do not exceed 1 GB. If your database is bigger, this is where you will need to use SSH commands.
Based on default, SSH Shell access is disabled on our Shared hosting plans. To use the shell access terminal, please contact us by opening a ticket with the subject: ” SSH Access“.
It is important to note that before performing an export or import, you will need to assign a database to a user. You can do it in cPanel > MySQL Databases menu > Add a User to a Database option.
Ensure you enable all privileges
To import a database, use the following command:
mysql -u dbusername -pdbpassword dbname < /path/to/file/file.sql
You can also use:
mysql -u dbusername -p’dbpassword’ dbname < /path/to/file/file.sql
or
mysql -u dbusername -p dbname < /path/to/file/file.sql
To export a database, use this command:
mysqldump -u dbusername -pdbpassword dbname > /path/to/file/file.sql
The variables in italics are the following:
NOTE: No space between -p key and the password if you enter it in the command.
If you do not receive any error or notification after pressing Enter, it means that the command was performed successfully.
We will use the following settings as example:
dbusername: nctests_user (as a database user), nctests (as a cPanel username)
dbpassword: 123qwe
dbname: nctests_database
path to the file: /home/nctests/public_html/databases/db_file.sql
Database Import
mysql -u nctests_user -p123qwe nctests_database < /home/nctests/public_html/databases/db_file.sql
Alternatively, you can use the following command:
mysql -u nctests_user -p nctests_database < /home/nctests/public_html/databases/db_file.sql
This way, you need to enter the password in the next line:
Database Export
mysqldump -u nctests_user -p123qwe nctests_database > /home/nctests/public_html/databases/db_file.sql
NOTE: You can also use the following command:
mysqldump -u nctests_user -p nctests_database > /home/nctests/public_html/databases/db_file.sql
This way, you need to enter the password in the next line:
With this guide, you should be able to import and export a database easily.
Contact us if you need any help.