IT/Software/Database Applications/mysql command line/mysql commands: Difference between revisions

From msgwiki
Jump to navigation Jump to search
Access restrictions were established for this page. If you see this message, you have no access to this page.
No edit summary
 
(6 intermediate revisions by the same user not shown)
Line 1: Line 1:
== Here we will list helpful things to do on mysql ==
== Here we will list helpful things to do on mysql ==
=== when we say mysql that means you are on a server and are running mysql ===
=== When we say mysql that means you are on a server and are running mysql ===
* From the command line type mysql -u root
* From the command line type mysql -u root
** or whatever user you want
** Enter your password
** Enter your password
** It will not appear
*** It will not appear
* Now you are in mysql!
* Now you are in mysql!
=== Deleting data older than a date ===
=== Deleting data older than a date ===
* Get into mysql as a root or otherwise privileged user
* Get into mysql as a root or otherwise privileged user
Line 14: Line 16:
<code>use databasetoworkon </code>
<code>use databasetoworkon </code>
* Run the command
* Run the command
<code> DELETE FROM mdl_files WHERE timecreated < 1580032365;  </code>
** DELETE will be the command to perform.
** DELETE will be the command to perform.
** FROM will select the table you will work on
** FROM will select the table you will work on
Line 19: Line 22:
** "timecreated" is the name of the column
** "timecreated" is the name of the column
*** NOTE that we got this from phpMyAdmin or any tool you like.
*** NOTE that we got this from phpMyAdmin or any tool you like.
<code> DELETE FROM mdl_files WHERE timecreated < 1580032365;  </code>
 
* You had better be sure since once you hit enter there is no going back.
* You had better be sure since once you hit enter there is no going back.
 
=== Restoring root access ===
=== Restoring root access ===
* For some reason root access by password was removed from the defaults at some point
* For some reason root access by password was removed from the defaults at some point
Line 29: Line 33:
*** Thanks guys!
*** Thanks guys!
*
*
<code>sudo mysql</code>
*Next, check which authentication method each of your MySQL user accounts use with the following command:
<code>SELECT user,authentication_string,plugin,host FROM mysql.user;</code>
*Now alter the user with the following.
** change the word password to whatever you want. 
*** whatever you want except for any symbols that mysql may interpret as commands
**** Good luck finding a definitive and applicable list.
**** That is why all of my passwords are my birthday:)
***** But at my age and memory status that is risky.
<code>ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'password';</code>
*Your spouse is probably looking for such an easy command to alter you!
*Now do the following.
** I don't think you really need to anymore but why not.
<code>FLUSH PRIVILEGES;</code>
* Check again to see if what you did took.
<code>SELECT user,authentication_string,plugin,host FROM mysql.user;</code>
*Here is the [https://www.digitalocean.com/community/tutorials/how-to-install-mysql-on-ubuntu-18-04 Digital Ocean Guide]

Latest revision as of 17:37, 28 January 2020

Here we will list helpful things to do on mysql

When we say mysql that means you are on a server and are running mysql

  • From the command line type mysql -u root
    • or whatever user you want
    • Enter your password
      • It will not appear
  • Now you are in mysql!

Deleting data older than a date

  • Get into mysql as a root or otherwise privileged user
    • You can also login in as the user to the database you want to work on.
    • But if that use has global or high privileges you stand the cnace of breaking something
      • Don't be fooled by the above statement. You ALWAYS stand the chance of breaking something.
  • I use phpMyAdmin to make sure you know the right table names and column names.
  • Select the database you want

use databasetoworkon

  • Run the command

DELETE FROM mdl_files WHERE timecreated < 1580032365;

    • DELETE will be the command to perform.
    • FROM will select the table you will work on
    • WHERE is the condition
    • "timecreated" is the name of the column
      • NOTE that we got this from phpMyAdmin or any tool you like.
  • You had better be sure since once you hit enter there is no going back.

Restoring root access

  • For some reason root access by password was removed from the defaults at some point
    • I first noticed this on Ubuntu Server 18.04
  • There are many and varied ways to restore this.
    • Beware not all of them work.
    • The below one was derived from a Tutorial on Digital Ocean
      • Thanks guys!

sudo mysql

  • Next, check which authentication method each of your MySQL user accounts use with the following command:

SELECT user,authentication_string,plugin,host FROM mysql.user;

  • Now alter the user with the following.
    • change the word password to whatever you want.
      • whatever you want except for any symbols that mysql may interpret as commands
        • Good luck finding a definitive and applicable list.
        • That is why all of my passwords are my birthday:)
          • But at my age and memory status that is risky.

ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'password';

  • Your spouse is probably looking for such an easy command to alter you!
  • Now do the following.
    • I don't think you really need to anymore but why not.

FLUSH PRIVILEGES;

  • Check again to see if what you did took.

SELECT user,authentication_string,plugin,host FROM mysql.user;