Home Backend Development PHP Tutorial 什么是LAMP?该如何解决

什么是LAMP?该如何解决

Jun 13, 2016 am 10:03 AM
apache enable mysql nbsp server

什么是LAMP?
什么是LAMP?

------解决方案--------------------
LAMP:就是Linux Apache MySQL Php的缩写,几乎是最强的架站组合。 

如何安装? 


LAMP第一课:介绍与安装(感谢Linuxsir的dsj) 

Linux+Apache+PHP+MySQL=LAMP 
Linux的安装就不多说了,以后详细再说吧! 
下面是dsj兄的安装介绍,贴下来学习: 
一、软件下载 
分别下载软件以下软件: 
Apache-2.0.43 (www.apache.org) 
Php-4.2.3 (www.php.net) 
Mysql-3.23.53 (www.mysql.com) 

二、准备安装 
将所有软件的源代码放置在目录 /home/src 下 ,安装目录为 /server ,下载后的源代码包在/root目录下,故执行以下操作: 
mkdir /home/src 
mkdir /server 
groupadd mysql 
useradd -g mysql -d /home/mysql mysql //建立mysql组及用户 
cd /home/src 
tar zxvf /root/mysql-3.23.53.tar.gz 
tar zxvf /root/httpd-2.0.43.tar.gz 
tar zxvf /root/php-4.2.3.tar.gz 

三、安装配置过程 
使用 vi 编辑一 shell 文件,内容如下: 
----------------------------------- 

cd /home/src/mysql-3.23.53 
./configure --prefix=/server/mysql 
make 
make install 
/server/mysql/bin/mysql_install_db 

chown -R root /server/mysql 
chgrp -R mysql /server/mysql 

chown -R root /server/mysql/bin 
chgrp -R mysql /server/mysql/bin 

chown -R root /server/mysql/var 
chgrp -R mysql /server/mysql/var 
chmod 777 /server/mysql/var 

chown -R root /server/mysql/var/mysql 
chgrp -R mysql /server/mysql/var/mysql 
chmod 777 /server/mysql/var/mysql 

chown -R root /server/mysql/var/mysql/* 
chgrp -R mysql /server/mysql/var/mysql/* 
chmod 777 /server/mysql/var/mysql/* 

chmod 777 /server/mysql/lib/mysql/libmysqlclient.a 
#安装 mysql-3.23.53 

cd /home/src/httpd-2.0.43 
./configure --prefix=/server/apache --enable-so 
make 
make install 
#安装 Apache-2.0.43 

cd /home/src/php-4.2.3 
./configure --with-mysql=/server/mysql --with-apxs2=/server/apache/bin/apxs 
--eable-track-vars --enable-force-cgi-redirect --enable-pic 
--enable-inline-optimiation --enable-memory-limit --enable-bcmath 
--enable-shmop --enable-versioning 
-enable-calendar --enable-dbx --enable-dio --enable-mcal 
--with-config-file-path=/server/apache/conf 
make 
make install 
cp php.ini-dist /server/apache/conf/php.ini 
#安装php-4.2.3 ,以上某些模块可不使用,--with-config-file-path=/server/apache/conf 指定 
#php的配置文件在目录 /server/apache/conf 

ln -s /server/apache/bin/apachectl /bin/apache 
ln -s /server/mysql/bin/mysql /bin/mysql 
#创建符号连接 
---------------------------------------------------- 

四、修改配置文件 
vi /server/apache/conf/httpd.conf 
# 加入以下行(装载php4模块并指定.php 文件) 
# LimitRequestBody (指定php处理的请求数据大小,以下指定为 20M) 

LoadModule php4_module modules/libphp4.so 

SetOutputFilter PHP 
SetInputFilter PHP 
LimitRequestBody 20971520 


#注解以下行(在文本前加#),使apache显示中文,具体原因未知 
ForceLanguagePriority Prefer Fallback 
AddDefaultCharset ISO-8859-1 

#加入默认的引导文件index.php(找到DirectoryIndex,修改如下:) 
DirectoryIndex index.html index.html.var index.php 

#指定网站目录(假设为 /apache 目录) 
DocumentRoot "/apache" 

vi /server/apache/conf/php.ini 
#找到并修改以下参数 
max_execution_time = 600 ;最大运行时间 600 秒 
max_input_time = 600 ;最大输出时间 600秒 
memory_limit = 20M ;最大内存限制 20M 
file_uploads = On ;允许上载文件 
upload_max_filesize = 20M ;最大文件大小 20M 
post_max_size = 20M ;php可接受的 post 方法大小 20M 
session.auto_start = 1 ;session自动启动 

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)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks 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)

How to use MySQL backup and restore in PHP? How to use MySQL backup and restore in PHP? Jun 03, 2024 pm 12:19 PM

Backing up and restoring a MySQL database in PHP can be achieved by following these steps: Back up the database: Use the mysqldump command to dump the database into a SQL file. Restore database: Use the mysql command to restore the database from SQL files.

How to optimize MySQL query performance in PHP? How to optimize MySQL query performance in PHP? Jun 03, 2024 pm 08:11 PM

MySQL query performance can be optimized by building indexes that reduce lookup time from linear complexity to logarithmic complexity. Use PreparedStatements to prevent SQL injection and improve query performance. Limit query results and reduce the amount of data processed by the server. Optimize join queries, including using appropriate join types, creating indexes, and considering using subqueries. Analyze queries to identify bottlenecks; use caching to reduce database load; optimize PHP code to minimize overhead.

How to insert data into a MySQL table using PHP? How to insert data into a MySQL table using PHP? Jun 02, 2024 pm 02:26 PM

How to insert data into MySQL table? Connect to the database: Use mysqli to establish a connection to the database. Prepare the SQL query: Write an INSERT statement to specify the columns and values ​​to be inserted. Execute query: Use the query() method to execute the insertion query. If successful, a confirmation message will be output.

How to create a MySQL table using PHP? How to create a MySQL table using PHP? Jun 04, 2024 pm 01:57 PM

Creating a MySQL table using PHP requires the following steps: Connect to the database. Create the database if it does not exist. Select a database. Create table. Execute the query. Close the connection.

How to use MySQL stored procedures in PHP? How to use MySQL stored procedures in PHP? Jun 02, 2024 pm 02:13 PM

To use MySQL stored procedures in PHP: Use PDO or the MySQLi extension to connect to a MySQL database. Prepare the statement to call the stored procedure. Execute the stored procedure. Process the result set (if the stored procedure returns results). Close the database connection.

How to fix mysql_native_password not loaded errors on MySQL 8.4 How to fix mysql_native_password not loaded errors on MySQL 8.4 Dec 09, 2024 am 11:42 AM

One of the major changes introduced in MySQL 8.4 (the latest LTS release as of 2024) is that the "MySQL Native Password" plugin is no longer enabled by default. Further, MySQL 9.0 removes this plugin completely. This change affects PHP and other app

The difference between oracle database and mysql The difference between oracle database and mysql May 10, 2024 am 01:54 AM

Oracle database and MySQL are both databases based on the relational model, but Oracle is superior in terms of compatibility, scalability, data types and security; while MySQL focuses on speed and flexibility and is more suitable for small to medium-sized data sets. . ① Oracle provides a wide range of data types, ② provides advanced security features, ③ is suitable for enterprise-level applications; ① MySQL supports NoSQL data types, ② has fewer security measures, and ③ is suitable for small to medium-sized applications.

How to delete data from MySQL table using PHP? How to delete data from MySQL table using PHP? Jun 05, 2024 pm 12:40 PM

PHP provides the following methods to delete data in MySQL tables: DELETE statement: used to delete rows matching conditions from the table. TRUNCATETABLE statement: used to clear all data in the table, including auto-incremented IDs. Practical case: You can delete users from the database using HTML forms and PHP code. The form submits the user ID, and the PHP code uses the DELETE statement to delete the record matching the ID from the users table.

See all articles