Centos 6 编译安装LNMP

前端之家收集整理的这篇文章主要介绍了Centos 6 编译安装LNMP前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

搭建环境:Centos 6.8,Nginx 1.9.14,MysqL 5.6.23,PHP 5.6.17

一、目的:LNMP如今已成为主流的web服务器搭建方案,公司内部的ECstore,Discuz,计划用来替代nagios+check_mk监控平台的Zabbix。均基于LNMP。本次单机LNMP搭建为后续全面了解电商集群做准备,顺便记录搭建过程,作为以后搭建环境的参考。

二、LNMP安装环境准备:

关闭防火墙及selinux

  1. serviceiptablesstop
  2. chkconfigiptablesoff
  3. setenforce0
  4. vi/etc/sysconfig/selinux
  5. SELINUX=disabled#enforcing改为disabled@H_404_19@
  6. 依赖包安装

  7. yum-yinstallgccgcc-c++autoconflibjpeglibjpeg-devellibpnglibpng-develfreetypefreetype-devellibxml2libxml2-develzlibzlib-develglibcglibc-develglib2glib2-develbzip2bzip2-develncursesncurses-develcurlcurl-devele2fsprogse2fsprogs-develkrb5krb5-devellibidnlibidn-developensslopenssl-developenldapopenldap-developenldap-clientsopenldap-serversmakelibtool*gittreebisonpcre-develperlgdgd-devel@H_404_19@ 
  8. 安装libiconv支持编码转换为函数

  9. tarxflibiconv-1.14.tar.gz
  10. cdlibiconv-1.14/
  11. ./configure--prefix=/usr/local
  12. make&&makeinstall@H_404_19@ 
  13. 安装libmcrypt (加密算法扩展库,支持DES,3DES,RIJNDAEL,Twofish,IDEA,GOST,CAST-256,ARCFOUR,SERPENT,SAFER+等算法)

  14. tarxflibmcrypt-2.5.8.tar.gz
  15. cdlibmcrypt-2.5.8
  16. ./configure
  17. make&&makeinstall
  18. cdlibltdl/
  19. ./configure--enable-ltdl-install#加载动态库
  20. make&&makeinstall@H_404_19@ 
  21. 安装mhashMhash是基于离散数学原理的不可逆向的PHP加密方式扩展库,其在默认情况下不开启。 mhash的可以用于创建校验数值,消息摘要,消息认证码,以及无需原文的关键信息保存)

  22. tarxfmhash-0.9.9.9.tar.bz2
  23. cdmhash-0.9.9.9
  24. ./configure
  25. make&&makeinstall@H_404_19@ 
  26. 安装mcriptmcrypt PHP 里面重要的加密支持扩展库,Mcrypt扩展库可以实现加密解密功能,就是既能将明文加密,也可以密文还原。)

  27. cd/usr/local/src
  28. tarzxvfmcrypt-2.6.8.tar.gz
  29. cdmcrypt-2.6.8/
  30. exportLD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH#暂时生效
  31. ./configure
  32. make&&makeinstall@H_404_19@ 
  33. 亦可以通过以下两种方法增加文件

  34. ln-s/usr/local/lib/libmcrypt.la/usr/lib/libmcrypt.la
  35. ln-s/usr/local/lib/libmcrypt.so/usr/lib/libmcrypt.so
  36. ln-s/usr/local/lib/libmcrypt.so.4/usr/lib/libmcrypt.so.4
  37. ln-s/usr/local/lib/libmcrypt.so.4.4.8/usr/lib/libmcrypt.so.4.4.8
  38. ln-s/usr/local/lib/libmhash.a/usr/lib/libmhash.a
  39. ln-s/usr/local/lib/libmhash.la/usr/lib/libmhash.la
  40. ln-s/usr/local/lib/libmhash.so/usr/lib/libmhash.so
  41. ln-s/usr/local/lib/libmhash.so.2/usr/lib/libmhash.so.2
  42. ln-s/usr/local/lib/libmhash.so.2.0.1/usr/lib/libmhash.so.2.0.1
  43. ln-s/usr/local/bin/libmcrypt-config/usr/bin/libmcrypt-config@H_404_19@ 
  44. vim/etc/ld.so.conf
  45. /usr/local/lib/
  46. ldconfig@H_404_19@ 
  47. 安装cmake MysqL5.5版本开始,通过./configure进行编译配置方式已经被取消,取而代之的是cmake工具)

  48. tarxfcmake-3.4.1.tar.gz
  49. cdcmake-3.4.1
  50. ./bootstrap
  51. make&&makeinstall@H_404_19@ 
  52. 注:一起解压所有文件可采用:find /usr/local/src/*.tar.gz -exec tar xf {} \;

  53. 三、MysqL编译安装

  54. 新增MysqL用户

  55. groupadd-rMysqL
  56. useradd-r-gMysqLMysqL@H_404_19@ 
  57. 新建MysqL所需目录

  58. mkdir-p/usr/local/MysqL
  59. mkdir-p/data/MysqLdb@H_404_19@ 
  60. 编译安装

  61. tarxfMysqL-5.6.23.tar.gz
  62. cdMysqL-5.6.23
  63. cmake-DCMAKE_INSTALL_PREFIX=/usr/local/MysqL-DDEFAULT_CHARSET=utf8-DDEFAULT_COLLATION=utf8_general_ci-DWITH_INNOBASE_STORAGE_ENGINE=1-DWITH_ARCHIVE_STORAGE_ENGINE=1-DWITH_BLACKHOLE_STORAGE_ENGINE=1-DMysqL_DATADIR=/data/MysqLdb-DMysqL_TCP_PORT=3306-DENABLE_DOWNLOADS=1-DSYSCONFDIR=/etc-DWITH_SSL=system-DWITH_ZLIB=system-DWITH_LIBWRAP=0
  64. make&&makeinstall@H_404_19@ 
  65. 修改MysqL目录权限

  66. cd/usr/local/MysqL
  67. chown-RMysqL:MysqL.
  68. cd/data/MysqLdb
  69. chown-RMysqL:MysqL.@H_404_19@ 
  70. 初始化MysqL数据库

  71. cd/usr/local/MysqL
  72. ./scripts/MysqL_install_db--user=MysqL--datadir=/data/MysqLdb@H_404_19@ 
  73. 编译修改/etc/my.cnf

  74. [MysqL]
  75. #CLIENT#
  76. port=3306
  77. socket=/data/MysqLdb/MysqL.sock
  78. [MysqLd]
  79. #GENERAL#
  80. user=MysqL
  81. default-storage-engine=InnoDB
  82. socket=/data/MysqLdb/MysqL.sock
  83. pid-file=/data/MysqLdb/MysqL.pid
  84. #MyISAM#
  85. key-buffer-size=32M
  86. myisam-recover=FORCE,BACKUP
  87. #SAFETY#
  88. max-allowed-packet=16M
  89. max-connect-errors=1000000
  90. #DATASTORAGE#
  91. datadir=/data/MysqLdb/
  92. #BINARYLOGGING#
  93. log-bin=/data/MysqLdb/MysqL-bin
  94. expire-logs-days=14
  95. sync-binlog=1
  96. #REPLICATION#
  97. skip-slave-start=1
  98. relay-log=/data/MysqLdb/relay-bin
  99. slave-net-timeout=60
  100. #CACHESANDLIMITS#
  101. tmp-table-size=32M
  102. max-heap-table-size=32M
  103. query-cache-type=0
  104. query-cache-size=0
  105. max-connections=500
  106. thread-cache-size=50
  107. open-files-limit=65535
  108. table-definition-cache=4096
  109. table-open-cache=4096
  110. #INNODB#
  111. innodb-flush-method=O_DIRECT
  112. innodb-log-files-in-group=2
  113. innodb-log-file-size=64M
  114. innodb-flush-log-at-trx-commit=1
  115. innodb-file-per-table=1
  116. innodb-buffer-pool-size=592M
  117. #LOGGING#
  118. log-error=/data/MysqLdb/MysqL-error.log
  119. log-queries-not-using-indexes=1
  120. slow-query-log=1
  121. slow-query-log-file=/data/MysqLdb/MysqL-slow.log@H_404_19@ 
  122. 复制MysqL启动文件及其命令加入PATH

  123. cpsupport-files/MysqL.server/etc/init.d/MysqLd
  124. vim/etc/profile.d/MysqL.sh
  125. PATH=/usr/local/MysqL/bin:/usr/local/MysqL/lib:$PATH
  126. exportPATH
  127. source/etc/profile.d/MysqL.sh@H_404_19@ 
  128. 启动MysqL增加启动项

  129. serviceMysqLdstart
  130. chkconfigMysqLdon@H_404_19@ 
  131. 设置MysqL登录权限

  132. dropuser''@localhost;
  133. dropuser''@hostname;
  134. updateMysqL.usersetpassword=password('*******');
  135. flushprivileges;@H_404_19@ 
  136. 四、Nginx编译安装

  137. 新增Nginx用户

  138. groupadd-rNginx
  139. useradd-gNginx-rNginx@H_404_19@ 
  140. 创建所需要目录

  141. mkdir-pv/var/tmp/Nginx/client@H_404_19@ 
  142. 编译安装Nginx

  143. tarxfNginx-1.9.14.tar.gz
  144. cdNginx-1.9.14
  145. ./configure--prefix=/usr/local/Nginx--sbin-path=/usr/local/Nginx/sbin/Nginx--conf-path=/etc/Nginx/Nginx.conf--error-log-path=/var/log/Nginx/error.log--http-log-path=/var/log/Nginx/access.log--pid-path=/var/run/Nginx/Nginx.pid--lock-path=/var/lock/Nginx.lock--user=Nginx--group=Nginx--with-http_ssl_module--with-http_flv_module--with-http_stub_status_module--with-http_gzip_static_module--http-client-body-temp-path=/var/tmp/Nginx/client/--http-proxy-temp-path=/var/tmp/Nginx/proxy/--http-fastcgi-temp-path=/var/tmp/Nginx/fcgi/--http-uwsgi-temp-path=/var/tmp/Nginx/uwsgi--http-scgi-temp-path=/var/tmp/Nginx/scgi--with-pcre
  146. make&&makeinstall@H_404_19@ 
  147. 编辑启动脚本

  148. vim/etc/rc.d/init.d/Nginx
  149. #!/bin/sh
  150. #
  151. #Nginx-thisscriptstartsandstopstheNginxdaemon
  152. #
  153. #chkconfig:-8515
  154. #description:NginxisanHTTP(S)server,HTTP(S)reverse\
  155. #proxyandIMAP/POP3proxyserver
  156. #processname:Nginx
  157. #config:/etc/Nginx/Nginx.conf
  158. #config:/etc/sysconfig/Nginx
  159. #pidfile:/var/run/Nginx.pid
  160. #Sourcefunctionlibrary.
  161. ./etc/rc.d/init.d/functions
  162. #Sourcenetworkingconfiguration.
  163. ./etc/sysconfig/network
  164. #Checkthatnetworkingisup.
  165. ["$NETWORKING"="no"]&&exit0
  166. Nginx="/usr/local/Nginx/sbin/Nginx"
  167. prog=$(basename$Nginx)
  168. Nginx_CONF_FILE="/etc/Nginx/Nginx.conf"
  169. [-f/etc/sysconfig/Nginx]&&./etc/sysconfig/Nginx
  170. lockfile=/var/lock/subsys/Nginx
  171. make_dirs(){
  172. #makerequireddirectories
  173. user=`Nginx-V2>&1|grep"configurearguments:"|sed's/[^*]*--user=\([^]*\).*/\1/g'-`
  174. options=`$Nginx-V2>&1|grep'configurearguments:'`
  175. foroptin$options;do
  176. if[`echo$opt|grep'.*-temp-path'`];then
  177. value=`echo$opt|cut-d"="-f2`
  178. if[!-d"$value"];then
  179. #echo"creating"$value
  180. mkdir-p$value&&chown-R$user$value
  181. fi
  182. fi
  183. done
  184. }
  185. start(){
  186. [-x$Nginx]||exit5
  187. [-f$Nginx_CONF_FILE]||exit6
  188. make_dirs
  189. echo-n$"Starting$prog:"
  190. daemon$Nginx-c$Nginx_CONF_FILE
  191. retval=$?
  192. echo
  193. [$retval-eq0]&&touch$lockfile
  194. return$retval
  195. }
  196. stop(){
  197. echo-n$"Stopping$prog:"
  198. killproc$prog-QUIT
  199. retval=$?
  200. echo
  201. [$retval-eq0]&&rm-f$lockfile
  202. return$retval
  203. }
  204. restart(){
  205. configtest||return$?
  206. stop
  207. sleep1
  208. start
  209. }
  210. reload(){
  211. configtest||return$?
  212. echo-n$"Reloading$prog:"
  213. killproc$Nginx-HUP
  214. RETVAL=$?
  215. echo
  216. }
  217. force_reload(){
  218. restart
  219. }
  220. configtest(){
  221. $Nginx-t-c$Nginx_CONF_FILE
  222. }
  223. rh_status(){
  224. status$prog
  225. }
  226. rh_status_q(){
  227. rh_status>/dev/null2>&1
  228. }
  229. case"$1"in
  230. start)
  231. rh_status_q&&exit0
  232. $1
  233. ;;
  234. stop)
  235. rh_status_q||exit0
  236. $1
  237. ;;
  238. restart|configtest)
  239. $1
  240. ;;
  241. reload)
  242. rh_status_q||exit7
  243. $1
  244. ;;
  245. force-reload)
  246. force_reload
  247. ;;
  248. status)
  249. rh_status
  250. ;;
  251. condrestart|try-restart)
  252. rh_status_q||exit0
  253. ;;
  254. *)
  255. echo$"Usage:$0{start|stop|status|restart|condrestart|try-restart|reload|force-reload|configtest}"
  256. exit2
  257. esac@H_404_19@ 
  258. 设置开机启动并启动服务

  259. chmod+x/etc/rc.d/init.d/Nginx
  260. chkconfig--addNginx
  261. chkconfigNginxon
  262. serviceNginxstart@H_404_19@ 
  263. 五、PHP编译安装

  264. 解决PHP安装的库依赖关系

  265. cp-frp/usr/lib64/libldap*/usr/lib/
  266. echo/usr/local/MysqL/lib>>/etc/ld.so.conf.d/MysqL-x86_64.conf
  267. ldconfig-v@H_404_19@ 
  268. 编译安装PHP

  269. tarxfPHP-5.6.17.tar.gz
  270. cdPHP-5.6.17
  271. ./configure--prefix=/usr/local/PHP--with-MysqL=/usr/local/MysqL--with-MysqLi=/usr/local/MysqL/bin/MysqL_config--with-iconv-dir=/usr/local--with-openssl--enable-mbstring--with-freetype-dir--with-jpeg-dir--with-png-dir--with-zlib--with-libxml-dir=/usr--enable-xml--disable-rpath--enable-bcmath--enable-shmop--enable-sysvsem--enable-inline-optimization--enable-mbregex--enable-mbstring--with-gd--enable-gd-native-ttf--with-mhash--enable-pcntl--enable-sockets--with-mcrypt--with-ldap--with-ldap-sasl--with-xmlrpc--enable-zip--enable-soap--with-bz2--with-config-file-path=/etc--enable-fpm--with-config-file-scan-dir=/etc/PHP.d--enable-maintainer-zts
  272. makeZEND_EXTRA_LIBS='-liconv'
  273. makeinstall@H_404_19@ 
  274. 复制PHP配置文件

  275. cpPHP.ini-production/etc/PHP.ini@H_404_19@ 
  276. 复制PHP-fpm配置文件

  277. cp/usr/local/PHP/etc/PHP-fpm.conf.default/usr/local/PHP/etc/PHP-fpm.conf@H_404_19@ 
  278. 设置PHP-fpm启动脚本并开机启动

  279. cpsapi/fpm/init.d.PHP-fpm/etc/rc.d/init.d/PHP-fpm
  280. chmod+x/etc/rc.d/init.d/PHP-fpm
  281. chkconfig--addPHP-fpm
  282. chkconfigPHP-fpmon
  283. servicePHP-fpmstart@H_404_19@ 
  284. 六、web功能基本实现

  285. Nginx,PHP功能整合

  286. vim/etc/Nginx/Nginx.conf
  287. #location~\.PHP${
  288. #roothtml;
  289. #fastcgi_pass127.0.0.1:9000;
  290. #fastcgi_indexindex.PHP;
  291. #fastcgi_paramSCRIPT_FILENAME/scripts$fastcgi_script_name;
  292. #includefastcgi_params;
  293. #}
  294. #修改
  295. location~\.PHP${
  296. fastcgi_pass127.0.0.1:9000;
  297. fastcgi_indexindex.PHP;
  298. fastcgi_paramSCRIPT_FILENAME$document_root$fastcgi_script_name;
  299. includefastcgi_params;
  300. }@H_404_19@ 
  301. 增加LNMP测试页面

  302. vim/usr/local/Nginx/html/test.PHP
  303. <?PHP
  304. $link=MysqL_connect('127.0.0.1','root','you_passwd');
  305. if($link)
  306. echo"It'sOK,Frank";
  307. else
  308. echo"Failed,Frank";
  309. MysqL_close;
  310. PHPinfo();
  311. ?>@H_404_19@ 
  312. Nginx重载

  313. serviceNginxreload@H_404_19@ 
  314. 访问http://ip/test.php,LNMP测试成功。

  315. wKioL1dx2wWSYR_hAACjZ2PngIk856.png-wh_50

  316. 七、后记

  317. 从去年底开始,LAMP,LNMP断断续续搭建过多次,搭建时磕磕碰碰,完成后就会忘记,估计是基础不牢的原因。虽然本次搭建中间也有些许不顺,但决定写博文之后,还是有点小压力,前前后后验证了两遍,还是可以保证可行性的。本次NginxPHP的配置优化及插件均未涉及,后续博文中将陆续补上。

猜你在找的CentOS相关文章