MySQL password contains special characters & operation of logging in from command line

MySQL password contains special characters & operation of logging in from command line

On the server, in order to quickly log in to the database, we usually use mysql -hhost -uusername -ppassword db to log in to the database. If there is no special character & in the password, it will directly enter the database sql command line. If there is a special character &, the following prompt will appear:

-bash: syntax error near unexpected token `&'

Generally, we can use the command mysql -hhost -uusername -p db and then manually enter the password according to the prompts.

In addition, passwords with special characters can be processed here.

1. Simply enclose the password in single quotes.

2. Add '\' before the special character & to log in.

Supplement: MySQL sets a complex password containing $ special symbols, which makes it impossible to log in with the command

For security reasons, the $ special symbol was added when setting the MYSQL password, resulting in the following error when running the script:

After some trouble, I found out that it was $

Change the password to remove $

The above is my personal experience. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM. If there are any mistakes or incomplete considerations, please feel free to correct me.

You may also be interested in:
  • Solution to the problem that MySQL commands cannot be entered in Chinese
  • Detailed explanation of encoding issues during MySQL command line operations
  • Introduction to the use of MySQL source command
  • MySQL commonly used SQL and commands from entry to deleting database and running away
  • Implementation of mysql using mysqlbinlog command to restore accidentally deleted data
  • Introduction to query commands for MySQL stored procedures
  • Three methods of automatically completing commands in MySQL database
  • Mysql desktop tool SQLyog resources and activation methods say goodbye to the black and white command line
  • MySQL login and exit command format
  • How to use the MySQL authorization command grant
  • Summary of MySQL basic common commands

<<:  CSS Summary Notes: Examples of Transformations, Transitions, and Animations

>>:  Use Vue3 for data binding and display list data

Recommend

MySQL decimal unsigned update negative numbers converted to 0

Today, when verifying the concurrency problem of ...

The normal method of MySQL deadlock check processing

Normally, when a deadlock occurs, the connection ...

JavaScript to implement the aircraft war game

This article shares with you how to use canvas an...

How to install WSL2 Ubuntu20.04 on Windows 10 and set up the docker environment

Enable WSL Make sure the system is Windows 10 200...

Detailed tutorial on installing Python 3.6.6 from scratch on CentOS 7.5

ps: The environment is as the title Install possi...

Detailed steps to use Redis in Docker

1. Introduction This article will show you how to...

Summary of common operation skills of MySQL database

This article summarizes common operating techniqu...

Detailed explanation of the use of MySQL paradigm

1. Paradigm The English name of the paradigm is N...

HTML tag overflow processing application

Use CSS to modify scroll bars 1. Overflow setting...

MySQL statement execution order and writing order example analysis

The complete syntax of the select statement is: S...

How to solve the problem of automatic package update in Debian system

I don't know when it started, but every time ...

Docker Compose installation methods in different environments

1. Online installation Currently only tried the L...

In-depth understanding of uid and gid in docker containers

By default, processes in the container run with r...