where to install laravel in ubuntu code example

Example 1: how to install redis in ubuntu

sudo apt update
sudo apt install redis-server

sudo nano /etc/redis/redis.conf

# change "supervised no" to "supervised systemd" 
supervised systemd

sudo systemctl restart redis.service

sudo systemctl status redis

redis-cli

Example 2: how to install soapui on ubuntu

1- Download open source SOAPUIhttps://www.soapui.org/downloads/latest-release.html
2- Select “Linux Installer (64-bit)” – Adjust accordingly.
3- Click on Download.
4- Once it is download, chmod 755 SoapUI-x64-5.2.1.sh
5- Then run it: ./SoapUI-x64-5.2.1.sh
6- A pop-up will open. Accept all the defaults and follow the wizard to get it installed.
7- It will be installed by default under: $HOME/SmartBear/SoapUI-5.2.1/bin/SoapUI-5.2.1
8- Select to open it at the end or double click the “SoapUI 5.2.1.desktop” icon at the Des

Example 3: what are the ubuntu packages required for laravel to be installed

sudo apt install php7.2-common php7.2-cli php7.2-gd php7.2-mysql php7.2-curl php7.2-intl php7.2-mbstring php7.2-bcmath php7.2-imap php7.2-xml php7.2-zip

Example 4: laravel install ubuntu

sudo systemctl status apache2

Tags:

Php Example