一.配置PHP环境:
搭建好基本的安装包。然后执行如下代码:
/sbin/iptables -I INPUT -p tcp --dport 80 -j ACCEPT
/etc/init.d/iptables save
service iptables restart
reboot
export PATH=$PATH:/usr/local/php/bin
source
二.配置compser等:
cd /home/wwwroot
curl -sS https://getcomposer.org/installer | php
php composer.phar global require "fxp/composer-asset-plugin:1.0.0"
vi /usr/local/php/etc/php.ini
将disable_functions=这一行的内容改为:
disable_functions=dl,eval,assert,exec,popen,system,passthru,shell_exec,escapeshellcmd
service php-fpm restart
三.开始安装:
php composer.phar create-project yiisoft/yii2-app-basic /home/wwwroot/yii-test
安装完成后:
阿里云Server(Ubuntu 12.04)配置FTP:http://www.linuxdiyf.com/linux/15019.html
阿里云云服务器Linux系统挂载数据盘图文教程:http://www.linuxdiyf.com/linux/14984.html
阿里云服务器挂载数据盘:http://www.linuxdiyf.com/linux/13885.html
阿里云服务器ECS Ubuntu系统安装配置:http://www.linuxdiyf.com/linux/13662.html
Ubuntu系统中登陆阿里云服务器的方法:http://www.linuxdiyf.com/linux/13369.html