MySQL数据库设置远程访问权限方法总结
MySQL基础知识第一期,如何远程访问MySQL数据库设置权限方法总结,讨论访问单个数据库,全部数据库,指定用户访问,设置访问密码,指定访问主机。
1,设置访问单个权限
代码如下 | 复制代码 |
>grant all privileges on test.* to 'root'@'%'; |
说明:设置用户名为root,密码为空,可访问数据库test
2,设置访问全部数据库权限
代码如下 | 复制代码 |
mysql>grant all privileges on *.* to 'root'@'%'; |
说明:设置用户名为root,密码为空,可访问所有数据库*
3,设置指定用户名访问权限
代码如下 | 复制代码 |
mysql>grant all privileges on *.* to 'liuhui'@'%'; |
说明:设置指定用户名为liuhui,密码为空,可访问所有数据库*
4,设置密码访问权限
mysql>grant all privileges on *.* to 'liuhui'@'%' IDENTIFIED BY 'liuhui';
代码如下
复制代码
说明:设置指定用户名为liuhui,密码为liuhui,可访问所有数据库*
5,设置指定可访问主机权限
代码如下 | 复制代码 |
mysql>grant all privileges on *.* to 'liuhui'@'10.2.1.11'; |
说明:设置指定用户名为liuhui,可访问所有数据库*,只有10.2.1.11这台机器有权限访问
还可以设置指定访问某个数据库下的某个数据表,请继续关注MySQL基础知识系列。

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Device Manager can be defined as an extension of the management console provided by Microsoft. It provides users with a centralized and organized view of the hardware devices connected to the computer. Accessing Device Manager is easy, but how do you connect to a remote Device Manager? What is a remote device? Before connecting to Device Manager remotely, do you know what a remote device is? A remote device can be defined as any device that you do not have physical access to but can be accessed remotely via a network link or using remote control software. What are some examples of remote access? You can access many devices remotely. Let's assume you work in an open plan office. The office has a printer shared by all employees. From your desk, you can access your printer remotely. Other remote access examples include remote access computing

PHP development practice: Use PHPMailer to send emails to users in the MySQL database Introduction: In the construction of the modern Internet, email is an important communication tool. Whether it is user registration, password reset, or order confirmation in e-commerce, sending emails is an essential function. This article will introduce how to use PHPMailer to send emails and save the email information to the user information table in the MySQL database. 1. Install the PHPMailer library PHPMailer is

As the amount of data continues to increase, database performance has become an increasingly important issue. Hot and cold data separation processing is an effective solution that can separate hot data and cold data, thereby improving system performance and efficiency. This article will introduce how to use Go language and MySQL database to separate hot and cold data. 1. What is hot and cold data separation processing? Hot and cold data separation processing is a way of classifying hot data and cold data. Hot data refers to data with high access frequency and high performance requirements. Cold data

How to implement Modbus TCP remote access through PHP Modbus is a communication protocol used to exchange data between controllers and devices in the field of industrial automation. ModbusTCP is a Modbus protocol based on TCP/IP communication on Ethernet. Using PHP language, we can easily implement remote access to ModbusTCP. This article will introduce how to implement ModbusTCP remote access through PHP and provide sample code. Step 1: Installation

As the amount of data increases, database backup becomes more and more important. For the MySQL database, we can use the Go language to achieve automated incremental backup. This article will briefly introduce how to use Go language to perform incremental backup of MySQL database data. 1. Install the Go language environment. First, we need to install the Go language environment locally. You can go to the official website to download the corresponding installation package and install it. 2. Install the corresponding library. The Go language provides many third-party libraries for accessing MySQL databases, among which the most commonly used ones are

To what extent can I develop MySQL database skills to be successfully employed? With the rapid development of the information age, database management systems have become an indispensable and important component in all walks of life. As a commonly used relational database management system, MySQL has a wide range of application fields and employment opportunities. So, to what extent do MySQL database skills need to be developed to be successfully employed? First of all, mastering the basic principles and basic knowledge of MySQL is the most basic requirement. MySQL is an open source relational database management

How to Disable Remote Desktop on Windows 11 With Remote Desktop, anyone with the correct username and password can access your PC. This is not a common attack tactic, but it can happen. Once a user has access to your PC, bad actors can gain access to your files, applications, and other account credentials. RDP is generally a security feature, but if you don't use it, disabling it can help eliminate attacks from potentially malicious remote threats. So, there are several ways to disable RDP and we'll show you how. want

How to use MySQL database for time series analysis? Time series data refers to a collection of data arranged in time order, which has temporal continuity and correlation. Time series analysis is an important data analysis method that can be used to predict future trends, discover cyclical changes, detect outliers, etc. In this article, we will introduce how to use a MySQL database for time series analysis, along with code examples. Create a data table First, we need to create a data table to store time series data. Suppose we want to analyze the number
