腾讯云搭建wordpress环境

系统centos 7.2 ,
LNMP 环境代表 Linux 系统下 Nginx + MySQL + PHP 网站服务器架构.
第一步: Nginx

  1. yum install nginx
  2. 启动 systemctl start nginx
  3. systemctl enable nginx.service //设置开机启动nginx服务
    //chkconfig是管理系统服务(service)的命令行工具。所谓系统服务(service),就是随系统启动而启动,随系统关闭而关闭的程序。
  4. 重新启动 :systemctl restart nginx.service
  5. 浏览器中测试 Nginx 服务是否正常运行。访问 CentOS 云服务器公网 IP。
    若服务正常,显示结果welcome nginx。

第二步:安装配置 MySQL
从 CentOS 7 系统开始,MariaDB 成为 yum 源中默认的数据库安装包。

  1. 安装 : yum install mariadb mariadb-server
    2.启动 : systemctl start mariadb.service
    3.进入mysql环境 ,输入 mysql
    4.登录 MySQL ,删除空用户。输入命令:
    mysql>select user,host,password from mysql.user;
    mysql>drop user ''@localhost;
    5.修改 root 密码。输入命令:
    mysql>update mysql.user set password = PASSWORD('此处输入您新设密码') where user='root';
    mysql>flush privileges;

第三步:安装配置 PHP

  1. 安装 PHP 。输入命令进行安装:
    yum install php lighttpd-fastcgi php-cli php-mysql php-gd php-imap php-ldap
    php-odbc php-pear php-xml php-xmlrpc php-mbstring php-mcrypt php-mssql php-snmp php-soap

2.安装所需组件使 PHP 支持 MySQL、FastCGI 模式。
yum install php-tidy php-common php-devel php-fpm php-mysql

  1. 启动 PHP-FPM。输入命令启动 PHP-FPM 服务
    systemctl start php-fpm.service

4.输入命令查看 PHP-FPM 默认配置:
cat /etc/php-fpm.d/www.conf |grep -i 'listen ='
返回结果为:listen = 127.0.0.1:9000,表明 PHP-FPM 默认配置的监听端口为 9000,只需修改配置,将 PHP 解析的请求转发到 127.0.0.0:9000 处理即可。

5.修改 Nginx 配置。
输入命令查找 Nginx 配置文件:nginx -t
使用vi命令修改该配置文件:

  server {
        listen       80 ;
        root         /usr/share/nginx/html;
        server_name  localhost;

        # Load configuration files for the default server block.
        include /etc/nginx/default.d/*.conf;

        location / {
           index index.php  index.html index.htm;
        }

        error_page 404 /404.html;
            location = /40x.html {
        }

        error_page 500 502 503 504 /50x.html;
            location = /50x.html {
        }

    location ~ \.php$ {
            fastcgi_pass   127.0.0.1:9000;
            fastcgi_index   index.php;
            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
            include        fastcgi_params;
        }
    }
  1. 修改完成后,按“ Esc ”键,输入“ :wq ”,保存文件并返回。
  2. 查看配置是否正确。输入命令:cat /etc/nginx/nginx.conf 。
  3. 配置完成后,重启服务。输入命令 systemctl restart nginx

把上面三个设置弄成开机,就自己启动

systemctl enable nginx.service
systemctl enable mariadb.service
systemctl enable php-fpm.service

第四步:环境配置验证

用以下命令在 web 目录下创建 index.php:

vim /usr/share/nginx/html/index.php

写入如下内容:

Test Page";
echo "hello world";
?>

在浏览器中,访问 CentOS 云服务器公网 IP ,查看环境配置是否成功。如果页面可以显示“hello world”,说明配置成功。

参考文档 :

第五步:给wordpress 配置数据库
1.登陆mysql环境

mysql -uroot -p
  1. 为 WordPress 创建数据库并设置用户名和密码(本教程设置如下,您可自行定义)。
    为 WordPress 创建 MySQL 数据库 “wordpress”。

    CREATE DATABASE wordpress;
    
    

    为已创建好的 MySQL 数据库创建一个新用户 “user@localhost”。

    CREATE USER user@localhost;
    
    

    并为此用户设置密码“wordpresspassword”。

    SET PASSWORD FOR user@localhost=PASSWORD("wordpresspassword");
    
    
  2. 为创建的用户开通数据库 “wordpress” 的完全访问权限。

    GRANT ALL PRIVILEGES ON wordpress.* TO user@localhost IDENTIFIED BY 'wordpresspassword';
    
    
  3. 使用以下命令使所有配置生效。

    FLUSH PRIVILEGES;
    
    
  4. 配置完成,退出 MySQL。

    exit
    
    

第六步:上传wordpress
1.通过ftp软件,把下载好的wordpress 文件夹上传到 /usr/share/nginx/html/
目录下。

  1. 创建新配置文件
    wp-config-sample.php文件复制到名为wp-config.php的文件,使用以下命令创建新的配置文件,并将原先的示例配置文件保留作为备份。

    cd wordpress/
    cp wp-config-sample.php wp-config.php
    
    
  2. 打开并编辑新创建的配置文件。

    vim wp-config.php
    
    

    找到文件中 MySQL 的部分,按字母“I”键或 “Insert” 键切换至编辑模式,将步骤 3.2 中已配置好的数据库相关信息写入:

// ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define('DB_NAME', 'wordpress');

/** MySQL database username */
define('DB_USER', 'user');

/** MySQL database password */
define('DB_PASSWORD', 'wordpresspassword');

/** MySQL hostname */
define('DB_HOST', 'localhost');

修改完成后,按“Esc”键,输入“:wq”,保存文件返回。

你可能感兴趣的:(腾讯云搭建wordpress环境)