Home  >  Article  >  Operation and Maintenance  >  What to do if the mysql.h file cannot be found under centos

What to do if the mysql.h file cannot be found under centos

王林
王林Original
2020-05-23 10:40:282535browse

What to do if the mysql.h file cannot be found under centos

Problem description:

c The program accesses mysql and reports an error, indicating that the mysql.h file cannot be found.

Solution:

Although mysql-libs has been installed, you still need to install the mysql development package.

yum install mysql-devel

The error is reported because the packages used by PHP to access mysql conflict with those already installed in the system. Follow the prompts to execute the following command to skip these packages:

yum --skip-broken install mysql-devel
locate mysql.h

You can find it after completing the above operations.

Recommended tutorial: centos tutorial

The above is the detailed content of What to do if the mysql.h file cannot be found under centos. 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