首页 > 代码库 > 在ubuntu server上安装沸腾时刻环境

在ubuntu server上安装沸腾时刻环境

 

1. 安装php5.6

http://phpave.com/upgrade-to-php-56-on-ubuntu-1404-lts/

按照这篇文章的顺序来做,可以安装最新5.6版本php

安装好了以后,要安装php的其他依赖,例如php5-curl等

 

2. 按照以下文章安装其他配置以及laravel

https://www.digitalocean.com/community/tutorials/how-to-install-laravel-with-an-nginx-web-server-on-ubuntu-14-04

 

3. 设置用户和组:

添加用户 yingxi , id设置为1003

添加组 www, id设置为 1002

添加yingxi至www组

(方法详见博客)

在用户的 /etc/passwd 文件结尾加上 /home/yingxi:/bin/bash

添加yingxi至sudo

 

4. 创建项目文件夹并设置owner和权限

chown yingxi:www fitshike2 -R

chmod 775 fitshike2 -R

 

在ubuntu server上安装沸腾时刻环境