ANS Documentation

Improve This Doc
  • Cloud
  • Domains and DNS management
  • Backup and High Availability
  • eCommerce Stacks
  • Security
  • Email
  • Monitoring and usage management
  • Networking
  • Operating systems
    • Linux
      • Basics
      • Apache
      • Control Panels
      • FTP
      • Magento
      • Miscellaneous
      • MySQL
      • NGINX
      • PHP
      • PHP-FPM
      • Setting up Websites
      • NFS
      • VPN
      • Percona
      • SSH
      • SSL
      • Git
      • Redis
      • Elasticsearch
      • MongoDB
      • Ncdu
    • VMware ESXi
    • Windows
  • Webcelerator
  • MyUKFast
  • Home >
  • Operating systems >
  • Linux >
  • MySQL >
  • MySQL Command Line Basics

MySQL Command Line Basics¶

In this tutorial, we will cover the basics of MySQL command line. MySQL CLI is a client for accessing the MySQL server daemon and will allow you to access, retrieve and modify your databases and users through your Linux server.

It is available through the base CentOS and Ubuntu repositories. The commands below will help you browse through your databases and look at your users.

Access MySQL through your shell¶

Once you have logged into your server through SSH using a client like PuTTY, use the command below to access the MySQL CLI. This will require you to know the credentials for the user you are using.

mysql -u root -p

Once logged in your should see something like the following prompt.

  Welcome to the MySQL monitor.  Commands end with ; or \g.
  Your MySQL connection id is 479
  Server version: 5.1.73-14.12 Percona Server (GPL), Release 14.12, Revision 624

  Copyright (c) 2009-2013 Percona LLC and/or its affiliates
  Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.

  Oracle is a registered trademark of Oracle Corporation and/or its
  affiliates. Other names may be trademarks of their respective
  owners.

  Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

  mysql>

View Database and Tables¶

You should now be able to view your databases and tables. This can be done use the commands below.

SHOW DATABASES;

You can also use a database from the list of databases available to you.

USE database_wp;

This will show the following information.

Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Database changed
mysql>

Here you can view your tables and even run queries.

SHOW TABLES;

Here is an example query from a Magento database, where we are checking the current base URL:

SELECT * FROM core_config_data WHERE path LIKE '%base%url%';

Users and GRANTS¶

You can also view your users. All of the users that are available on your MySQL install will be shown using the command below.

SELECT user, host FROM mysql.user;

MySQL users have 2 parts: username and host, usually written as 'username'@'host'. username is self-explanatory. host defines where that user is allowed to connect from. For example, 'dbuser'@'123.123.123.123', which will allow dbuser to connect from the IP address 123.123.123.123, or 'root'@'localhost' means the root user, connecting from the local server only.

Note that this means you could have 2 users with the same username, as long as they have different hosts. So 'dbuser'@'123.123.123.123' and 'dbuser'@'111.111.111.111' can both exist on the same server.

A thing to note here is that the root@localhost user is NOT the same as root@127.0.0.1! MySQL (and Linux in general) treats sockets differently to TCP/IP connections unless there is an alias associated with it. You can read more about this by using the link to the official MySQL documentation.

You can also view grants for an individual user using the command below.

  mysql> SHOW GRANTS for root@localhost;
  +---------------------------------------------------------------------+
  | Grants for root@localhost                                           |
  +---------------------------------------------------------------------+
  | GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' WITH GRANT OPTION |
  +---------------------------------------------------------------------+
  1 row in set (0.00 sec)

For more tips on managing users and databases, please do check out our Managing Databases and Users guide.

Next Article > Reset MySQL Root Password

  • Useful Links
  • SMB
  • Enterprise
  • Channel
  • Public Sector
  • ANS Data Centres
  • About ANS
  • Careers
  • Blog
  • Get in touch
  •  
  • Sales 0800 458 4545
  • Support 0800 230 0032
  • Get in touch

© ANS Group Limited | Terms and Conditions | Corporate Guidance | Sitemap
ANS Group Limited, registered in England and Wales, company registration number 03176761, registered office 1 Archway, Birley Fields, Manchester M15 5QJ