您好,登錄后才能下訂單哦!
本篇內(nèi)容介紹了“怎么在RHEL、CentOS及Fedora上安裝Drupal 8”的有關(guān)知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!
Drupal 需求:
Apache 2.x (推薦)
PHP 5.5.9 或 更高 (推薦 PHP 5.5)
MySQL 5.5.3 或 MariaDB 5.5.20 與 PHP 數(shù)據(jù)對象(PDO) 支持
安裝過程中,我使用 drupal.tecmint.com 作為網(wǎng)站主機(jī)名,IP 地址為 192.168.0.104。你的環(huán)境也許與這些設(shè)置不同,因此請適當(dāng)做出更改。
步驟 1:安裝 Apache Web 服務(wù)器
1、 首先我們從官方倉庫開始安裝 Apache Web 服務(wù)器。
# yum install httpd
2、 安裝完成后,服務(wù)開始是被禁用的,因此我們需要手動啟動它,同時讓它下次系統(tǒng)啟動時自動啟動,如下:
------------- 通過 SystemD - CentOS/RHEL 7 和 Fedora 22+ ------------------- # systemctl start httpd # systemctl enable httpd ------------- 通過 SysVInit - CentOS/RHEL 6 和 Fedora ---------------------- # service httpd start # chkconfig --level 35 httpd on
3、 接下來,為了允許通過 HTTP 和 HTTPS 訪問 Apache 服務(wù),我們必須打開 HTTPD 守護(hù)進(jìn)程正在監(jiān)聽的 80 和 443 端口,如下所示:
------------ 通過 Firewalld - CentOS/RHEL 7 and Fedora 22+ ------------- # firewall-cmd --permanent --zone=public --add-service=http # firewall-cmd --permanent --zone=public --add-service=https # firewall-cmd --reload ------------ 通過 IPtables - CentOS/RHEL 6 and Fedora 22+ ------------- # iptables -A INPUT -p tcp -m tcp --dport 80 -j ACCEPT # iptables -A INPUT -p tcp -m tcp --dport 443 -j ACCEPT # service iptables save # service iptables restart
4、 現(xiàn)在驗證 Apache 是否正常工作, 打開瀏覽器在地址欄中輸入 http://server_IP, 輸入你的服務(wù)器 IP 地址, 默認(rèn) Apache2 頁面應(yīng)出現(xiàn),如下面截圖所示:
Apache 默認(rèn)頁面
步驟 2: 安裝 Apache PHP 支持
5、 接下來,安裝 PHP 和 PHP 所需模塊。
# yum install php php-mbstring php-gd php-xml php-pear php-fpm php-mysql php-pdo php-opcache
重要: 假如你想要安裝 PHP7, 你需要增加以下倉庫:EPEL 和 Webtactic 才可以使用 yum 安裝 PHP7.0:
------------- Install PHP 7 in CentOS/RHEL and Fedora ------------- # rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm # rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm # yum install php70w php70w-opcache php70w-mbstring php70w-gd php70w-xml php70w-pear php70w-fpm php70w-mysql php70w-pdo
6、 接下來,要從瀏覽器得到關(guān)于 PHP 安裝和配置完整信息,使用下面命令在 Apache 文檔根目錄 (/var/www/html) 創(chuàng)建一個 info.php 文件。
# echo "<?php phpinfo(); ?>" > /var/www/html/info.php
然后重啟 HTTPD 服務(wù)器 ,在瀏覽器地址欄輸入 http://server_IP/info.php。
# systemctl restart httpd 或 # service httpd restart
驗證 PHP 信息
步驟 3: 安裝和配置 MariaDB 數(shù)據(jù)庫
7、 請知曉, Red Hat Enterprise Linux/CentOS 7.0 從支持 MySQL 轉(zhuǎn)為了 MariaDB 作為默認(rèn)數(shù)據(jù)庫管理系統(tǒng)。
要安裝 MariaDB 數(shù)據(jù)庫, 你需要添加 官方 MariaDB 庫 到 /etc/yum.repos.d/MariaDB.repo 中,如下所示。
[mariadb] name = MariaDB baseurl = http://yum.mariadb.org/10.1/centos7-amd64 gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB gpgcheck=1
當(dāng)倉庫文件準(zhǔn)備好后,你可以像這樣安裝 MariaDB:
# yum install mariadb-server mariadb
8、 當(dāng) MariaDB 數(shù)據(jù)庫安裝完成,啟動數(shù)據(jù)庫的守護(hù)進(jìn)程,同時使它能夠在下次啟動后自動啟動。
------------- 通過 SystemD - CentOS/RHEL 7 and Fedora 22+ ------------- # systemctl start mariadb # systemctl enable mariadb ------------- 通過 SysVInit - CentOS/RHEL 6 and Fedora ------------- # service mysqld start # chkconfig --level 35 mysqld on
9、 然后運行 mysql_secure_installation 腳本去保護(hù)數(shù)據(jù)庫(設(shè)置 root 密碼, 禁用遠(yuǎn)程登錄,移除測試數(shù)據(jù)庫并移除匿名用戶),如下所示:
# mysql_secure_installation
MySQL 安全安裝
步驟 4: 在 CentOS 中安裝和配置 Drupal 8
10、 這里我們使用 wget 命令 下載***版本 Drupal(例如 8.2.6),如果你沒有安裝 wget 和 gzip 包 ,請使用下面命令安裝它們:
# yum install wget gzip # wget -c https://ftp.drupal.org/files/projects/drupal-8.2.6.tar.gz
11、 之后,解壓 tar 文件 并移動 Drupal 目錄到 Apache 文檔根目錄(/var/www/html)。
# tar -zxvf drupal-8.2.6.tar.gz # mv drupal-8.2.6 /var/www/html/drupal
12、 然后,依據(jù) /var/www/html/drupal/sites/default 目錄下的示例設(shè)置文件 default.settings.php,創(chuàng)建設(shè)置文件 settings.php,然后給 Drupal 站點目錄設(shè)置適當(dāng)權(quán)限,包括子目錄和文件,如下所示:
# 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/ 目錄設(shè)置 SElinux 規(guī)則,如下:
# chcon -R -t httpd_sys_content_rw_t /var/www/html/drupal/sites/
14、 現(xiàn)在我們必須為 Drupal 站點去創(chuàng)建一個用于管理的數(shù)據(jù)庫和用戶。
# mysql -u root -p Enter password: MySQL Shell Welcome to the MariaDB monitor. Commands end with ; or \g. Your MySQL connection id is 12 Server version: 5.1.73 Source distribution Copyright (c) 2000, 2016, Oracle, MariaDB Corporation Ab and others. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. **MySQL [(none)]> create database drupal;** Query OK, 1 row affected (0.00 sec) **MySQL [(none)]> create user ravi@localhost identified by 'tecmint123';** Query OK, 0 rows affected (0.00 sec) **MySQL [(none)]> grant all on drupal.* to ravi@localhost;** Query OK, 0 rows affected (0.00 sec) **MySQL [(none)]> flush privileges;** Query OK, 0 rows affected (0.00 sec) **MySQL [(none)]> exit** Bye
15、 ***,打開地址: http://server_IP/drupal/ 開始網(wǎng)站的安裝,選擇你***的安裝語言然后點擊保存以繼續(xù)。
Drupal 安裝語言
16、 下一步,選擇安裝配置文件,選擇 Standard(標(biāo)準(zhǔn)),點擊保存繼續(xù)。
Drupal 安裝配置文件
17、 在進(jìn)行下一步之前查看并通過需求審查并啟用 Clean URL。
驗證 Drupal 需求
現(xiàn)在在你的 Apache 配置下啟用 Clean URL 的 Drupal。
# vi /etc/httpd/conf/httpd.conf
確保為默認(rèn)根文檔目錄 /var/www/html 設(shè)置 AllowOverride All,如下圖所示:
在 Drupal 中啟用 Clean URL
18、 當(dāng)你為 Drupal 啟用 Clean URL,刷新頁面從下面界面執(zhí)行數(shù)據(jù)庫配置,輸入 Drupal 站點數(shù)據(jù)庫名,數(shù)據(jù)庫用戶和數(shù)據(jù)庫密碼。
當(dāng)填寫完所有信息點擊保存并繼續(xù)。
Drupal 數(shù)據(jù)庫配置
若上述設(shè)置正確,Drupal 站點安裝應(yīng)該完成了,如下圖界面。
Drupal 安裝
19、 接下來配置站點為下面的設(shè)置(使用適用你的情況的值):
站點名稱 – TecMint Drupal Site
站點郵箱地址 – admin@tecmint.com
用戶名 – admin
密碼 – ##########
用戶的郵箱地址 – admin@tecmint.com
默認(rèn)國家 – India
默認(rèn)時區(qū) – UTC
設(shè)置適當(dāng)?shù)闹岛?,點擊保存并繼續(xù)完成站點安裝過程。
Drupal 站點配置
20、下圖顯示的是通過 LAMP 成功安裝的 Drupal 8 站點。
Drupal 站點面板
現(xiàn)在你可以點擊增加內(nèi)容,創(chuàng)建示例網(wǎng)頁內(nèi)容。
“怎么在RHEL、CentOS及Fedora上安裝Drupal 8”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實用文章!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。