在Ubuntu14.04上安装 Apache,Mysql,SSL and Drupal8

参考地址:https://www.howtoforge.com/tutorial/how-to-install-drupal_8-with-apache-and-ssl-on-ubuntu-15-10/

On this page

Step 1 - Install Apache and PHP

Step 2 - Install and Configure the MySQL Database

Step 3 - Install and Configure SSL

Step 4 - Configure the Apache Virtualhost

Step 5 - Install and Configure Drupal 8

Conclusion

第一步,安装Apche和PHP

安装配置apache和PHP, 有些PHP模块是Drupal要求的, 既然是ubuntu的系统, 那用apt的包管理安装,就想yum对centos一样。

然后还需要启用mod_rewrite 和mod_ssl这两个模块

首先更新apt库,和安装apache

sudo su

apt-get update

apt-get install apache2 -y

你可能感兴趣的:(在Ubuntu14.04上安装 Apache,Mysql,SSL and Drupal8)