How to delete a MySQL user ?

How to delete a MySQL user ?

Login to your server via SSH & access MySQL prompt, To delete a MySQL user. Select the database mysql & follow the steps as given below. Here, the database is mysql. Replace the database name as required. mysql> use mysql; mysql> DELETE FROM user where user=’username’; mysql> FLUSH PRIVILEGES; Replace ‘username’ with the username of […]

Read More »

Managing databases via SSH command line

Managing databases via the SSH command is typically necessary & may be quicker than using the phpMyAdmin web interface. If you do not presently have SSH access on your hosting account, you may need to request it via our support department as we have a tendency to don’t enable SSH by default for security reasons. […]

Read More »
Repair a MySQL Database

Repair a MySQL Database

To fix a database that doesn’t properly perform, this feature examines and repairs tables that will are corrupted. Navigate to the Databases section and then choose the MySQL Databases icon. Under Modify Databases, choose the database you would like to repair and click on the Repair Database button.

Read More »
Renaming Database Tables via phpMyAdmin

Renaming Database Tables via phpMyAdmin

In the following tutorial, we’ll show you how to rename database tables using phpMyAdmin. phpMyAdmin could be a free and opensource applications for MySQL database management. It’s one among the most common web-based MySQL management tools for web hosting services. PhpMyAdmin offers users the ability to interact with their MySQL databases. Renaming Database Tables Step […]

Read More »