


Pure source code compilation and construction of apache+mysql+php development environment under linux_PHP tutorial
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

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

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

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics











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.

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.

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 →

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.

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.

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.

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)

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)
