LA(N)MP 编译安装

注意:使用 su 或者 sudo 超级管理员权限

PHP


# 下载 php 源码包
[root@VM_77_151_centos ~]# wget http://php.net/get/php-7.1.1.tar.gz/from/a/mirror
[root@VM_77_151_centos ~]# tar -zxvf mirror  
#安装依赖
[root@VM_77_151_centos ~]# yum install gcc gcc++ libxml2-devel
[root@VM_77_151_centos ~]# cd php-7.1.1
# --with-config-file-path=path 指定配置路径
[root@VM_77_151_centos php-7.1.1]# ./configure --prefix=/usr/local/php \
--enable-mysqlnd --enable-opcache --enable-sockets --enable-sysvmsg \
--enable-sysvsem  --enable-sysvshm --enable-shmop --enable-zip \
--enable-ftp --enable-soap --enable-xml --enable-mbstring --disable-rpath \
--disable-debug --disable-fileinfo \
--with-pdo-mysql=mysqlnd --with-pcre-regex \
--with-iconv --with-zlib --with-openssl --with-xmlrpc \
--with-curl --with-imap-ssl --with-freetype-dir --enable-fpm \
--enable-pcntl --with-mhash 

[root@VM_77_151_centos php-7.1.1]# make
[root@VM_77_151_centos php-7.1.1]# make install
# 拷贝 php.ini-development 或 php.ini-production 文件 更名为到/usr/local/php7/lib目录 更名为 php.ini
[root@VM_77_151_centos php-7.1.1]# cp php.ini-development /usr/local/php7/lib/php.ini

MySQL


# 下载 mysql 源码包
[root@VM_77_151_centos ~]# wget https://dev.mysql.com/get/Downloads/MySQL-5.7/mysql-5.7.17.tar.gz
[root@VM_77_151_centos ~]# tar -zxvf mysql-5.7.17.tar.gz  
# 安装依赖和工具
[root@VM_77_151_centos ~]# yum install cmake gcc-c++ ncurses-devel perl-Data-Dump boost boost-doc boost-devel
[root@VM_77_151_centos ~]# cd mysql-5.7.17
[root@VM_77_151_centos mysql-5.7.17]# cmake \
-DCMAKE_INSTALL_PREFIX=/usr/local/mysql \
-DMYSQL_DATADIR=/mydata/mysql/data \
-DSYSCONFDIR=/etc \
-DMYSQL_USER=mysql \
-DWITH_MYISAM_STORAGE_ENGINE=1 \
-DWITH_INNOBASE_STORAGE_ENGINE=1 \
-DWITH_ARCHIVE_STORAGE_ENGINE=1 \
-DWITH_MEMORY_STORAGE_ENGINE=1 \
-DWITH_READLINE=1 \
-DMYSQL_UNIX_ADDR=/var/run/mysql/mysql.sock  \
-DMYSQL_TCP_PORT=3306 \
-DENABLED_LOCAL_INFILE=1 \
-DENABLED_DOWNLOADS=1 \
-DWITH_PARTITION_STORAGE_ENGINE=1 \
-DEXTRA_CHARSETS=all \
-DDEFAULT_CHARSET=utf8 \
-DDEFAULT_COLLATION=utf8_general_ci \
-DWITH_DEBUG=0 \
-DMYSQL_MAINTAINER_MODE=0 \
-DWITH_SSL:STRING=bundled \
-DWITH_ZLIB:STRING=bundled \
-DDOWNLOAD_BOOST=1 \
-DWITH_BOOST=/usr/share/doc/boost-doc-1.59.0/ \
-DOWNLOAD_BOOST_TIMEOUT=3600

# 或者
[root@VM_77_151_centos mysql-5.7.17]# wget http://sourceforge.net/projects/boost/files/boost/1.59.0/boost_1_59_0.tar.gz
[root@VM_77_151_centos mysql-5.7.17]# mkdir /usr/share/doc/boost-doc-1.59.0
[root@VM_77_151_centos mysql-5.7.17]# cp ./boost_1_59_0.tar.gz /usr/share/doc/boost-doc-1.59.0/

[root@VM_77_151_centos mysql-5.7.17]# make

# 如果编译过程出现以下错误,内存不足,可以建立swap分区解决
c++: internal compiler error: Killed (program cc1plus)
Please submit a full bug report,
with preprocessed source if appropriate.
See <http://bugzilla.redhat.com/bugzilla> for instructions.
make[2]: *** [sql/CMakeFiles/sql.dir/item_geofunc.cc.o] Error 4
make[1]: *** [sql/CMakeFiles/sql.dir/all] Error 2
make: *** [all] Error 2

[root@VM_77_151_centos mysql-5.7.17]# make
[100%] Built target my_safe_process
[root@VM_77_151_centos mysql-5.7.17]# make install
# 创建 mysql 用户和 mysql 用户组
[root@VM_77_151_centos ~]# groupadd -r mysql && useradd -r -g mysql -s /bin/false -M mysql
# 创建数据库存放目录,以及权限修改
[root@VM_77_151_centos mysql]# mkdir -p /usr/local/mysql/data && chown -R root:mysql /usr/local/mysql/
[root@VM_77_151_centos mysql]# chown -R mysql:mysql /usr/local/mysql/data/
[root@VM_77_151_centos mysql]# chmod -R go-rwx /usr/local/mysql/data/
# 初始化 MySQL 数据库
[root@VM_77_151_centos bin]# /usr/local/mysql/bin/mysqld --initialize-insecure --user=mysql --basedir=/usr/local/mysql --datadir=/usr/local/mysql/data
# 启动
[root@VM_77_151_centos bin]# /usr/local/mysql/support-files/mysql.server start
[root@VM_77_151_centos lib]# echo "/usr/local/mysql/lib" > /etc/ld.so.conf.d/mysql.conf

Apache


[root@VM_77_151_centos ~]# wget http://mirror.bit.edu.cn/apache//httpd/httpd-2.4.25.tar.gz
[root@VM_77_151_centos ~]# tar -zxvf httpd-2.4.25.tar.gz
# 安装依赖 apr apr-util pcre
[root@VM_77_151_centos ~]# wget http://archive.apache.org/dist/apr/apr-1.5.2.tar.gz
[root@VM_77_151_centos ~]# wget http://archive.apache.org/dist/apr/apr-util-1.5.4.tar.gz
[root@VM_77_151_centos ~]# tar -zxvf apr-1.5.2.tar.gz
[root@VM_77_151_centos ~]# tar -zxvf apr-util-1.5.4.tar.gz
[root@VM_77_151_centos ~]# mv apr-1.5.2 apr
[root@VM_77_151_centos ~]# mv apr-util-1.5.4 apr-util
[root@VM_77_151_centos ~]# mv apr apr-util httpd-2.4.25/srclib/
[root@VM_77_151_centos ~]# wget https://fossies.org/linux/misc/pcre-8.39.tar.gz
[root@VM_77_151_centos ~]# tar pcre-8.39.tar.gz
[root@VM_77_151_centos ~]# cd pcre-8.39
[root@VM_77_151_centos pcre-8.39]# ./configure --prefix=/usr/local/pcre-8.39
# 编译 安装
[root@VM_77_151_centos ~]# cd ~./httpd-2.4.25
[root@VM_77_151_centos httpd-2.4.25]# ./configure --prefix=/usr/local/apache -with-pcre=/usr/local/pcre-8.39/bin/pcre-config -with-included-apr --with-apxs2=/usr/local/apache/bin/apxs
[root@VM_77_151_centos httpd-2.4.25]# make
[root@VM_77_151_centos httpd-2.4.25]# make install
[root@VM_77_151_centos httpd-2.4.25]# cd /usr/local/apache/bin
[root@VM_77_151_centos bin]# ./apachectl -k start
# 防火墙启动80端口
[root@VM_77_151_centos bin]# firewall-cmd --zone=public --add-port=80/tcp --permanent
[root@VM_77_151_centos bin]# systemctl restart firewalld.service

Nginx


[root@VM_77_151_centos ~]# wget http://nginx.org/download/nginx-1.10.3.tar.gz
[root@VM_77_151_centos ~]# tar -zxvf 1.10.3.tar.gz
[root@VM_77_151_centos ~]#cd nginx-1.10.3/
[root@VM_77_151_centos nginx-1.10.3]#  ./configure --prefix=/usr/local/nginx --with-pcre=../pcre-8.39
[root@VM_77_151_centos nginx-1.10.3]# make
[root@VM_77_151_centos nginx-1.10.3]# make install
[root@VM_77_151_centos nginx-1.10.3]# cd /usr/local/nginx/
# 启动 Nginx 前先将 Apache 的进程关闭
[root@VM_77_151_centos nginx]# ./sbin/nginx

配置PHP


# 拷贝默认配置
[root@VM_77_151_centos sbin]# cd /usr/local/php7/etc/
[root@VM_77_151_centos etc]# cp php-fpm.conf.default php-fpm.conf
[root@VM_77_151_centos etc]# cd php-fpm.d
[root@VM_77_151_centos php-fpm.d]# cp www.conf.default www.conf
# 启动 php-fpm
[root@VM_77_151_centos php-fpm.d]# cd /usr/local/php7/sbin/

安装Swoole插件


#安装依赖
[root@VM_77_151_centos ~]# yum install pcre-devel
[root@VM_77_151_centos ~]# yum install autoconf
# 下载 swoole 源码包
tar zxf v4.2.12.tar.gz
[root@VM_77_151_centos ~]# wget https://github.com/swoole/swoole-src/archive/v4.2.12.tar.gz
[root@VM_77_151_centos ~]# tar -zxvf v4.2.12.tar.gz
# 生成 configure 文件
[root@VM_77_151_centos ~]# cd swoole-src-4.2.12
[root@VM_77_151_centos swoole-src-4.2.12]# phpize
# --with-php-config=path 指定配置文件
[root@VM_77_151_centos swoole-src-4.2.12]# ./configure --with-php-config=/usr/local/php/bin/php-config
[root@VM_77_151_centos swoole-src-4.2.12]# make
[root@VM_77_151_centos swoole-src-4.2.12]# make install
# 配置 php.ini 添加 extension=swoole
[root@VM_77_151_centos swoole-src-4.2.12]# vim /usr/local/php/lib/php.ini
extension=swoole
# 重启 php-fpm
[root@VM_77_151_centos swoole-src-4.2.12]# ps aux | grep php-fpm
root     10040  0.0  0.1 163436  3428 ?        Ss   11:08   0:00 php-fpm: master process (/usr/local/php7/etc/php-fpm.conf)
nobody   10041  0.0  0.1 163436  3036 ?        S    11:08   0:00 php-fpm: pool www
nobody   10042  0.0  0.1 163436  3036 ?        S    11:08   0:00 php-fpm: pool www
root     10056  0.0  0.0 112704   976 pts/5    S+   11:10   0:00 grep --color=auto php-fpm
# kill 掉 master 主进程 pid
[root@VM_77_151_centos swoole-src-4.2.12]# kill -USR2 10040

配置 Nginx 解析 .php 文件

[root@VM_77_151_centos nginx]# vim conf/nginx.conf
# 添加如下配置
#http {
#    server {
#        location ~ \.php$ {
#                fastcgi_pass   127.0.0.1:9000;
#                fastcgi_index  index.php;
#                include /usr/local/nginx/conf/fastcgi_params;
#                #include fastcgi_params;
#                fastcgi_split_path_info         ^(.+\.php)(/.+)$;
#                fastcgi_param PATH_INFO         $fastcgi_path_info;
#                fastcgi_param PATH_TRANSLATED   $document_root$fastcgi_path_info;
#                fastcgi_param SCRIPT_FILENAME   $document_root$fastcgi_script_name;
#       }
#    }
#}
# 重启 Nginx
[root@VM_77_151_centos nginx]# sbin/nginx -s reload

参考


swap分区:http://blog.csdn.net/tongyijia/article/details/50783083
参考:http://www.imooc.com/learn/703
https://typecodes.com/web/centos7compilemysql.html?utm_source=tuicool&utm_medium=referral

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,937评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,503评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,712评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,668评论 1 276
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,677评论 5 366
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,601评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,975评论 3 396
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,637评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,881评论 1 298
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,621评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,710评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,387评论 4 319
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,971评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,947评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,189评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,805评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,449评论 2 342

推荐阅读更多精彩内容