不能远程访问mysql数据库解决方案
本文章介绍了关于解决远程访问mysql数据库方案,有需要的朋友可以参考一下。
解决方法:
1、改表法。可能是你的帐号不允许从远程登陆,只能在localhost。这个时候只要在localhost的那台电脑,登入MySQL后,更改 "MySQL" 里的 "user" 表里的 "host" 项,从"localhost"改称"%"
代码如下 | 复制代码 |
MySQL -u root -pvmwareMySQL>use MySQL; MySQL>update user set host = '%' where user = 'root'; MySQL> host, user from user; |
2、授权法。例如,你想myuser使用mypassword从任何主机连接到MySQL服务器的话。
代码如下 | 复制代码 |
GRANT ALL PRIVILEGES ON *.* TO 'myuser'@'%'IDENTIFIED BY 'mypassword' WITH GRANT OPTION; |
如果你想允许用户myuser从ip为192.168.1.6的主机连接到MySQL服务器,并使用mypassword作为密码
代码如下 | 复制代码 |
GRANT ALL PRIVILEGES ON *.* TO 'myuser'@'192.168.1.3'IDENTIFIED BY 'mypassword' WITH GRANT OPTION; |
我用的第一个方法,刚开始发现不行,在网上查了一下,少执行一个语句
代码如下 | 复制代码 |
MySQL>FLUSH RIVILEGES 使修改生效.就可以了 |
另外一种方法,不过我没有亲自试过的,在csdn.net上找的,可以看一下.
在安装MySQL的机器上运行:
1、d:MySQLbin>MySQL -h localhost -u root //这样应该可以进入MySQL服务器
2、MySQL>GRANT ALL PRIVILEGES ON *.* TO 'root'@'%'WITH GRANT OPTION //赋予任何主机访问数据的权限
3、MySQL>FLUSH PRIVILEGES //修改生效
4、MySQL>EXIT //退出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

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

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
