Table of Contents
Installing Apache
Associate php and mysql
1. Search module
Home Backend Development PHP Tutorial Teach you how to deploy php projects under Linux - Apache, php, mysql association (share)

Teach you how to deploy php projects under Linux - Apache, php, mysql association (share)

Jun 10, 2021 am 09:44 AM

This article will share with you how to deploy php projects under Linux - Apache, php, mysql association (sharing), which has certain reference value. Friends in need can refer to it. I hope it will be helpful to you. Everyone helps.

Teach you how to deploy php projects under Linux - Apache, php, mysql association (share)

## The environment for deploying PHP projects under Linux can be divided into two types. One uses compressed packages of Apache, PHP and MySQL. Installation, one is to use the yum command to install.

Use the compressed packages of the three software to install, and you need to manually configure the relationship between the three. The configuration between apache and php is not difficult, but when configuring with mysql, you need to understand php.

The following is to use yum to configure the php environment in linux:

MySql

1. Mysql and apache are best installed first, because When configuring php, you need to configure and test related to mysql and apache

First download the mysql-sever file, because the blogger's Linux environment is the CentOS version, and there seems to be no mysql-sever in the yum source when mysql is installed normally. File, you need to download it from the official website

1.下载mysql-service文件
Copy after login
[root@tele-1 ~]# wget http://dev.mysql.com/get/mysql-community-release-el7-5.noarch.rpm
Copy after login
2.安装mysql-service文件
Copy after login
[root@tele-1 ~]# rpm -ivh mysql-community-release-el7-5.noarch.rpm
Copy after login

2. Install mysql

[root@tele-1 ~]# yum install mysql-community-server
Copy after login

3. After the installation is complete, start the mysql service

[root@tele-1 ~]# service mysqld restart
Copy after login

4. The initial installation of mysql does not have a password, and the default user name is root. So we need to change the password and use the mysql command line to change it

 

1. Enter the mysql command line

[root@tele-1 ~]# mysql -uroot
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 474801
Server version: 5.6.36 MySQL Community Server (GPL)

Copyright (c) 2000, 2017, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql>
Copy after login
<strong>2.使用命令进行密码修改</strong><br/>
Copy after login
mysql> set password for &#39;root&#39;@&#39;localhost&#39; = password(&#39;你要修改的密码&#39;);
Query OK, 0 rows affected (0.06 sec)
Copy after login

5. Because the blogger uses The local navicat software is used to connect to mysql under Linux, so if you want to access it locally, you need to change the user table in the mysql database

1.操作mysql数据库表
Copy after login
mysql> use mysql;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Database changed
mysql>
Copy after login
2.查看user表中的数据(在mysql命令行中可以直接进行sql语句编写)
Copy after login
mysql> select * from user;
mysql>
Copy after login

3. In the blogger's table This is the modified table. If you want remote access, you need the data marked in red above. Host refers to the IP address that can access this database, and % means that all requests can be connected.

You can modify a piece of data or add a piece of data. But it is best not to modify the data marked in blue above. The modified statement is in the format below

mysql> update user set Host = &#39;%&#39; where ???
Copy after login

4. Finally, exit or \q are the methods to exit the mysql command line

mysql> \q
Bye
Copy after login

Installing Apache

1. The apache installation method is relatively simple

[root@tele-2 ~]# yum install httpd
Copy after login

2. Access the virtual machine from the external network Address, we need to modify the apache configuration file /etc/httpd/conf/httpd.conf

Find #ServerName www.example.com :80 Change to ServerName localhost:80

As shown in the picture on the right:

## Find #Listen Change to Listen:8080( The open port number in linux is 80XX)

As shown in the picture on the right:

3. After the modification is completed, we need to start the httpd service again and check the startup status

[root@tele-2 ~]# service httpd start
Redirecting to /bin/systemctl start  httpd.service
[root@tele-2 ~]# service httpd status
Redirecting to /bin/systemctl status  httpd.service
● httpd.service - The Apache HTTP Server
   Loaded: loaded (/usr/lib/systemd/system/httpd.service; enabled; vendor preset: disabled)
   Active: active (running) since Mon 2017-06-05 15:57:34 CST; 5s ago
     Docs: man:httpd(8)
           man:apachectl(8)
  Process: 54532 ExecStop=/bin/kill -WINCH ${MAINPID} (code=exited, status=0/SUCCESS)
  Process: 39046 ExecReload=/usr/sbin/httpd $OPTIONS -k graceful (code=exited, status=0/SUCCESS)
 Main PID: 54573 (httpd)
   Status: "Processing requests..."
   Memory: 15.8M
   CGroup: /system.slice/httpd.service
           ├─54573 /usr/sbin/httpd -DFOREGROUND
           ├─54576 /usr/sbin/httpd -DFOREGROUND
           ├─54577 /usr/sbin/httpd -DFOREGROUND
           ├─54578 /usr/sbin/httpd -DFOREGROUND
           ├─54579 /usr/sbin/httpd -DFOREGROUND
           └─54580 /usr/sbin/httpd -DFOREGROUND

Jun 05 15:57:34 tele-2 systemd[1]: Starting The Apache HTTP Server...
Jun 05 15:57:34 tele-2 systemd[1]: Started The Apache HTTP Server.
Copy after login

4. At this point you can access your server, enter localhost or IP address, and an Apache test page powered by centos test page will appear

PHP

 1.php installation command

[root@tele-2 ~]# yum install php
Copy after login

 2. Install directly all the way, and restart the httpd service again after the installation is complete

[root@tele-2 ~]# service httpd start
Redirecting to /bin/systemctl start  httpd.service
Copy after login

3. After restarting, we will test PHP related information. We will create a new PHP interface for testing

In the apache default page path

/

# Create a new test.php page under ##var/www/html and add the code

<?php
 phpinfo();
?>
Copy after login
 4. Visit this page and enter localhost/test.php, or ip: Port number/test.php You can see the configuration information of the php environment

 

Associate php and mysql

1. Search module

[root@tele-2 ~]# yum search php
Copy after login
2. Install related modules

[root@tele-2 ~]# yum install php-mysql php-gd php-imap php-ldap php-odbc php-pear php-xml  php-xmlrpc
Copy after login
3. After the installation is completed, restart mysqld, Restart httpd and revisit the info.php just now. We find that there is more MySQL related information. As shown on the right:

至此,php在linux中的运行环境就已经成功配置完成了。

1.mysql yum安装默认文件夹及相关命令

数据库目录:/var/lib/mysql/

配置文件:/usr/share/mysql(mysql.server命令及配置文件)

相关命令:/usr/bin(mysqladmin mysqldump等命令)

my.cnf: /etc/my.cnf

启动脚本:/etc/rc.d/init.d/(启动脚本文件mysql的目录)
Copy after login
启动命令:service mysql start
Copy after login
停止命令:service mysql stop
Copy after login
运行状态:service mysql status
Copy after login

 2.apache

配置文件路径:/etc/httpd/conf/httpd.conf
Copy after login
启动命令:service httpd start
Copy after login
停止命令:service httpd stop
Copy after login
运行状态:service httpd status
Copy after login

 3.php

php默认页面路径:/var/www/html
Copy after login

推荐学习:《PHP视频教程

 

 

 

 

The above is the detailed content of Teach you how to deploy php projects under Linux - Apache, php, mysql association (share). For more information, please follow other related articles on the PHP Chinese website!

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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Apr 05, 2025 am 12:04 AM

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

Explain the concept of late static binding in PHP. Explain the concept of late static binding in PHP. Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

Framework Security Features: Protecting against vulnerabilities. Framework Security Features: Protecting against vulnerabilities. Mar 28, 2025 pm 05:11 PM

Article discusses essential security features in frameworks to protect against vulnerabilities, including input validation, authentication, and regular updates.

Customizing/Extending Frameworks: How to add custom functionality. Customizing/Extending Frameworks: How to add custom functionality. Mar 28, 2025 pm 05:12 PM

The article discusses adding custom functionality to frameworks, focusing on understanding architecture, identifying extension points, and best practices for integration and debugging.

How to send a POST request containing JSON data using PHP's cURL library? How to send a POST request containing JSON data using PHP's cURL library? Apr 01, 2025 pm 03:12 PM

Sending JSON data using PHP's cURL library In PHP development, it is often necessary to interact with external APIs. One of the common ways is to use cURL library to send POST�...

Describe the SOLID principles and how they apply to PHP development. Describe the SOLID principles and how they apply to PHP development. Apr 03, 2025 am 12:04 AM

The application of SOLID principle in PHP development includes: 1. Single responsibility principle (SRP): Each class is responsible for only one function. 2. Open and close principle (OCP): Changes are achieved through extension rather than modification. 3. Lisch's Substitution Principle (LSP): Subclasses can replace base classes without affecting program accuracy. 4. Interface isolation principle (ISP): Use fine-grained interfaces to avoid dependencies and unused methods. 5. Dependency inversion principle (DIP): High and low-level modules rely on abstraction and are implemented through dependency injection.

How does session hijacking work and how can you mitigate it in PHP? How does session hijacking work and how can you mitigate it in PHP? Apr 06, 2025 am 12:02 AM

Session hijacking can be achieved through the following steps: 1. Obtain the session ID, 2. Use the session ID, 3. Keep the session active. The methods to prevent session hijacking in PHP include: 1. Use the session_regenerate_id() function to regenerate the session ID, 2. Store session data through the database, 3. Ensure that all session data is transmitted through HTTPS.

See all articles