How to install laravel on ubuntu lamp

发布时间:2020-09-29 08:30:44 作者:_Mr_Computer_
来源:网络 阅读:540


http://tutsnare.com/how-to-install-laravel-on-ubuntu-lamp/

How to install laravel on ubuntu lamp (via laravel installer, composer)

Now time of frameworks in php like laravel, codeigniter etc and easy to install php frameworks on local server like lamp, xampp etc. Below we will see installation steps of a php framework laravel on ubuntu lamp. Let’s see How to install laravel on ubuntu lamp via laravel installer and via composer. for this we need some server requirements, some of software installation. Really a fast and handy installation of this new php framework. you will get this in few minutes. In this article (How to install laravel on ubuntu lamp) we are discussing all laravel installation different method need to give some hands and got installed.
We need some system requirements to install laravel framework :

PHP >= 5.4
Mcrypt PHP Extension
OpenSSL PHP Extension
Mbstring PHP Extension

Below are the steps of installing laravel on ubuntu lamp using composer and laravel installer :- first we need to install latest update and upgrade of unbuntu server. so for this run below command at your terminal

sudo apt-get update
sudo apt-get upgrade

After update we need to install php, apche, mysql (if not already installed)

Install php mysql and apache

sudo apt-get install apache2
sudo apt-get install php5
sudo apt-get install mysql-server
sudo apt-get install php5-mysql

Now we need to install some of require extension (json, curl, mcrypt etc.) to run and download laravel framework. and then restart apache server to setup all extension.

#installing json extension
sudo apt-get install php5-json
#installing unzip extension
sudo apt-get install unzip
#installing curl extension
sudo apt-get install curl
#installing openssl extension
sudo apt-get install openssl
#installing mcrypt extension
sudo apt-get install php5-mcrypt
#enable mcrypt extension
sudo php5enmod mcrypt
#installing git
sudo apt-get install -y git-core
#enable mod rewrite extension
sudo a2enmod rewrite
#restarting apache
sudo service apache2 restart

After successfully configure all php setup and require extension we need to install composer to download laravel from remote server. for this first command will be for download composer using curl then second one move composer to local user directory for make composer globally use.

# installing composer
curl -sS https://getcomposer.org/installer | php
# move composer globally
sudo mv composer.phar /usr/local/bin/composer
# check composer working
sudo composer

How to install laravel on ubuntu lamp

Now we composer installed successfully on our ubuntu. and then there are two method to install laravel on ubuntu lamp.

1. Via Laravel Installer

2. Via composer

a. create project command.
b. manually download and install(via commands)

I am sharing steps below with terminal command run screenshots that how to install laravel on unbuntu lamp.

1. Via Laravel Installer :-

laravel installer is a new method to install added for laravel 5. it’s much faster method than installing via Composer.

# download installer
  sudo composer global require "laravel/installer=~1.1"
#setting up path
export PATH="~/.composer/vendor/bin:$PATH" 
# change dir where to install
 sudo cd /var/www/html/
# download and installing
sudo laravel new laravelnew
# giving permission
sudo chmod -R 777 laravelnew

How to install laravel on ubuntu lamp

2. Via Composer :-

A. create project command :-

after install composer you can directly install laravel by create-project command and give your destination path where you want to install laravel.

# checking composer is successfully installed
sudo composer
# downloading and install via composer
#composer create-project laravel/laravel --prefer-dist
sudo composer create-project laravel/laravel /var/www/html/laravel3
# setting up writable permission
sudo chmod -R 777 /var/www/html/laravel3

How to install laravel on ubuntu lamp

B. manually download and install(via commands) :-

this is a long method to install laravel in this method we need to download laravel files then extract then move then apply permission and then we need composer install command.

# change directory to /var/www/html/(where i want to create laravel project)
sudo cd /var/www/html/ 
# downloading from github
sudo wget https://github.com/laravel/laravel/archive/master.zip
# unzip downloaded zip
sudo unzip master.zip 
# giving a new name to extract directrory
sudo mv /var/www/html/laravel-master /var/www/html/laravel2
# giving writable permission
sudo chmod -R 777 laravel2
# removing zip file
sudo rm master.zip
# getting project directory where i need to install project
sudo cd laravel2
# installing using composer
sudo composer install

How to install laravel on ubuntu lamp

How to install laravel on ubuntu lamp

Now you are done with how to install laravel on ubuntu lamp. and open url on

http://localhost/yourlaravel and bam.

Now you can enjoy today’s fast php framework. you can get more about this on official site of laravel and see how fast and how many features you are getting. you will really enjoy this php framework.

How to install laravel on ubuntu lamp


推荐阅读:
  1. How To Install Laravel 4 Framework on Ubuntu
  2. Windows Server 2008R2配置ISCS存储

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

server framework software

上一篇:IntelliJ IDEA 2017.1.4 x64配置步骤(介绍)

下一篇:vue多级复杂列表展开/折叠及全选/分组全选实现

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》