Home Backend Development PHP Tutorial 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

Jul 13, 2016 am 10:59 AM
fedora linux one time Down exist develop I build source code environment compile Record

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 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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Roblox: Bubble Gum Simulator Infinity - How To Get And Use Royal Keys
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Nordhold: Fusion System, Explained
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Mandragora: Whispers Of The Witch Tree - How To Unlock The Grappling Hook
3 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)

Hot Topics

Java Tutorial
1666
14
PHP Tutorial
1272
29
C# Tutorial
1251
24
Linux Architecture: Unveiling the 5 Basic Components Linux Architecture: Unveiling the 5 Basic Components Apr 20, 2025 am 12:04 AM

The five basic components of the Linux system are: 1. Kernel, 2. System library, 3. System utilities, 4. Graphical user interface, 5. Applications. The kernel manages hardware resources, the system library provides precompiled functions, system utilities are used for system management, the GUI provides visual interaction, and applications use these components to implement functions.

How to check the warehouse address of git How to check the warehouse address of git Apr 17, 2025 pm 01:54 PM

To view the Git repository address, perform the following steps: 1. Open the command line and navigate to the repository directory; 2. Run the "git remote -v" command; 3. View the repository name in the output and its corresponding address.

vscode Previous Next Shortcut Key vscode Previous Next Shortcut Key Apr 15, 2025 pm 10:51 PM

VS Code One-step/Next step shortcut key usage: One-step (backward): Windows/Linux: Ctrl ←; macOS: Cmd ←Next step (forward): Windows/Linux: Ctrl →; macOS: Cmd →

How to run java code in notepad How to run java code in notepad Apr 16, 2025 pm 07:39 PM

Although Notepad cannot run Java code directly, it can be achieved by using other tools: using the command line compiler (javac) to generate a bytecode file (filename.class). Use the Java interpreter (java) to interpret bytecode, execute the code, and output the result.

How to run sublime after writing the code How to run sublime after writing the code Apr 16, 2025 am 08:51 AM

There are six ways to run code in Sublime: through hotkeys, menus, build systems, command lines, set default build systems, and custom build commands, and run individual files/projects by right-clicking on projects/files. The build system availability depends on the installation of Sublime Text.

What is the main purpose of Linux? What is the main purpose of Linux? Apr 16, 2025 am 12:19 AM

The main uses of Linux include: 1. Server operating system, 2. Embedded system, 3. Desktop operating system, 4. Development and testing environment. Linux excels in these areas, providing stability, security and efficient development tools.

laravel installation code laravel installation code Apr 18, 2025 pm 12:30 PM

To install Laravel, follow these steps in sequence: Install Composer (for macOS/Linux and Windows) Install Laravel Installer Create a new project Start Service Access Application (URL: http://127.0.0.1:8000) Set up the database connection (if required)

git software installation git software installation Apr 17, 2025 am 11:57 AM

Installing Git software includes the following steps: Download the installation package and run the installation package to verify the installation configuration Git installation Git Bash (Windows only)

See all articles