Home  >  Article  >  Backend Development  >  Pure source code compilation and construction of apache+mysql+php development environment under linux_PHP tutorial

Pure source code compilation and construction of apache+mysql+php development environment under linux_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 10:59:57869browse

Record the entire process of the apache+mysql+php development environment that I compiled from source code under fedora core 1
Usually it is most convenient to install a server using rpm, and there is no need to consider too many configuration issues. You can easily get the environment you need. However, the problem of interconnected rpm packages is not so easy to solve.
It is relatively simple to compile and install the three applications apache, mysql, and php from source code. The configuration parameters are not complicated and there are not many dependencies. The system compiled from source code is also relatively stable, making it easier to build in the future. Patches and upgrades work.
The prerequisite for compilation and installation is that the system has installed the corresponding compilation tools. Generally, when installing the system, I choose to customize the system and only select the development tool kit, and do not install all other software packages. . If you do not choose to install all development tools, you need to install at least the following rpm packages
autoconf-2.57-3.noarch.rpm
automake-1.7.8-1.noarch.rpm
binutils -2.14.90.0.6-3.i386.rpm
bison-1.875-5.i386.rpm
byacc-1.9-26.i386.rpm
cpp-3.3.2-1.i386.rpm
flex-2.5.4a-30.i386.rpm
gcc-3.3.2-1.i386.rpm
gcc-c++-3.3.2-1.i386.rpm
glibc-devel -2.3.2-101.i386.rpm
glibc-headers-2.3.2-101.i386.rpm
glibc-kernheaders-2.4-8.36.i386.rpm
libstdc++-devel-3.3.2 -1.i386.rpm
m4-1.4.1-14.i386.rpm
The steps are described below
1. Mysql installation
Download a target version
tar -xzvf mysql-4.0. xx.tar.gz
cd mysql-4.0.xx
./configure --prefix=/usr/local/mysql <--This path is what I am more accustomed to, you can also choose other installation paths
make
make install
In the support-files directory, select an appropriate .cnf file, cp to /etc/my.cnf
cd /usr/local/mysql/bin
. /mysql_install_db
../share/mysql/mysql.server start
./mysqladmin -uroot password 'xxxx' <--Modify the default password
./mysql -uroot -p Try to log in to mysql, There should be no problem
The file mysql.server can be copied to the /etc/rc.d/init.d directory and set to automatically start the mysql service when the system starts
2. Apache installation
Download A target version
tar -xzvf httpd-2.0.xx.tar.gz
cd httpd-2.0.xx
./configure --prefix=/usr/local/apache --enable-so < --Modular
make
make install
cd /usr/local/apache/conf
Modify httpd.conf, because you need to configure php later, you can set it up briefly here, mainly configuring User ,Group,ServerName,DocumentRoot,DirectoryIndex parameters are enough

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/631844.htmlTechArticleRecord the entire process of the apache+mysql+php development environment that I compiled from source code under fedora core 1 Usually it is most convenient to install a server using rpm, there is no need to consider...
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