You will install PHP 7.1.1 =========================== You have 3 options for your Memory Allocator install. 1: Don't install Memory Allocator. (Default) 2: Install Jemalloc 3: Install TCMalloc
输入选项然后回车或者直接回车,直接回车默认不安装内存分配器。我选择默认。
此时出现
Press any key to install...or Press Ctrl+c to cancel
当然是摁任意键啦,一般都是回车咯。
然后出现一大堆信息。前几行如下:
You will install lnmp stack. nginx-1.10.3 mysql-5.5.53 php-5.5.38 Enable InnoDB: y Print lnmp.conf infomation... Download Mirror: http:
这一堆东西你就不用管啦。本次实验的开始时间23:04……经过了漫长漫长漫长的等待之后……大概23:35结束。所以期间你去洗个澡看个电视剧都不是问题。然后我们看到屏幕上最后输出的信息如下。
The service command supports only basic LSB actions (start, stop, restart, try-restart, reload, force-reload, status). For other actions, please try to use systemctl. Removed symlink /etc/systemd/system/basic.target.wants/firewalld.service. Removed symlink /etc/systemd/system/dbus-org.fedoraproject.FirewallD1.service. Add Startup and Starting LNMP… Add nginx service at system startup… Starting nginx… done Add mysql service at system startup… Starting MySQL… SUCCESS! Add php-fpm service at system startup… Starting php-fpm done ============================== Check install ============================== Checking … Nginx: OK MySQL: OK PHP: OK PHP-FPM: OK Clean src directory… +————————————————————————+ | LNMP V1.4 for CentOS Linux Server, Written by Licess | +————————————————————————+ | For more information please visit https://lnmp.org | +————————————————————————+ | lnmp status manage: lnmp {start|stop|reload|restart|kill|status} | +————————————————————————+ | phpMyAdmin: http://IP/phpmyadmin/ | | phpinfo: http://IP/phpinfo.php | | Prober: http://IP/p.php | +————————————————————————+ | Add VirtualHost: lnmp vhost add
+————————————————————————+ | Default directory: /home/wwwroot/default | +————————————————————————+ | MySQL/MariaDB root password: root | +————————————————————————+ +——————————————-+ | Manager for LNMP, Written by Licess | +——————————————-+ | https://lnmp.org | +——————————————-+ nginx (pid 715 713) is running… php-fpm is runing! SUCCESS! MySQL running (1247) Active Internet connections (only servers) Proto Recv-Q Send-Q Local Address Foreign Address State tcp 0 0 0.0.0.0:3306 0.0.0.0:* LISTEN tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN tcp6 0 0 :::22 :::* LISTEN Install lnmp V1.4 completed! enjoy it.
简单说明一下,此安装过程安装完成便也启动了nginx,mysql,php-fpm并加入了开机启动项。如果重启服务器,不需要再单独手动开启相关的服务了。总的来说相当方便的。
这时候你在浏览器输入http://IP
例如 http://45.32.195.77
便可以访问了。看到的内容如下:
访问页面
网站根目录路径/home/wwwroot/default
,如果只用来放一些静态页面,那么,现在就足够了,直接将你的html,js,css等文件丢进去即可。这不是本文重点,在此不赘述了。
退出使用ctrl+c
安装WordPress
下载WordPress包
中文官方站点 英文官方站点具体的根据自己的需求选择。下面以中文版为例。当前最新版本是4.7.2
为了方便,我们还是在用站点默认的路径,但是我们投机取巧一下。
给相应目录授权
出现的提示大概是说有一个文件无法更改用户分组和权限。不会影响你的wordpress,忽略就好。
创建一个数据库wordpress
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql>
配置WordPress
这时候在此通过浏览器访问 http://IP
例如 http://45.32.195.77
,浏览器将自动跳转到http://45.32.195.77/wp-admin/setup-config.php
,这就是wordpress的配置页面了,看到的内容如下:
按照之前设置的,输入如下信息。
数据库名:wordpress 用户名:root 密码:root 数据库主机:localhost 表前缀:wp_
点击提交。
数据库连接完成
到这一步,基本上就意味着大功告成了,因为后边基本不会出错啦。
点击进行安装按钮。出现下图:
按照自己的需求填写,
点击安装WordPress按钮,然后登录设置啥的纯页面操作就不在这里过多介绍咯。
OK 完成安装只有我这边写文章,发表文章之后再次查看文章发现 404 not fount nginx!!!!!!!!!!
修改nginx.conf文件,在location /节点下添加如下代码:
location / { try_files $uri $uri/ /index.php?q=$uri&$args; }
- 1
- 2
- 3
- 4
然后重启nginx即可解决。
ps -ef|grep nginx
平滑重启命令:
kill -HUP 住进称号或进程号文件路径
或者使用
/usr/nginx/sbin/nginx -s reload
注意,修改了配置文件后最好先检查一下修改过的配置文件是否正 确,以免重启后Nginx出现错误影响服务器稳定运行。
判断Nginx配置是否正确命令如下:
nginx -t -c /usr/nginx/conf/nginx.conf
或者
/usr/nginx/sbin/nginx -t
nginx reload重启
执行
# /usr/local/nginx/sbin/nginx -s reload
nginx已经重启成功
Centos nginx重启
重启Nginx
service nginx restart
/etc/init.d/nginx stop
/etc/init.d/nginx start
原文链接:https://www.cnblogs.com/ZFBG/p/8971211.html