This is an old revision of the document!
# Magento
## Magento版本介绍
## Magento安装
### Magento环境要求
详见[Magento 2.1 环境要求官方文档](http://devdocs.magento.com/guides/v2.1/install-gde/system-requirements-tech.html)
* 64位Linux操作系统(RedHat Enterprise Linux(RHEL), CentOS, Ubuntu, Debian等) * Web服务器(Apache2, nginx) * PHP及PHP扩展 * 数据库(MySQL等)
### Magento安装步骤
* [下载Magento Open Source](http://www.magento.com/download) * 上传到服务器(使用ftp或scp等) * 解压安装包到合适的目录(tar, gunzip, unar等) * 安装
使用浏览器打开`http://<magento_host_or_ip>/<magento_path>/setup`,例如`http://127.0.0.1/magento2ce/setup`
### Magento安装常见问题
#### setup页面无法正确显示
如果打开setup页面,没有显示magento的安装页面,而是纯文本内容,可能是apache没有启用php模块,参照[Apache PHP配置](apache2配置#apache2_php配置)
#### Readiness Check失败
* PHP Settings Check:You must have installed GD library with –with-jpeg-dir=DIR option.
Ubuntu下通过`sudo apt install php7.0-gd`并`sudo service apache2 restart`安装GP支持
* PHP Extensions Check: 11 missing PHP extensions.
Ubuntu下通过`sudo apt install php7.0-<module_name>`安装缺失的扩展(即extension,module名称基本与extension名称相同,但是部分module可能包含了多个extension)并重启apache2服务即可。
## Magento配置