How to deploy php in linux

藏色散人
Release: 2023-03-03 08:18:01
Original
3533 people have browsed it

How to deploy PHP on Linux: First open the terminal and execute the command "yum install php php-devel"; then install common PHP extensions; finally restart apache with the command "apachectl restart" to make PHP take effect.

How to deploy php in linux

Deploy php in Linux (CentOS7) system:

First open the terminal.

yum install php php-devel Enter to confirm the installation, wait about 20 seconds and the installation is successful.

Recommended: "PHP Tutorial"

How to deploy php in linux

Install common PHP extensions (optional, according to your actual needs)

yum install php-mysql php-gd php-imap php-ldap php-odbc php-pear php-xml php-xmlrpc
Copy after login

How to deploy php in linux

Restart apache to make php take effect

apachectl restart
Copy after login

How to deploy php in linux

Test the php environment

In the /var/www/html directory Create a new info.php

vi /var/www/html/info.php
Copy after login

file content in (Apache’s default root directory)

Copy after login

Visit http://localhost/info.php

How to deploy php in linux

Additional: mysql test (not installed but needs to be installed)

Create a new mysql.php in the /var/www/html directory (apache default root directory)

vi /var/www/htmml/mysql.php
Copy after login

File content

"; } mysql_close($con); ?>
Copy after login

How to deploy php in linux

Visit http://localhost/mysql.php to view database information.

How to deploy php in linux

Notes

The php installation package can be downloaded directly using the terminal, no need to download it in advance

The above is the detailed content of How to deploy php in linux. 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
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!