{"id":43704,"date":"2024-10-06T04:11:46","date_gmt":"2024-10-05T20:11:46","guid":{"rendered":"https:\/\/server.hk\/cnblog\/43704\/"},"modified":"2024-10-06T04:11:47","modified_gmt":"2024-10-05T20:11:47","slug":"centos-7-2-%e7%b7%a8%e8%ad%af%e5%ae%89%e8%a3%9d-lnmp","status":"publish","type":"post","link":"https:\/\/server.hk\/cnblog\/43704\/","title":{"rendered":"CentOS 7.2 \u7de8\u8b6f\u5b89\u88dd LNMP"},"content":{"rendered":"<h1 id=\"centos-7-2-%e7%b7%a8%e8%ad%af%e5%ae%89%e8%a3%9d-lnmp-hXPUYYLtis\">CentOS 7.2 \u7de8\u8b6f\u5b89\u88dd LNMP<\/h1>\n<p>\u5728\u7576\u4eca\u7684\u7db2\u7d61\u74b0\u5883\u4e2d\uff0cLNMP\uff08Linux, Nginx, MySQL, PHP\uff09\u67b6\u69cb\u56e0\u5176\u9ad8\u6548\u80fd\u548c\u9748\u6d3b\u6027\u800c\u53d7\u5230\u5ee3\u6cdb\u4f7f\u7528\u3002\u672c\u6587\u5c07\u4ecb\u7d39\u5982\u4f55\u5728 CentOS 7.2 \u4e0a\u7de8\u8b6f\u5b89\u88dd LNMP\uff0c\u5e6b\u52a9\u7528\u6236\u5efa\u7acb\u4e00\u500b\u7a69\u5b9a\u7684\u7db2\u9801\u4f3a\u670d\u5668\u3002<\/p>\n<h2 id=\"%e5%89%8d%e6%9c%9f%e6%ba%96%e5%82%99-hXPUYYLtis\">\u524d\u671f\u6e96\u5099<\/h2>\n<p>\u5728\u958b\u59cb\u4e4b\u524d\uff0c\u78ba\u4fdd\u4f60\u7684 CentOS 7.2 \u7cfb\u7d71\u5df2\u7d93\u66f4\u65b0\u5230\u6700\u65b0\u7248\u672c\u3002\u53ef\u4ee5\u4f7f\u7528\u4ee5\u4e0b\u547d\u4ee4\u9032\u884c\u66f4\u65b0\uff1a<\/p>\n<pre><code>sudo yum update -y<\/code><\/pre>\n<p>\u63a5\u4e0b\u4f86\uff0c\u5b89\u88dd\u4e00\u4e9b\u5fc5\u8981\u7684\u5de5\u5177\u548c\u5eab\uff1a<\/p>\n<pre><code>sudo yum install -y gcc gcc-c++ make autoconf automake libtool<\/code><\/pre>\n<h2 id=\"%e5%ae%89%e8%a3%9d-nginx-hXPUYYLtis\">\u5b89\u88dd Nginx<\/h2>\n<p>\u9996\u5148\uff0c\u6211\u5011\u9700\u8981\u4e0b\u8f09 Nginx \u7684\u6e90\u78bc\u3002\u53ef\u4ee5\u5f9e\u5b98\u65b9\u7db2\u7ad9\u7372\u53d6\u6700\u65b0\u7248\u672c\u7684 Nginx\uff1a<\/p>\n<pre><code>wget http:\/\/nginx.org\/download\/nginx-1.20.1.tar.gz<\/code><\/pre>\n<p>\u89e3\u58d3\u4e0b\u8f09\u7684\u6587\u4ef6\uff1a<\/p>\n<pre><code>tar -zxvf nginx-1.20.1.tar.gz<\/code><\/pre>\n<p>\u9032\u5165\u89e3\u58d3\u5f8c\u7684\u76ee\u9304\uff1a<\/p>\n<pre><code>cd nginx-1.20.1<\/code><\/pre>\n<p>\u7136\u5f8c\uff0c\u4f7f\u7528\u4ee5\u4e0b\u547d\u4ee4\u7de8\u8b6f\u548c\u5b89\u88dd Nginx\uff1a<\/p>\n<pre><code>.\/configure --prefix=\/usr\/local\/nginx\nmake\nsudo make install<\/code><\/pre>\n<p>\u5b89\u88dd\u5b8c\u6210\u5f8c\uff0c\u53ef\u4ee5\u555f\u52d5 Nginx\uff1a<\/p>\n<pre><code>\/usr\/local\/nginx\/sbin\/nginx<\/code><\/pre>\n<h2 id=\"%e5%ae%89%e8%a3%9d-mysql-hXPUYYLtis\">\u5b89\u88dd MySQL<\/h2>\n<p>\u63a5\u4e0b\u4f86\uff0c\u6211\u5011\u9700\u8981\u5b89\u88dd MySQL\u3002\u9996\u5148\uff0c\u4e0b\u8f09 MySQL \u7684\u6e90\u78bc\uff1a<\/p>\n<pre><code>wget https:\/\/dev.mysql.com\/get\/Downloads\/MySQL-5.7\/mysql-5.7.34.tar.gz<\/code><\/pre>\n<p>\u89e3\u58d3\u4e26\u9032\u5165\u76ee\u9304\uff1a<\/p>\n<pre><code>tar -zxvf mysql-5.7.34.tar.gz\ncd mysql-5.7.34<\/code><\/pre>\n<p>\u7136\u5f8c\uff0c\u5275\u5efa\u4e00\u500b\u7528\u65bc\u7de8\u8b6f\u7684\u76ee\u9304\uff1a<\/p>\n<pre><code>mkdir build\ncd build<\/code><\/pre>\n<p>\u4f7f\u7528 CMake \u9032\u884c\u7de8\u8b6f\uff1a<\/p>\n<pre><code>cmake .. -DDOWNLOAD_BOOST=1 -DWITH_BOOST=.\/boost<\/code><\/pre>\n<p>\u7de8\u8b6f\u4e26\u5b89\u88dd MySQL\uff1a<\/p>\n<pre><code>make\nsudo make install<\/code><\/pre>\n<p>\u5b89\u88dd\u5b8c\u6210\u5f8c\uff0c\u521d\u59cb\u5316 MySQL \u6578\u64da\u5eab\uff1a<\/p>\n<pre><code>sudo \/usr\/local\/mysql\/bin\/mysqld --initialize --user=mysql<\/code><\/pre>\n<p>\u555f\u52d5 MySQL \u670d\u52d9\uff1a<\/p>\n<pre><code>sudo \/usr\/local\/mysql\/bin\/mysqld_safe --user=mysql &amp;<\/code><\/pre>\n<h2 id=\"%e5%ae%89%e8%a3%9d-php-hXPUYYLtis\">\u5b89\u88dd PHP<\/h2>\n<p>\u6700\u5f8c\uff0c\u6211\u5011\u9700\u8981\u5b89\u88dd PHP\u3002\u9996\u5148\uff0c\u4e0b\u8f09 PHP \u7684\u6e90\u78bc\uff1a<\/p>\n<pre><code>wget https:\/\/www.php.net\/distributions\/php-7.4.16.tar.gz<\/code><\/pre>\n<p>\u89e3\u58d3\u4e26\u9032\u5165\u76ee\u9304\uff1a<\/p>\n<pre><code>tar -zxvf php-7.4.16.tar.gz\ncd php-7.4.16<\/code><\/pre>\n<p>\u4f7f\u7528\u4ee5\u4e0b\u547d\u4ee4\u7de8\u8b6f PHP\uff0c\u4e26\u78ba\u4fdd\u8207 Nginx \u548c MySQL \u517c\u5bb9\uff1a<\/p>\n<pre><code>.\/configure --with-mysqli --with-pdo-mysql --with-nginx --prefix=\/usr\/local\/php\nmake\nsudo make install<\/code><\/pre>\n<p>\u5b89\u88dd\u5b8c\u6210\u5f8c\uff0c\u914d\u7f6e PHP \u7684\u74b0\u5883\u8b8a\u91cf\uff1a<\/p>\n<pre><code>echo 'export PATH=$PATH:\/usr\/local\/php\/bin' &gt;&gt; ~\/.bash_profile\nsource ~\/.bash_profile<\/code><\/pre>\n<h2 id=\"%e9%85%8d%e7%bd%ae-nginx-%e8%88%87-php-hXPUYYLtis\">\u914d\u7f6e Nginx \u8207 PHP<\/h2>\n<p>\u6700\u5f8c\uff0c\u70ba\u4e86\u8b93 Nginx \u652f\u6301 PHP\uff0c\u6211\u5011\u9700\u8981\u4fee\u6539 Nginx \u7684\u914d\u7f6e\u6587\u4ef6\u3002\u6253\u958b Nginx \u7684\u914d\u7f6e\u6587\u4ef6\uff1a<\/p>\n<pre><code>sudo vi \/usr\/local\/nginx\/conf\/nginx.conf<\/code><\/pre>\n<p>\u5728 server \u5340\u584a\u4e2d\uff0c\u6dfb\u52a0\u4ee5\u4e0b\u5167\u5bb9\uff1a<\/p>\n<pre><code>location ~ .php$ {\n    include fastcgi_params;\n    fastcgi_pass 127.0.0.1:9000;\n    fastcgi_index index.php;\n    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;\n}<\/code><\/pre>\n<p>\u4fdd\u5b58\u4e26\u9000\u51fa\u5f8c\uff0c\u91cd\u555f Nginx\uff1a<\/p>\n<pre><code>sudo \/usr\/local\/nginx\/sbin\/nginx -s reload<\/code><\/pre>\n<h2 id=\"%e7%b8%bd%e7%b5%90-hXPUYYLtis\">\u7e3d\u7d50<\/h2>\n<p>\u901a\u904e\u4ee5\u4e0a\u6b65\u9a5f\uff0c\u6211\u5011\u6210\u529f\u5728 CentOS 7.2 \u4e0a\u7de8\u8b6f\u5b89\u88dd\u4e86 LNMP \u74b0\u5883\u3002\u9019\u4e00\u67b6\u69cb\u4e0d\u50c5\u80fd\u5920\u63d0\u4f9b\u9ad8\u6548\u7684\u7db2\u9801\u670d\u52d9\uff0c\u9084\u80fd\u5920\u9748\u6d3b\u5730\u652f\u6301\u5404\u7a2e\u61c9\u7528\u7a0b\u5e8f\u3002\u5982\u679c\u4f60\u9700\u8981\u7a69\u5b9a\u7684 <a href=\"https:\/\/server.hk\">\u9999\u6e2fVPS<\/a> \u4f86\u904b\u884c\u4f60\u7684 LNMP \u74b0\u5883\uff0cServer.HK \u63d0\u4f9b\u591a\u7a2e\u9078\u64c7\uff0c\u6eff\u8db3\u4e0d\u540c\u7528\u6236\u7684\u9700\u6c42\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Learn how to compile and install LNMP on CentOS 7.2 for a powerful web server setup, enhancing performance and flexibility for your applications.<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[4924],"tags":[],"class_list":["post-43704","post","type-post","status-publish","format-standard","hentry","category-setup-tutorials"],"_links":{"self":[{"href":"https:\/\/server.hk\/cnblog\/wp-json\/wp\/v2\/posts\/43704","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/server.hk\/cnblog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/server.hk\/cnblog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/server.hk\/cnblog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/server.hk\/cnblog\/wp-json\/wp\/v2\/comments?post=43704"}],"version-history":[{"count":1,"href":"https:\/\/server.hk\/cnblog\/wp-json\/wp\/v2\/posts\/43704\/revisions"}],"predecessor-version":[{"id":43705,"href":"https:\/\/server.hk\/cnblog\/wp-json\/wp\/v2\/posts\/43704\/revisions\/43705"}],"wp:attachment":[{"href":"https:\/\/server.hk\/cnblog\/wp-json\/wp\/v2\/media?parent=43704"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/server.hk\/cnblog\/wp-json\/wp\/v2\/categories?post=43704"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/server.hk\/cnblog\/wp-json\/wp\/v2\/tags?post=43704"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}