<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
實驗環境:
[root@lnmp ~]# uname -r 2.6.32-754.el6.x86_64 [root@lnmp ~]# cat /etc/redhat-release CentOS release 6.10 (Final) [root@lnmp ~]# cat /etc/hosts 192.168.1.30 lnmp 172.16.1.30 lnmp
軟體版本:
NGINX:nginx-1.12.2.tar.gz MYSQL:mysql-5.6.47-linux-glibc2.12-x86_64.tar.gz PHP:php-5.5.3.tar.gz libiconv:libiconv-1.16.tar.gz wordpress:wordpress-4.7.3-zh_CN.tar.gz
Nginx服務部署過程:
下載二進位制MySQL包:
[root@lnmp tools]# wget -q https://mirrors.tuna.tsinghua.edu.cn/mysql/downloads/MySQL-5.6/mysql-5.6.47-linux-glibc2.12-x86_64.tar.gz
解壓MySQL包:
[root@lnmp tools]# tar xf mysql-5.6.47-linux-glibc2.12-x86_64.tar.gz -C /app/
建立MySQL使用者及授權:
[root@lnmp tools]# cd /app/ [root@lnmp app]# ln -s mysql-5.6.47-linux-glibc2.12-x86_64/ /app/mysql [root@lnmp tools]# useradd mysql -s /sbin/nologin -M [root@lnmp mysql]# chown mysql.mysql /app/mysql/data/
初始化MySQL:
第一遍初始化報錯,然後我把data目錄下東西幹掉後就好了。什麼原理?
[root@lnmp mysql]# bin/mysqld --user=mysql --datadir=/app/mysql/data --basedir=/app/mysql
製作MySQL啟動指令碼:
[root@lnmp data]# cp /app/mysql/support-files/mysql.server /etc/init.d/mysqld cp:是否覆蓋"/etc/init.d/mysqld"? y [root@lnmp mysql]# sed -ri 's#/usr/local#/app#g' /etc/init.d/mysqld /app/mysql/bin/mysqld_safe
建立組態檔:
[root@lnmp mysql]# cp /app/mysql/support-files/my-default.cnf /etc/my.cnf cp:是否覆蓋"/etc/my.cnf"? y
啟動MySQL:
[root@lnmp mysql]# /etc/init.d/mysqld restart Shutting down MySQL.. SUCCESS! Starting MySQL. SUCCESS! [root@lnmp mysql]# netstat -utpln | grep mysqld tcp 0 0 :::3306 :::* LISTEN 17796/mysqld
設定環境變數:
[root@lnmp mysql]# echo 'export PATH=/app/mysql/bin:$PATH' >>/etc/profile [root@lnmp mysql]# source /etc/profile
登入資料庫:
因為初始密碼為空,所以登入後要修改密碼
[root@lnmp mysql]# mysql Welcome to the MySQL monitor. Commands end with ; or g. Your MySQL connection id is 2 Server version: 5.6.47 MySQL Community Server (GPL) Copyright (c) 2000, 2020, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or 'h' for help. Type 'c' to clear the current input statement. mysql> [root@lnmp mysql]# mysqladmin -u root password '123123' Warning: Using a password on the command line interface can be insecure. [root@lnmp mysql]# mysql -uroot -p Enter password: Welcome to the MySQL monitor. Commands end with ; or g. Your MySQL connection id is 4 Server version: 5.6.47 MySQL Community Server (GPL) Copyright (c) 2000, 2020, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or 'h' for help. Type 'c' to clear the current input statement. mysql>
下載PHP包及liblconv包:
[root@lnmp ~]# cd /server/tools/ [root@lnmp tools]# wget https://museum.php.net/php5/php-5.5.3.tar.gz [root@lnmp tools]# wget https://ftp.gnu.org/pub/gnu/libiconv/libiconv-1.16.tar.gz
安裝依賴包:
[root@lnmp tools]# yum -y install zlib-devel libxml2-devel libjpeg-devel libjpeg-turbo-devel [root@lnmp tools]# yum -y install libiconv-devel freetype-devel libpng-devel gd-devel [root@lnmp tools]# yum -y install libcurl-devel libxslt-devel [root@lnmp tools]# yum -y install libmcrypt-devel mhash mcrypt
編譯安裝語言轉換工具:
[root@lnmp tools]# tar xf libiconv-1.16.tar.gz [root@lnmp tools]# cd libiconv-1.16 [root@lnmp libiconv-1.16]# ./configure --prefix=/usr/local/libiconv [root@lnmp libiconv-1.16]# make && make install
解壓PHP包進行預編譯:
[root@lnmp libiconv-1.16]# cd /server/tools/ [root@lnmp tools]# tar xf php-5.5.3.tar.gz [root@lnmp tools]# cd php-5.5.3 [root@lnmp php-5.5.3]# mkdir -p /app/php-5.5.3 [root@lnmp php-5.5.3]# ./configure --prefix=/app/php-5.5.3 --with-mysql --with-pdo-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-bcmath --enable-shmop --enable-sysvsem --enable-inline-optimization --with-curl --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-soap --enable-short-tags --enable-static --with-xsl --with-fpm-user=www --with-fpm-group=www --enable-ftp --enable-opcache=no [root@lnmp php-5.5.3]# echo $? 0
防報錯處理:
[root@lnmp php-5.5.3]# ln -s /app/mysql/lib/libmysqlclient.so.18 /usr/lib64/ [root@lnmp php-5.5.3]# touch ext/phar/phar.phar
編譯安裝PHP:
[root@lnmp php-5.5.3]# make && make install [root@lnmp php-5.5.3]# echo $? 0 [root@lnmp php-5.5.3]# cp php.ini-production /app/php-5.5.3/lib/ [root@lnmp php-5.5.3]# ln -s /app/php-5.5.3/ /app/php [root@lnmp php-5.5.3]# cd /app/php/etc/ [root@lnmp etc]# ll 總用量 28 -rw-r--r-- 1 root root 1152 8月 25 06:39 pear.conf -rw-r--r-- 1 root root 21846 8月 25 06:39 php-fpm.conf.default [root@lnmp etc]# cp php-fpm.conf.default php-fpm.conf [root@lnmp etc]# vim php-fpm.conf listen = 172.16.1.30:9000
啟動PHP:
[root@lnmp etc]# useradd -s /sbin/nologin -M www [root@lnmp etc]# /app/php/sbin/php-fpm [root@lnmp etc]# netstat -utpln | grep php tcp 0 0 172.16.1.30:9000 0.0.0.0:* LISTEN 39741/php-fpm
[root@lnmp etc]# cd /app/nginx/conf/ [root@lnmp conf]# cp nginx.conf nginx.conf.bak [root@lnmp conf]# grep -Ev "#|^$" nginx.conf.default >nginx.conf [root@lnmp conf]# vim nginx.conf [root@lnmp conf]# cat nginx.conf worker_processes 1; events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; sendfile on; keepalive_timeout 65; server { listen 80; server_name 192.168.1.30; location / { root html/www; index index.html index.htm index.php; location ~* .*.(php|php5)?$ { fastcgi_pass 172.16.1.30:9000; fastcgi_index index.php; include fastcgi.conf; } } error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } } } [root@lnmp conf]# /app/nginx/sbin/nginx -t nginx: the configuration file /app/nginx-1.12.2//conf/nginx.conf syntax is ok nginx: configuration file /app/nginx-1.12.2//conf/nginx.conf test is successful
重新啟動Nginx服務:
[root@lnmp etc]# /app/nginx/sbin/nginx -s reload
測試:
[root@lnmp etc]# cd /app/nginx/html/ [root@lnmp html]# ls 50x.html index.html [root@lnmp html]# vim test_php.php [root@lnmp html]# cat test_php.php <?php phpinfo(); ?> 網頁存取:192.168.1.30/test_php.php出現php頁面,代表正常
下載安裝包:
[root@lnmp tools]# wget https://cn.wordpress.org/wordpress-4.7.3-zh_CN.tar.gz [root@lnmp tools]# tar xf wordpress-4.7.3-zh_CN.tar.gz
部署站點:
[root@lnmp tools]# mkdir -p /app/nginx/html/www [root@lnmp tools]# mv wordpress/* /app/nginx/html/www [root@lnmp tools]# chown -R www.www /app/nginx/html/www/
建立資料庫資訊:
[root@lnmp tools]# mysql -uroot -p123123 mysql> create database wordpress; Query OK, 1 row affected (0.01 sec) mysql> grant all on wordpress.* to 'wordpress'@'localhost' identified by '123123'; Query OK, 0 rows affected (0.04 sec)
登入網站設定網站:
http://ip/wp-admin
主機預設localhost。截錯了
到這裡基本就部署好了,裡面的一些詳細設定就不說了。。。
以上就是Nginx服務LNMP之WordPress部署流程步驟的詳細內容,更多關於Nginx服務LNMP WordPress部署的資料請關注it145.com其它相關文章!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45