详解PHP安装及lnmp完整搭建-wordpress
安装所需的lib库 [root@lnmp01 tools]# rpm -qa zlib-devel libxml2-devel libjpeg-devel libjpeg-turbo-devel libiconv-devel zlib-devel-1.2.3-29.el6.x86_64 [root@lnmp01 tools]# rpm -qa freetype-devel libpng-devel gd-devel libcurl-devel libxslt-devel [root@lnmp01 tools]# yum install zlib-devel libxml2-devel libjpeg-devel libjpeg-turbo-devel libiconv-devel -y [root@lnmp01 tools]# yum install freetype-devel libpng-devel gd-devel libcurl-devel libxslt-devel -y 安装libiconv(无法安装) [root@lnmp01 tools]# rz rz waiting to receive. ???a? zmodem ′???£ °′ Ctrl+C ???£ ??′?? libiconv-1.14.tar.gz... 100% 4867 KB 4867 KB/s 00:00:01 0 ′? ?[root@lnmp01 tools]# tar zxf libiconv-1.14.tar.gz [root@lnmp01 tools]# cd libiconv-1.14 [root@lnmp01 libiconv-1.14]# ./configure --prefix=/usr/local/libiconv [root@lnmp01 libiconv-1.14]# make [root@lnmp01 libiconv-1.14]# make install [root@lnmp01 libiconv-1.14]# cd ../ 安装三方yum源相关库 [root@lnmp01 tools]# wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-6.repo [root@lnmp01 tools]# yum -y install libmcrypt-devel [root@lnmp01 tools]# yum -y install mahash [root@lnmp01 tools]# yum -y install mcrypt 安装php编译php [root@lnmp01 tools]# cd /home/lufeng/tools [root@lnmp01 tools]# rz -y [root@lnmp01 tools]# tar zxf ............ [root@lnmp01 tools]# cd php-5.3.27 [root@lnmp01 tools]# ./configure \ --prefix=/application/php5.3.27 \ --with-mysql=mysqlnd \ --with-iconv-dir=/usr/local/libiconv \ --with-freetype-dir \ --with-jpeg-dir \ --with-png-dir \ --with-zlib \ --with-libxml-dir=/usr \ --enable-xml \ --disable-rpath \ --enable-safe-mode \ --enable-bcmath \ --enable-shmop \ --enable-sysvsem \ --enable-inline-optimization \ --with-curl \ --with-curlwrappers \ --enable-mbregex \ --enable-fpm \ --enable-mbstring \ --with-mcrypt \ --with-gd \ --enable-gd-native-ttf \ --with-openssl \ --with-mhash \ --enable-pcntl \ --enable-sockets \ --with-xmlrpc \ --enable-zip \ --enable-soap \ --enable-short-tags \ --enable-zend-multibyte \ --enable-static \ --with-xsl \ --with-fpm-user=nginx \ --with-fpm-group=nginx \ --enable-ftp +--------------------------------------------------------------------+ | License: | | This software is subject to the PHP License, available in this | | distribution in the file LICENSE. By continuing this installation | | process, you are bound by the terms of this license agreement. | | If you do not agree with the terms of this license, you must abort | | the installation process at this point. | +--------------------------------------------------------------------+ Thank you for using PHP. [root@lnmp01 php-5.3.27]# touch ext/phar/phar.phar [root@lnmp01 php-5.3.27]# make Build complete. Don't forget to run 'make test'. [root@lnmp01 php-5.3.27]# make install /home/lufeng/tools/php-5.3.27/build/shtool install -c ext/phar/phar.phar /application/php5.3.27/bin ln -s -f /application/php5.3.27/bin/phar.phar /application/php5.3.27/bin/phar Installing PDO headers: /application/php5.3.27/include/php/ext/pdo/ 配置php及启动 [root@lnmp01 php-5.3.27]# ln -s /application/php5.3.27 /application/php [root@lnmp01 php-5.3.27]# ls -l /application/php [root@lnmp01 php-5.3.27]# ls php.ini* php.ini-development php.ini-production [root@lnmp01 php-5.3.27]# cp php.ini-production /application/php/lib/php.ini [root@lnmp01 php-5.3.27]# cd /application/php/etc/ [root@lnmp01 etc]# cp php-fpm.conf.default php-fpm.conf [root@lnmp01 etc]# /application/php/sbin/php-fpm [root@lnmp01 etc]# ps -ef|grep php-fpm root 7337 1 0 15:03 ? 00:00:00 php-fpm: master process (/application/php5.3.27/etc/php-fpm.conf) nginx 7338 7337 0 15:03 ? 00:00:00 php-fpm: pool www nginx 7339 7337 0 15:03 ? 00:00:00 php-fpm: pool www root 7341 6079 0 15:03 pts/0 00:00:00 grep php-fpm 配置nginx支持PHP请求访问 [root@lnmp01 blog]# cd /application/nginx/conf/extra/ [root@lnmp01 extra]# cat blog.conf server { listen 80; server_name blog.lufeng.com; location / { root html/blog; index index.html index.html; } location ~ .*\.(php|php5)?$ { root html/blog; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; include fastcgi.conf; } } [root@lnmp01 conf]# ../sbin/nginx -t nginx: the configuration file /application/nginx-1.6.3/conf/nginx.conf syntax is ok nginx: configuration file /application/nginx-1.6.3/conf/nginx.conf test is successful [root@lnmp01 conf]# ../sbin/nginx -s reload [root@lnmp01 conf]# cd ../html/blog/ [root@lnmp01 blog]# echo "<?php phpinfo(); ?>" >test_info.php [root@lnmp01 blog]# cat test_info.php <?php phpinfo(); ?> 部署blog程序-mysql [root@Mysql-server ~]# mysql -uroot -p Enter password: mysql> create database wordpress; mysql> show databases like 'wordpress'; mysql> grant all on wordpress.* to wordpress@'192.1.1.%' identified by '199429'; mysql> show grants for wordpress@'192.1.1.%'; mysql> select user,host from mysql.user; mysql> quit nginx与PHP环境配置准备 [root@lnmp01 extra]# cd ../../html/blog/ [root@lnmp01 blog]# rz [root@lnmp01 blog]# tar xf wordpress-4.7.2-zh_CN.tar.gz [root@lnmp01 blog]# ls test_info.php wordpress wordpress-4.7.2-zh_CN.tar.gz [root@lnmp01 blog]# rm test_info.php [root@lnmp01 blog]# mv wordpress/* . [root@lnmp01 blog]# /bin/mv wordpress-4.7.2-zh_CN.tar.gz /home/lufeng/tools/ [root@lnmp01 blog]# chown -R nginx.nginx ../blog/ [root@lnmp01 blog]# ls -l
以上是详解PHP安装及lnmp完整搭建-wordpress的详细内容。更多信息请关注PHP中文网其他相关文章!

aphpdepentioncontiveContainerIsatoolThatManagesClassDeptions,增强codemodocultion,可验证性和Maintainability.itactsasaceCentralHubForeatingingIndections,因此reducingTightCightTightCoupOulplingIndeSingantInting。

选择DependencyInjection(DI)用于大型应用,ServiceLocator适合小型项目或原型。1)DI通过构造函数注入依赖,提高代码的测试性和模块化。2)ServiceLocator通过中心注册获取服务,方便但可能导致代码耦合度增加。

phpapplicationscanbeoptimizedForsPeedAndeffificeby:1)启用cacheInphp.ini,2)使用preparedStatatementSwithPdoforDatabasequesies,3)3)替换loopswitharray_filtaray_filteraray_maparray_mapfordataprocrocessing,4)conformentnginxasaseproxy,5)

phpemailvalidation invoLvesthreesteps:1)格式化进行regulareXpressecthemailFormat; 2)dnsvalidationtoshethedomainhasavalidmxrecord; 3)

tomakephpapplicationsfaster,关注台词:1)useopcodeCachingLikeLikeLikeLikeLikePachetoStorePreciledScompiledScriptbyTecode.2)MinimimiedAtabaseSqueriSegrieSqueriSegeriSybysequeryCachingandeffeftExting.3)Leveragephp7 leveragephp7 leveragephp7 leveragephpphp7功能forbettercodeefficy.4)

到ImprovephPapplicationspeed,关注台词:1)启用opcodeCachingwithapCutoredUcescriptexecutiontime.2)实现databasequerycachingusingpdotominiminimizedatabasehits.3)usehttp/2tomultiplexrequlexrequestsandredececonnection.4 limitsclection.4.4

依赖注入(DI)通过显式传递依赖关系,显着提升了PHP代码的可测试性。 1)DI解耦类与具体实现,使测试和维护更灵活。 2)三种类型中,构造函数注入明确表达依赖,保持状态一致。 3)使用DI容器管理复杂依赖,提升代码质量和开发效率。

databasequeryOptimizationinphpinvolVolVOLVESEVERSEVERSTRATEMIESOENHANCEPERANCE.1)SELECTONLYNLYNESSERSAYCOLUMNSTORMONTOUMTOUNSOUDSATATATATATATATATATATRANSFER.3)


热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

Video Face Swap
使用我们完全免费的人工智能换脸工具轻松在任何视频中换脸!

热门文章

热工具

WebStorm Mac版
好用的JavaScript开发工具

EditPlus 中文破解版
体积小,语法高亮,不支持代码提示功能

SecLists
SecLists是最终安全测试人员的伙伴。它是一个包含各种类型列表的集合,这些列表在安全评估过程中经常使用,都在一个地方。SecLists通过方便地提供安全测试人员可能需要的所有列表,帮助提高安全测试的效率和生产力。列表类型包括用户名、密码、URL、模糊测试有效载荷、敏感数据模式、Web shell等等。测试人员只需将此存储库拉到新的测试机上,他就可以访问到所需的每种类型的列表。

SublimeText3 Mac版
神级代码编辑软件(SublimeText3)

Atom编辑器mac版下载
最流行的的开源编辑器