-------------通过SystemD-CentOS/RHEL 7andFedora22+-------------
#systemctl start mariadb
#systemctl enable mariadb
-------------通过SysVInit-CentOS/RHEL 6andFedora-------------
# service mysqld start
# chkconfig --level 35 mysqld on
9、 然后运行 mysql_secure_installation 脚本去保护数据库(设置 root 密码, 禁用远程登录,移除测试数据库并移除匿名用户),如下所示:
# mysql_secure_installation
先是设置密码,会提示先输入密码
Enter current password for root (enter for none):<–初次运行直接回车
设置密码
Set root password? [Y/n] <– 是否设置root用户密码,输入y并回车或直接回车
New password: <– 设置root用户的密码
Re-enter new password: <– 再输入一次你设置的密码
其他配置
Remove anonymous users? [Y/n] <– 是否删除匿名用户,Y,回车
Disallow root login remotely? [Y/n] <–是否禁止root远程登录,N,回车,
Remove test database and access to it? [Y/n] <– 是否删除test数据库,Y,回车
Reload privilege tables now? [Y/n] <– 是否重新加载权限表,回车
初始化MariaDB完成,接下来测试登录
第4步: 在 CentOS 中安装和配置 Drupal 810、 这里我们使用 wget 命令 下载最新版本 Drupal(例如最新的 8.6.4),如果你没有安装 wget 和 gzip 包 ,请使用下面命令安装它们:
#yum install wget gzip
#wget-c https://ftp.drupal.org/files/projects/drupal-8.6.4.tar.gz
11、 之后,解压 tar 文件 并移动 Drupal 目录到 Apache 文档根目录(/var/www/html)。
#tar -zxvf drupal-8.6.4.tar.gz
#mv drupal-8.6.4/var/www/html/drupal
12、 然后,依据 /var/www/html/drupal/sites/default 目录下的示例设置文件 default.settings.php,创建设置文件 settings.php,然后给 Drupal 站点目录设置适当权限,包括子目录和文件,如下所示:
#cd/var/www/html/drupal/sites/default/
#cp default.settings.php settings.php
#chown-R apache:apache /var/www/html/drupal/
13、 更重要的是在 /var/www/html/drupal/sites/ 目录设置 SElinux 规则,如下:
# chcon -R -t httpd_sys_content_rw_t/var/www/html/drupal/sites/
14、 现在我们必须为 Drupal 站点去创建一个用于管理的数据库和用户。
[root@localhost default]# mysql -u root -p
Enter password:
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 16
Server version: 10.3.11-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)]> create database drupal;
Query OK, 1 row affected (0.000 sec)
MariaDB [(none)]> create user linuxidc@localhost identified by 'linuxidc';
Query OK, 0 rows affected (0.006 sec)
MariaDB [(none)]> grant all on drupal.* to linuxidc@localhost;
Query OK, 0 rows affected (0.005 sec)
MariaDB [(none)]> flush privileges;
Query OK, 0 rows affected (0.005 sec)
MariaDB [(none)]> exit
Bye
15、 最后,打开地址: 开始网站的安装,选择你首选的安装语言然后点击保存以继续。
Drupal 安装语言
16、 下一步,选择安装配置文件,选择 Standard(标准),点击保存继续。
Drupal 安装配置文件
17、 在进行下一步之前查看并通过需求审查并启用 Clean URL。
验证 Drupal 需求
现在在你的 Apache 配置下启用 Clean URL 的 Drupal。
#nano /etc/httpd/conf/httpd.conf
确保为默认根文档目录 /var/www/html 设置 AllowOverride All,(原来是 None)如下图所示:
在 Drupal 中启用 Clean URL
18、 当你为 Drupal 启用 Clean URL,刷新页面从下面界面执行数据库配置,输入 Drupal 站点数据库名,数据库用户和数据库密码。
当填写完所有信息点击保存并继续。
Drupal 数据库配置
若上述设置正确,Drupal 站点安装应该完成了,如下图界面。
Drupal 安装
19、 接下来配置站点为下面的设置(使用适用你的情况的值):