运维黄金架构LAMP(二)---- Disuz论坛部署

运维黄金架构LAMP(二)---- Disuz论坛部署

  1. 成功进入安装界面
    运维黄金架构LAMP(二)---- Disuz论坛部署_第1张图片
  2. 安装过程中可能出现的情况
    • 目录、文件权限检查对钩不全
      解决办法:重新进行上面第五步,修改代码权限。
    • xml_parser_create(),该函数需要 PHP 支持 XML。请联系空间商,确定开启了此项功能。
      解决办法:
# 安装xml模块
[root@LAMP Discuz]# yum install php-xml

运维黄金架构LAMP(二)---- Disuz论坛部署_第2张图片
运维黄金架构LAMP(二)---- Disuz论坛部署_第3张图片

  1. 继续下一步
    运维黄金架构LAMP(二)---- Disuz论坛部署_第4张图片

  2. 只需填写管理员密码,其他使用默认即可
    运维黄金架构LAMP(二)---- Disuz论坛部署_第5张图片

  3. 安装数据库
    运维黄金架构LAMP(二)---- Disuz论坛部署_第6张图片

  4. 安装成功
    运维黄金架构LAMP(二)---- Disuz论坛部署_第7张图片

安装成功后,查看数据库,数据库内创建了新的ultrax表。

[root@LAMP Discuz]# mysql -uroot -p
Enter password: 
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 42
Server version: 10.3.28-MariaDB MariaDB Server

Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

MariaDB [(none)]> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
| ultrax             |
+--------------------+
4 rows in set (0.000 sec)

MariaDB [(none)]> use ultrax;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Database changed
MariaDB [ultrax]> show tables;
+-----------------------------------+
| Tables_in_ultrax                  |
+-----------------------------------+
| pre_common_admincp_cmenu          |
| pre_common_admincp_group          |
| pre_common_admincp_member         |
| pre_common_admincp_perm           |
| pre_common_admincp_session        |
 ...................................
| pre_ucenter_protectedmembers      |
| pre_ucenter_settings              |
| pre_ucenter_sqlcache              |
| pre_ucenter_tags                  |
| pre_ucenter_vars                  |
+-----------------------------------+
292 rows in set (0.002 sec)

MariaDB [ultrax]> exit
Bye
----根据于超老师视频讲解进行笔记,做了相对更改,如有侵权请联系作者删除。

你可能感兴趣的:(运维,linux,自动化,架构,centos)