zoukankan      html  css  js  c++  java
  • aliyun搭博客从零到一

    一、基础环境

    lnmp      1台负载均衡SLB     2台ECS    1台 RDS

     二、lnmp搭建

    1、#配置nginx的yum仓库

    2、#yum install  -y  nginx

    3、#yum -y install   php   php-mysql   gd  php-gd

    4、[root@zjz1 ~]# vim   /etc/nginx/conf.d/default.conf  (  修改nginx配置文件来连接php)

     5、[root@apache ~]# rm -rf /usr/share/html/*
         [root@apache ~]# vim /usr/share/html/index.php  (测试连接)
    <?php
    $link=mysql_connect('数据库内网地址','登录名','密码');
    if ($link)
    echo "Successfuly";
    else
    echo "Faile";
    mysql_close();
    ?>

    6、[root@zjz1 ~]# systemctl restart nginx

    7、访问测试

     

    三、slb和rds

    1、SLB负载均衡绑定两个ECS

    2、数据库授权登录和账户白名单

     

    3、登录mysql数据库创一个wordpress库

     四、上线博客代码

    1、/usr/share/nginx/html/

     [root@zjz1 html]# unzip wordpress-5.0.4.zip  (上传博客代码压缩包并解压到nginx网页文件夹)

     

    [root@zjz1 ~]# chmod 755 -R  /usr/share/nginx/html/*
    [root@zjz1 ~]# cd /usr/share/nginx/html/

    [root@zjz1 html]# vim wp-config.php

    ..........复制上图中的代码


    2、 远程登录rds查看,查看数据是否写入。

    [root@zjz1 html]# mysql -h rm-j6cxjn3uog9w77d23.mysql.rds.aliyuncs.com -uroot -pJsc151404
    Welcome to the MariaDB monitor.  Commands end with ; or g.
    Your MySQL connection id is 3574
    Server version: 5.7.25-log Source distribution
    Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.
    Type 'help;' or 'h' for help. Type 'c' to clear the current input statement.
    MySQL [(none)]> create database wordpress;
    Query OK, 1 row affected (0.01 sec)

    图形方式

  • 相关阅读:
    每天一点Linux type命令的用法
    Source Insight 3.5 序列号分享
    每天一点Linux 查看帮助
    解决Eclipse因为插件加载失败而无法启动的问题
    php生成随机字符串
    mysql 获取刚插入行id汇总
    mysql left join,right join,inner join用法分析
    php中mkdir()函数的权限问题
    php生成唯一数值
    PHP函数mysql_affected_rows()与mysql_num_rows()有什么区别?
  • 原文地址:https://www.cnblogs.com/zjz20/p/11723406.html
Copyright © 2011-2022 走看看