mysql settings to change the root password, mysql server connection, mysql common commands diagram

mysql settings to change the root password, mysql server connection, mysql common commands diagram

1. Set and change the root password

Check whether mysql is started. If not, run :/usr/local/mysql56/bin/mysql

ps aux |grep mysql 或netstat -tulnp |grep 3306

Run the mysql command, and the following will appear:

-bash: mysql: command not found

Just add mysql to the environment variables:

Temporarily add: PAHT=$PATH:/usr/local/mysql56/bin

Permanently add: echo "export PATH=$PATH:/usr/local/mysql56/bin" >>/etc/profile

Then run soucre /etc/profile or . /etc/profile


Setting the mysql password, setting a password for the root user

mysql -uroot password 'new_password' or use the following method

How to change your password:

mysqladmin -uroot -p 'old_password' password 'new_password' or use the following method


How to change the password if you forget it:

First, you need to modify the configuration file: vim /etc/my.cnf

Add sed -i '/3306/a\skip-grant' /etc/my.cnf

Restart: /etc/init.d/mysqld restart


Then, switch the database: use mysql;

Then, modify the root password in the database: update user set password=password('new_password') where user='root';

This will change the password back.


To retest, change my.cnf back:


2. Connection to mysql

mysql -uroot -p 'password'
mysql -h127.0.0.1 -uroot -p 'password'
mysql -S /tmp/mysql.sock -uroot -p'password'
mysql -uroot -p -e "show databases" 


3. Common mysql commands

Check how many databases there are: show databases;

Use a library: use database_name;

Check how many tables there are: show tables;

View the fields in a table: desc table_name:

View the command entered when a table is created: show create table table_name\G;

Check which users are currently logged in: select user();

Check which library is currently used: select database();

View the current database version: select version();

View the various parameters that can be defined in the configuration file: show variables;

View the current number of processes: show processlist; or show full processlist; #This is the most commonly used (i.e., view the operations being performed by the database)

Create a database: create create database db_name;

Create a table: create table table_name('name' types(length),'name' type(length),........)



Create a table: create create table table_test(id int(10),name char(32),sex int(4));

The first part is complete.

Summarize

The above is the editor's introduction to MySQL settings to change the root password, MySQL server connection, and illustrations of MySQL common commands. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!

You may also be interested in:
  • How to reset the root password in mysql8.0.12
  • Summary of how to modify the root password in MySQL 5.7 and MySQL 8.0
  • Detailed explanation of the idea of ​​installing mysql8.0.11 and changing the root password and connecting navicat for mysql
  • Solution to MySql error code 1045 under Windows
  • Solution to MySQL root password error number 1045

<<:  Practical record of vue using echarts word cloud chart

>>:  Detailed explanation of the update command for software (library) under Linux

Recommend

Usage of MySQL time difference functions TIMESTAMPDIFF and DATEDIFF

Usage of time difference functions TIMESTAMPDIFF ...

7 Best VSCode Extensions for Vue Developers

Adding the right VS Code extension to Visual Stud...

jQuery plugin to implement stacked menu

A jQuery plugin every day - stacked menu, for you...

mysql obtains statistical data within a specified time period

mysql obtains statistical data within a specified...

Vue implements the function of calling the mobile phone camera and album

This article shares the specific code of Vue to a...

jQuery achieves full screen scrolling effect

This article example shares the specific code of ...

Steps of an excellent registration process

For a website, it is the most basic function. So l...

Use of Linux watch command

1. Command Introduction The watch command execute...

Solution for VMware Workstation Pro not running on Windows

After the National Day holiday, did any of you fi...

Alibaba Cloud Server Tomcat cannot be accessed

Table of contents 1. Introduction 2. Solution 2.1...

Detailed explanation of flex layout in CSS

Flex layout is also called elastic layout. Any co...

Detailed explanation of SQL injection - security (Part 2)

If there are any errors in this article or you ha...

Nginx uses ctx to realize data sharing and context modification functions

Environment: init_worker_by_lua, set_by_lua, rewr...

Detailed steps to build the TypeScript environment and deploy it to VSCode

Table of contents TypeScript environment construc...

How to deploy k8s in docker

K8s k8s is a cluster. There are multiple Namespac...