Home > Backend Development > PHP7 > body text

How to install openssl extension in php7

藏色散人
Release: 2023-02-18 08:42:02
Original
2701 people have browsed it

How to install openssl extension in php7: 1. Enter the openssl extension directory; 2. Run phpize; 3. Perform installation through "yum install openssl"; 4. Open php.ini and add "extension=openssl.so" ;5. Restart PHP.

How to install openssl extension in php7

The operating environment of this article: linux5.9.8 system, PHP7.0 version, DELL G3 computer

How to install php7 openssl extension?

php7 installation openssl extension method:

1. My source code is in /home/topsec/Documents/php-7.0.11, and the installation location is / usr/local/php7, php.ini is under /usr/local/php7/lib. If there is no php.ini, you need to rename the configuration file php.ini-development or php.ini-production in the source code to php.ini and place it under lib.

2. Enter the extension directory of openssl: /home/topsec/Documents/php-7.0.11/ext/openssl

3. Run phpize

/usr/local/php7/bin/phpize
Copy after login

4. Execute the installation

./configure --with-openssl --with-php-config=/usr/local/php7/bin/php-config
make&&make install
Copy after login

5. During the process, libssl may not be found. Execute the following command and then execute it again. 4. Execute the installation

yum install openssl
yum install openssl-devel
Copy after login

6. After executing the installation, you will be prompted to generate a .so file in a certain directory. The location where I generated it is /usr/local/php7/lib/php/ extensions/no-debug-non-zts-20151012/ Next

7. Open php.ini

vim /usr/local/php7/lib/php.ini
Copy after login

Add the following two sentences

extension_dir = "/usr/local/php7/lib/php/extensions/no-debug-non-zts-20151012/"
extension=openssl.so
Copy after login

8. Just restart php.

Recommended learning: "PHP Video Tutorial"

The above is the detailed content of How to install openssl extension in php7. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!