Home Linux 3

What i do?

Explore the world of cybersecurity, your go-to blog for insightful tips, tricks, and in-depth guides on enhancing the security of both "Linux" and Windows systems.
Stay updated with the latest threats, vulnerabilities, and cutting-edge techniques to fortify your digital fortress.
Whether you're a seasoned IT professional or a curious enthusiast, this is a good destination to keep your operating systems safe and learn the art of cyber defense.

Basic MySQL Administration

February 10, 2025 - Reading time: ~160 minutes

User Administration

List Users

SELECT User, Host FROM mysql.user;

Show Users With No Password

If you just want to see the users with no passwords, then run the command below. Ideally there should be none of these!

SELECT User,Password,Host FROM mysql.user WHERE Password='';

Create User

Create Local User

CREATE USER 'USERNAME'@'localhost' IDENTIFIED BY 'PASSWORD_HERE';

For MariaDB and versions of MySQL previous to 8.0, you could skip this step, and simply perform a grant statement with the IDENTIFIED BY clause in it, which would create the user account if it did not exist. However, this will not work in MySQL 8.

Create Remote User

Adding a user to a MySQL and allow them to connect remotely from any IP

CREATE USER 'USERNAME'@'%' IDENTIFIED BY 'PASSWORD_HERE';

This is the default if you were to not specify the host. E.g.
CREATE USER 'USERNAME' IDENTIFIED BY 'PASSWORD_HERE';
would do the same thing.

Remove User

drop user 'usernameHere'@localhost
drop user 'usernameHere'

Remove Anonymous User

drop user ''@localhost
drop user ''

Show Privileges

Show User's Privileges

If you want to see the permissions of a specfic user:

SHOW GRANTS FOR username

If you just wish to view your own privileges then you can run:

SHOW GRANTS

Grant User Privileges

Give User Full Access To Database

Use one of these, whichever is appropriate.

GRANT ALL ON DATABASE_NAME.* to USERNAME@localhost;
GRANT ALL ON DATABASE_NAME.* to USERNAME@%;

Grant All Privileges On Specific Database To Local User

GRANT ALL 
ON `DATABASE_NAME_HERE`.* 
TO 'USERNAME_HERE'@'localhost' 

Grant Read-only Access On Database To Local User

GRANT SELECT \
ON `DATABASE_NAME_HERE`.* \
TO 'USERNAME_HERE'@'localhost' \
IDENTIFIED BY 'PASSWORD_HERE';
FLUSH PRIVILEGES;

Grant All Privileges On All Databases To Local User

GRANT ALL ON *.* TO 'USERNAME_HERE'@'localhost' 

Give Remote root User Full Privileges

GRANT ALL ON *.* TO root WITH grant option;

Allow Users To Create Their Own Databases

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;

Revoke / Remove User Privileges

The following command will revoke permissions from the myDatabase database for the user called user1;

REVOKE ALL PRIVILEGES ON myDatabase.* FROM user1;

Change Root Password

Changing root password (change abc with your current password and 123456 with your desired new one).

mysqladmin -u root -p'abc' password '123456'

Data Integrity

To check your database for any issues, run the following command:

mysqlcheck -u [user] -p --databases [database name]

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.

mysqlcheck -u root -p --all-databases --auto-repair

Dump / Backup Database

No Tablespaces

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.

Dump a Single Database

This is useful for copying/moving/backups

mysqldump \
  -u $USERNAME \
  -p$PASSWORD \
  -h localhost \
  --no-tablespaces \
  --column-statistics=0 \
  --single-transaction \
  $DATABASE_NAME > $DATABASE_NAME.sql

The --single-transaction flag prevents you getting the following error message: Access denied for user 'username'@'%' to database 'databaseName'" when using LOCK TABLES

Dumping RDS Single Database

If dumping an RDS database, you probably want to add --set-gtid-purged=OFF which would look like so:

mysqldump \
  -u $USERNAME \
  -p$PASSWORD \
  -h localhost \
  --no-tablespaces \
  --single-transaction \
  --column-statistics=0 \
  --set-gtid-purged=OFF \
  $DATABASE_NAME > $DATABASE_NAME.sql

Using Gzip Compression

If space is tight, you can dump to a compressed file like so:

mysqldump \
  -u $USERNAME \
  -p$PASSWORD \
  -h $HOST \
  --no-tablespaces \
  --column-statistics=0 \
  --single-transaction \
  $DATABASE_NAME | gzip -c > $OUTPUT_FILENAME

If you are connecting to a remote host and the bandwidth is limited, then use the --compress flag like so:

mysqldump \
  -u $USERNAME \
  -p$PASSWORD \
  -h $HOST \
  --compress \
  --no-tablespaces \
  --column-statistics=0 \
  $DATABASE_NAME > $DATABASE_NAME.sql

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:

mysqldump \
  -u $USERNAME \
  -p$PASSWORD \
  -h localhost \
  --no-tablespaces \
  --column-statistics=0 \
  --skip-extended-insert \
  $DATABASE_NAME > $DATABASE_NAME.sql

Parallel Dump With MySQL Pump

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.

CORE_COUNT=4

mysqlpump \
  --user=$USERNAME \
  --password \
  --default-parallelism=$CORE_COUNT \
  --databases myDatabase \
  --set-gtid-purged=OFF \
  --host=xxxx.xxxx.rds.amazonaws.com \
  > myDatabase.sql

MySQL pump was deprecated as of MySQL 8.0.34, and will be removed at some future verson of MySQL unfortunately. Thus, if you are reliant on this, you may need to start looking for an alternative solution.

Dump All Databases

You can dump all of the databases by using the --all-databases optional parameter.

mysqldump \
  -u $USERNAME \
  -p \
  -h $HOST \
  --no-tablespaces \
  --column-statistics=0 \
  --all-databases \
  > all-databases.sql 

Dump Structure Of a Database

Dumping just the structure of a database can be achieved by adding the --no-data parameter.

mysqldump \
  -u $USERNAME \
  -p$PASSWORD \
  -h localhost \
  --no-tablespaces \
  --no-data \
  --column-statistics=0 \
  $DATABASE_NAME > $DATABASE_NAME.sql

Dump Data Only

Dumping just the data (no structure) of a database can be achieved by using the --no-create-info parameter.

mysqldump \
  -u $USERNAME \
  -p$PASSWORD \
  -h localhost \
  --no-tablespaces \
  --column-statistics=0 \
  --skip-triggers \
  --compact \
  --no-create-info \
  $DATABASE_NAME > $DATABASE_NAME.sql

Dump Large Table

mysqldump \
  --host $HOST \
  --user $USER \
  --password="$PASSWORD" \
  --no-tablespaces \
  --column-statistics=0 \
  --single-transaction \
  --quick \
  $DATABASE_NAME \
  $TABLE_NAME > $TABLE_NAME.sql

The --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.

Dump Table To CSV

mysqldump \
  -u [user] \
  --password="[password]" \
  --no-tablespaces \
  --column-statistics=0 \
  -t \
  -T[dump folder path] [database name] [table name] \
  --fields-terminated-by=','

If you're using Ubuntu, AppArmor restricts where you can save to. Using /var/lib/mysql works. Debian users do not have to worry about this.

On Debian 8 with MySQL 5.5, I had to add a line to the /etc/mysql/my.cnf file: secure_file_priv=""

Dump Grants

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:

sudo apt-get install percona-toolkit

Then you can create an SQL with all the commands for creating all the users/grants with:

pt-show-grants --host=$HOST --user=$USER --ask-pass > grants.sql

Import / Restore Database

Importing a database from a dumped database (previous command) can be done like so:

mysql \
  -u $USERNAME \
  -p$PASSWORD \
  -h localhost \
  $DATABASE_NAME < $DATABASE_NAME.sql

Misc

Login Without Password (Scripts)

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.

touch ~/.my.cnf
chmod 0600 ~/.my.cnf

Then put put the following content in it:

[client]
user=MySQL_user
password=mySecretPasswd

Initialize the MySQL data directory

If you just changed the datadir in your my.cnf file, then you probably want to initialize the new directory.

sudo mysql_install_db

Reinstall MySql

You may want to do this because cant login/set root password

sudo service mysql stop
sudo apt-get remove --purge mysql-server mysql-client mysql-common
sudo apt-get autoremove
sudo apt-get autoclean
sudo deluser mysql

Diagnosing Connections/Processes

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

If you are ok with showing a truncated query, then SHOW PROCESSLIST will suffice

Securing A Fresh MySql Installation

Answer all the questions in this security script that comes with MySQL installations.

sudo mysql_secure_installation

System Variables

Output System Variable

Sometimes you need to see what your system variables are set to. You can do this from the shell with:

SHOW VARIABLES LIKE '$VARIABLE_NAME';

For example, to output the current max_allowed_packet setting, you would run:

SHOW VARIABLES LIKE 'max_allowed_packet';

Read more
Linux

Restore bootloader from dual boot

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?

Read more
Linux

Ansible Tower AWX - Debian

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...

Read more