February 10, 2025 - Reading time: ~160 minutes
If you just want to see the users with no passwords, then run the command below. Ideally there should be none of these!
IDENTIFIED BY
clause in it, which would create the user account if it did not exist. However, this will not work in MySQL 8.
Adding a user to a MySQL and allow them to connect remotely from any IP
CREATE USER 'USERNAME' IDENTIFIED BY 'PASSWORD_HERE';
would do the same thing.
If you want to see the permissions of a specfic user:
If you just wish to view your own privileges then you can run:
Use one of these, whichever is appropriate.
GRANT ALL PRIVILEGES ON `prefix_%`.* TO 'user'@'%';
If you just want to create another administrator user, you can give the user the ability to grant privileges as well with the following command:
GRANT ALL PRIVILEGES ON `prefix_%`.* TO 'user'@'%' WITH GRANT OPTION;
The following command will revoke permissions from the myDatabase
database for the user called user1
;
Changing root password (change abc with your current password and 123456 with your desired new one).
To check your database for any issues, run the following command:
You can also use --all-databases
to check all the databases, and --auto-repair
to automatically try to fix problems, not just find them. E.g.
I have added the option --no-tablespaces
to all of the commands below.
This resolves a breaking change MySQL added in a minor update.
Refer to this stack overflow post for more info.
This is useful for copying/moving/backups
--single-transaction
flag prevents you getting the following error message: Access denied for user 'username'@'%' to database 'databaseName'" when using LOCK TABLES
If dumping an RDS database, you probably want to add --set-gtid-purged=OFF
which would look like so:
If space is tight, you can dump to a compressed file like so:
If you are connecting to a remote host and the bandwidth is limited, then use the --compress
flag like so:
If you want to be able to read the file, rather than being for an export/import, then it is much more human-readable if you use the --skip-extended-insert
option:
I recently had to backup/dump a database that was well over 200 GB in size.
Doing this was going to be slow unless I could do this in a parallelized way that would make full use of my 1 gig connection.
Luckily, I was able to do this with mysqlpump.
You can dump all of the databases by using the --all-databases
optional parameter.
Dumping just the structure of a database can be achieved by adding the --no-data
parameter.
Dumping just the data (no structure) of a database can be achieved by using the --no-create-info
parameter.
--quick
option is what is important here when dealing with large tables. Also, by using --single-transaction
we can be safe (if using InnoDB rather than MYISAM) by using a single transaction, and mysqldump will not feel the need to lock the table.
/var/lib/mysql
works. Debian users do not have to worry about this.
/etc/mysql/my.cnf
file: secure_file_priv=""
If you want to export the users/permissions/grants so that you can set up a replacement database, you can do this with the pt-show-grants tool.
Install the tool with:
Then you can create an SQL with all the commands for creating all the users/grants with:
Importing a database from a dumped database (previous command) can be done like so:
If you need the ability to be able to log in without passing a password, such as for a script, you could create a .my.cnf
file in your $HOME directory with the login credentials.
E.g.
Then put put the following content in it:
[client]
user=MySQL_user
password=mySecretPasswd
If you just changed the datadir in your my.cnf
file, then you probably want to initialize the new directory.
You may want to do this because cant login/set root password
If you ever get a "too many connections" error message, make sure to log into your database and run the following command to see what connections are open:
SHOW FULL PROCESSLIST
SHOW PROCESSLIST
will suffice
Answer all the questions in this security script that comes with MySQL installations.
Sometimes you need to see what your system variables are set to. You can do this from the shell with:
For example, to output the current max_allowed_packet
setting, you would run:
January 5, 2024 - Reading time: ~6 minutes
Scenario: You have installed Windows 10/11 and let's say you installed also a Linux distro in the same HDD.
But after tried the Linux distro you don't want to use it anymore.
You deleted the partitions where the Linux distro was installed but still when you boot up your computer, the boot loader shows up the GRUB installed previously with the Linux distro still there.
How to restore the default bootloader so it can just start windows normally?
January 4, 2024 - Reading time: ~1 minute
Ansible AWX is a free and open source Ansible Management tool created to provide System Administrators and Developers with an easy to use, intuitive and powerful web-based user interface for managing Ansible playbooks, Secrets, inventories, and Automation cron jobs scheduled to run at certain intervals. This guide explains how to install Ansible AWX on Debian 12/11/10 Linux system...