Home  >  Article  >  Backend Development  >  What to do if the php port link fails

What to do if the php port link fails

藏色散人
藏色散人Original
2022-11-10 09:25:571689browse

Solution to PHP port link failure: 1. Open the cmd window; 2. Enter the "mysql -u root -p" command; 3. Check the local database port through "show global variables like 'port';" No.; 4. Go back to the database configuration of the PHP code and change the port number to the correct port number.

What to do if the php port link fails

The operating environment of this tutorial: Windows 7 system, PHP version 8.1, Dell G3 computer.

What should I do if the php port link fails? Solve the port exception when PHP accesses the database

After turning on the computer, press and hold the [Start] and [R] keys on the computer keyboard at the same time to open the computer program running pop-up window.

What to do if the php port link fails

In the program running pop-up window that pops up in the lower left corner of the computer, enter the letters [cmd], and then click the [OK] button.

What to do if the php port link fails

In the pop-up running interface, enter [mysql -u root -p]. At this time, the command line belonging to the password will appear. Just enter the password for your database.

What to do if the php port link fails

After the database connection is successful, enter [show global variables like 'port';]. Be sure not to forget to enter the final semicolon.

What to do if the php port link fails

In the displayed Mysql information, you can see the port value, which is the port number of the local database. , usually 3306.

What to do if the php port link fails

After knowing the local database port number, go back to the database configuration of the php code and change the port number to the correct port number, so that no database port exception will be reported. Error.

What to do if the php port link fails

Recommended study: "PHP Video Tutorial"

The above is the detailed content of What to do if the php port link fails. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn