DigitalOcean Cloud Config: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 16: | Line 16: | ||
systemctl status httpd | systemctl status httpd | ||
== Update PHP 7.0 from IUS == | == Update PHP 7.0 from [https://ius.io/ IUS] == | ||
cd ~ | cd ~ | ||
curl 'https://setup.ius.io/' -o setup-ius.sh | curl 'https://setup.ius.io/' -o setup-ius.sh | ||
Line 32: | Line 32: | ||
== Install Python 3.6 from IUS == | == Install Python 3.6 from [https://ius.io/ IUS] == | ||
# centos7.iuscommunity.org | # centos7.iuscommunity.org | ||
yum -y install https://centos7.iuscommunity.org/ius-release.rpm | yum -y install https://centos7.iuscommunity.org/ius-release.rpm |
Revision as of 20:33, 30 November 2017
Initial Config
- Create a Droplet of Centos7
- Add SSH before create Croplet
- Add domain
YUM Update
sudo su yum -y update yum -y install yum-utils yum -y groupinstall development
Install PHP 5.4
yum install httpd yum install php apachectl restart systemctl status httpd
Update PHP 7.0 from IUS
cd ~ curl 'https://setup.ius.io/' -o setup-ius.sh bash setup-ius.sh yum remove php-cli mod_php php-common yum install mod_php70u php70u-cli php70u-mysqlnd apachectl restart systemctl status httpd
mkdir -p /var/www/html/test # write phpinfo() code here vi /var/www/html/test/test.php
Install Python 3.6 from IUS
# centos7.iuscommunity.org yum -y install https://centos7.iuscommunity.org/ius-release.rpm yum -y install python36u
# check your python version python3.6 -V # install pip for Python 3.6 yum -y install python36u-pip yum -y install python36u-devel
# configure virtual env cd /opt/;mkdir dev pro;cd dev python3.6 -m venv venv source venv/bin/activate # check version of python & pip pip -V python -V deactivate