基于:linux LNMP高并发服务编译安装搭建实战
#查看nginx、php、mysql服务是否搭建成功[root@web02 ~]# netstat -lntup|egrep "80|3306|9000"tcp 0 0 127.0.0.广告标语1:9000 0.0.0.0:* LISTEN 12214/php-fpm: mast tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 12420/nginx: master tcp6 0 0 :::3306 :::* LISTEN 7285/mysqld
[root@web02 ~]# cd /rver/tools/[root@web02 /rver/tools]# rz -yrz waiting to receive.[root@web02 /rver/tools]# lslibiconv-1.16 nginx-1.16.0 php-7.3.5.tar.gzlibiconv-1.16.tar.gz nginx-1.16.0.tar.gz wordpress-5.1.1.zipmysql-5.7.26-linux-glibc2.12-x86_64.tar.gz php-7.3.5[root@web02 /rver/tools]# unzip wordpress-5.1.1.zip [root@web02 /rver/tools]# mv wordpress/* /application/nginx/html/blog/[root@web02 /rver/tools]# chown -R nginx.nginx /application/nginx/html/blog/ (权限太大,暂时性)[root@web02 /rver/tools]# ls -ld /application/nginx/html/blog/drwxr-xr-x 5 nginx nginx 4096 5月 7 09:14 /application/nginx/html/blog/
1)修改配置文件
[root@web02 /application/nginx/conf/extra]#vim 03_blog.conf rver { listen 80; rver_name blog.etiantian.org; root html/blog; location / { index index.php index.html index.htm; ##此处加入index.php,后面两个可以删除 } location ~ .*\.(php|php5)?$ { fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name; include fastcgi.conf; } }
2)打开网页安装
[root@web02 /application/nginx/html/blog]#mysql -uroot -poldboy123.......#查看所有数据库oldboy [(none)]>show databas;+--------------------+| Databa 中国劳动关系学院 |+--------------------+| information_schema || mysql || performance_schema || sys |+----2004奥运会奖牌榜排名----------------+4 rows in t (0.39 c)#创建wordpress数据库oldboy [(none)]>create databa wordpress;Query OK, 1 row affected (0.14 c)#检查oldboy [(none)]>show databas;+--------------------苍梧晚报+| Databa |+--------------------+| information_schema || mysql || performance_schema || sys || wordpress |+--------------------+5 rows in t (0.00 c)oldboy [(none)]>
在地址栏输入blog.etiantian.org,选择英文安装
春节的传统习俗点。。go
#切换数据库oldboy [(none)]>u wordpress;Databa changed#查看表oldboy [wordpress]>show tables;Empty t (0.00 c)oldboy [wordpress]>
登录wordpress就可以在Linux那查看wordpress数据库表了
此时可以在wordpress写自己的博客了。
PS:遇到编辑器错误解决方法
在左边找到插件——》右上角搜索Classic Editor插件启用激活即可
测试:在wordpress写好自己的博客并且发布,在浏览器地址栏输入blog.etiantian.org可以观看。
本文地址:https://blog.csdn.net/qq_42468502/article/details/108866251
本文发布于:2023-04-08 23:13:01,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/c95f688f5b6d7eff25fc35454a574f46.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:LNMP高并发服务博客平台搭建实战.doc
本文 PDF 下载地址:LNMP高并发服务博客平台搭建实战.pdf
留言与评论(共有 0 条评论) |