1. Download the mysql repo source $ wget http://repo.mysql.com/mysql-community-release-el7-5.noarch.rpm 2. Install the mysql-community-release-el7-5.noarch.rpm package $ sudo rpm -ivh mysql-community-release-el7-5.noarch.rpm After installing this package, you will get two MySQL yum repo sources: /etc/yum.repos.d/mysql-community.repo and /etc/yum.repos.d/mysql-community-source.repo. 3. Install MySQL $ sudo yum install mysql-server Just follow the prompts to install it, but there is no password after the installation, you need to reset the password 4. Reset mysql password $ mysql -u root When logging in, the following error may be reported: ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2). The reason is the access permission problem of /var/lib/mysql. The following command changes the owner of /var/lib/mysql to the current user: $ sudo chown -R root:root /var/lib/mysql Restart mysql service $ service mysqld restart Next, log in to reset your password: $ mysql -u root //Press Enter directly to enter the mysql consolemysql > use mysql; mysql > update user set password=password('123456') where user='root'; mysql > exit; For security reasons, Mysql only allows users to log in locally by default. However, in this case, users still need to connect remotely. Therefore, in order to enable remote connection, the following operations need to be performed: 1. Allow the root user to log in remotely from anywhere and have any operation permissions for all libraries. The specific operations are as follows: Log in to mysql as root user on this machine: mysql -u root -p "youpassword" To perform authorization operations: mysql>GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'youpassword' WITH GRANT OPTION; Reload the authorization table: FLUSH PRIVILEGES; Exit the mysql database: exit 2. Allow the root user to log in remotely from a specific IP address and have any operation permissions for all libraries. The specific operations are as follows: Log in to mysql as root user on this machine: mysql -u root -p "youpassword" To perform authorization operations: GRANT ALL PRIVILEGES ON *.* TO root@"172.16.16.152" IDENTIFIED BY "youpassword" WITH GRANT OPTION; Reload the authorization table: FLUSH PRIVILEGES; Exit the mysql database: exit 3. Allow the root user to log in remotely from a specific IP address and have all library-specific operation permissions. The specific operations are as follows: Log in to mysql as root user on this machine: mysql -u root -p "youpassword" To perform authorization operations: GRANT select,insert,update,delete ON *.* TO root@"172.16.16.152" IDENTIFIED BY "youpassword"; Reload the authorization table: FLUSH PRIVILEGES; Exit the mysql database: exit 4. To delete user authorization, you need to use the REVOKE command. The specific command format is: REVOKE privileges ON database[.table name] FROM user-name; For a specific example, first log in to mysql locally: mysql -u root -p "youpassword" To perform authorization operations: GRANT select,insert,update,delete ON TEST-DB TO test-user@"172.16.16.152" IDENTIFIED BY "youpassword"; Then delete the authorization operation: REVOKE all on TEST-DB from test-user; ****Note: This operation only clears the user's authorization permissions for TEST-DB, but the user "test-user" still exists. Finally, clear the user from the user table: DELETE FROM user WHERE user="test-user"; Reload the authorization table: FLUSH PRIVILEGES; Exit the mysql database: exit 5. Detailed classification of MYSQL permissions: Global management permissions: FILE: Read and write files on the MySQL server. PROCESS: Display or kill service threads belonging to other users. RELOAD: Reload access control lists, refresh logs, etc. SHUTDOWN: Shut down the MySQL service. Database/table/column permissions: ALTER: Modify existing data tables (such as adding/deleting columns) and indexes. CREATE: Create a new database or table. DELETE: Deletes records from a table. DROP: Delete a table or database. INDEX: Create or delete an index. INSERT: Add records to the table. SELECT: Display/search records of a table. UPDATE: Modify existing records in the table. Special permissions: ALL: Allows you to do anything (same as root). USAGE: Only login is allowed - nothing else is allowed. Summarize The above is the operation method of installing MySQL on CentOS and setting up remote access introduced by the editor. 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! You may also be interested in:
|
>>: Detailed explanation of this reference in React
This article describes MySQL 8.0 user and role ma...
As shown in the figure below, it is a common desi...
Written in front Sometimes you need to install so...
Table of contents Preface 1.1 Function 1.2 How to...
Table of contents 1 Version and planning 1.1 Vers...
Loading rules of require method Prioritize loadin...
Table of contents Data Brokers and Events Review ...
1. 85% of ads go unread <br />Interpretatio...
The CSS3 category menu effects are as follows: HT...
Table of contents 1. Add attributes 2. Merge mult...
This article shares the installation and configur...
Table of contents Preface Static scope vs. dynami...
Preface The docker image cannot be deleted. Check...
Find information Some methods found on the Intern...
The operating environment of this tutorial: Windo...