本文主要是介绍CentOS 7.x 安装drupal 8,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1.drupal 8.x 需求
类型 | 需求 |
---|---|
Database | 1.MySQL 5.5.3/MariaDB 5.5.20/Percona Server 5.5.8 or higher with PDO and an InnoDB-compatible primary storage engine, 2.PostgreSQL 9.1.2 or higher with PDO, 3.SQLite 3.6.8 or higher |
PHP | PHP 5.5.9 or higher |
官方需求链接
2.部署LAMP(Linux+Apache+Mysql+PHP)
2.0 更新系统安装包(CentOS)[Option]
# yum update
2.1 安装Apache
# yum install httpd
Apache设置默认启动[Option]
# systemctl start httpd
# systemctl enable httpd
Apache浏览器访问
在浏览器中输入网址后可以看到测试页面.
Testing…….
2.2 安装MariaDB
# yum install mariadb-server mariadb
设置MariaDB自动运行
# systemctl start mariadb
# systemctl enable mariadb
初始化MariaDB
# /usr/bin/mysql_secure_installation
这篇关于CentOS 7.x 安装drupal 8的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!