linux上安装php,mysql,apche步骤

源码安装php

  1. 在php官网找到5.6.40的tar包的链接
  2. 在linux上的 用户主目录(cd ~)用 wget 链接
  3. tar -zxvf 压缩包名 解压
  4. 进入下载后的php-5.6.40的目录使用

./configure     --prefix=/usr/local/php5.6   --enable-fpm

  1. 在当前目录 make
  2. 在当前目录 make install
  3. 返回上一级目录 新建一个 test.php 测试文件
  4. 运行php文件  /use/local/php5.6/bin/php test.php
  5.  

安装mysql

  1. 在mysql官网找到源码。Generic Linux (Architecture Independent), Compressed TAR Archive

linux通用版。找到下载连接。

  1. 在linux 用 wget 链接
  2. tar -zxvf 压缩包名 解压
  3. yum install  cmake    gcc-c++   ncurses-devel  perl-Data-Dumper  boost boost-doc  boost-devel
  4. 进入mysql的目录  cmake .

参考文章:  https://itbilu.com/database/mysql/VJVOut01M.html

  1. make
  2. make install

Apache

  1. 官方找连接
  2. wget 链接
  3. 进入解压后的目录 ./configure  --prefix=/usr/local/apache2.4
  4. http://apr.apache.org/download.cgi 参考文章

你可能感兴趣的:(linux)