Ubuntu Linux14.04LTSにPHP7をインストールする方法
PHP は、Web開発用に設計されたサーバー側スクリプト言語ですが、汎用プログラミング言語としても使用されます。もともとは1994年にラスマスラードルフによって作成されたPHP リファレンス実装は現在、 PHPによって作成されています グループ。最新バージョンのPHPはPHP7であり、PHPバージョン5.6よりも2倍高速なパフォーマンスと50%優れたメモリ消費を提供します。この記事では、「UbuntuLinuxにPHP7をインストールする方法」について説明します。
PHP7をインストールする前に、 ondrej / phpというPPAをインストールする必要があります。 。これにより、PHPバージョン5.6と7.0を同時インストールできます。
同時インストール可能なPHP5.6+7.0のPPAの構成
PPAを構成するには、次のコマンドを使用します–
$ sudo add-apt-repository ppa:ondrej/php
サンプル出力は次のようになります–
Co-installable PHP versions: PHP 5.6, PHP 7.0 and batteries included. You can get more information about the packages at https://deb.sury.org For PHP 5.6 use: ppa:ondrej/php5-5.6 For PHP 5.5 use: ppa:ondrej/php5 For PHP 5.4 use: ppa:ondrej/php5-oldstable BUGS & FEATURES: This PPA now has a issue tracker: https://deb.sury.org/pages/bugreporting.html PLEASE READ: If you like my work and want to give me a little motivation, please consider donating: https://deb.sury.org/pages/donate.html WARNING: add-apt-repository is broken with non-UTF-8 locales, see https://github.com/oerdnj/deb.sury.org/issues/56 for workaround: # LC_ALL=C.UTF-8 add-apt-repository ppa:ondrej/php .............................
パッケージインデックスを更新するには、次のコマンドを使用します–
$ sudo apt-get update
サンプル出力は次のようになります–
Ign https://dl.google.com stable InRelease Get:1 https://security.ubuntu.com trusty-security InRelease [65.9 kB] Ign https://extras.ubuntu.com trusty InRelease Hit https://ppa.launchpad.net trusty InRelease Ign https://in.archive.ubuntu.com trusty InRelease Get:2 https://extras.ubuntu.com trusty Release.gpg [72 B] Hit https://dl.google.com stable Release.gpg Hit https://ppa.launchpad.net trusty InRelease Hit https://dl.google.com stable Release Hit https://extras.ubuntu.com trusty Release Get:3 https://in.archive.ubuntu.com trusty-updates InRelease [65.9 kB] Hit https://dl.google.com stable/main amd64 Packages Get:4 https://ppa.launchpad.net trusty InRelease [20.9 kB] Hit https://extras.ubuntu.com trusty/main Sources Get:5 https://security.ubuntu.com trusty-security/main Sources [106 kB] Hit https://extras.ubuntu.com trusty/main amd64 Packages Hit https://extras.ubuntu.com trusty/main i386 Packages ..................................
すべてのPHPパッケージを一覧表示するには、次のコマンドを使用します–
$sudo apt-cache search php7
サンプル出力は次のようになります–
php7.0-common - documentation, examples and common module for PHP libapache2-mod-php7.0 - server-side, HTML-embedded scripting language (Apache 2 module) php7.0-cgi - server-side, HTML-embedded scripting language (CGI binary) php7.0-cli - command-line interpreter for the PHP scripting language php7.0-phpdbg - server-side, HTML-embedded scripting language (PHPDBG binary) php7.0-fpm - server-side, HTML-embedded scripting language (FPM-CGI binary) libphp7.0-embed - HTML-embedded scripting language (Embedded SAPI library) php7.0-dev - Files for PHP7.0 module development php7.0-curl - CURL module for PHP php7.0-enchant - Enchant module for PHP php7.0-gd - GD module for PHP php7.0-gmp - GMP module for PHP php7.0-imap - IMAP module for PHP php7.0-interbase - Interbase module for PHP php7.0-intl - Internationalisation module for PHP php7.0-ldap - LDAP module for PHP php7.0-mcrypt - libmcrypt module for PHP php7.0-readline - readline module for PHP php7.0-odbc - ODBC module for PHP php7.0-pgsql - PostgreSQL module for PHP php7.0-pspell - pspell module for PHP php7.0-recode - recode module for PHP php7.0-snmp - SNMP module for PHP php7.0-tidy - tidy module for PHP php7.0-xmlrpc - XMLRPC-EPI module for PHP php7.0-xsl - XSL module for PHP (dummy) php7.0 - server-side, HTML-embedded scripting language (metapackage) php7.0-json - JSON module for PHP php-all-dev - package depending on all supported PHP development packages php7.0-sybase - Sybase module for PHP php7.0-sqlite3 - SQLite3 module for PHP php7.0-mysql - MySQL module for PHP php7.0-opcache - Zend OpCache module for PHP php7.0-bz2 - bzip2 module for PHP php7.0-bcmath - Bcmath module for PHP php7.0-mbstring - MBSTRING module for PHP php7.0-soap - SOAP module for PHP php7.0-xml - DOM, SimpleXML, WDDX, XML, and XSL module for PHP php7.0-zip - Zip module for PHP
PHP7をインストールするには、次のコマンドを使用します–
$ sudo apt-get install php7.0
サンプル出力は次のようになります–
Reading package lists... Done Building dependency tree Reading state information... Done The following packages were automatically installed and are no longer required: libapache2-mod-php5 linux-headers-4.2.0-27 linux-headers-4.2.0-27-generic linux-image-4.2.0-27-generic linux-image-extra-4.2.0-27-generic linux-signed-image-4.2.0-27-generic Use 'apt-get autoremove' to remove them. The following extra packages will be installed: libssl1.0.2 php-common php7.0-cli php7.0-common php7.0-fpm php7.0-json php7.0-opcache php7.0-readline Suggested packages: php-pear The following packages will be REMOVED: php5 php5-cli php5-readline The following NEW packages will be installed: libssl1.0.2 php-common php7.0 php7.0-cli php7.0-common php7.0-fpm php7.0-json php7.0-opcache php7.0-readline 0 upgraded, 9 newly installed, 3 to remove and 3 not upgraded. Need to get 4,383 kB of archives. After this operation, 8,056 kB of additional disk space will be used. Do you want to continue? [Y/n] y ................................
NginxとPHP7を構成するには、次のコマンドを使用します–
$ sudo vi nginx.conf
次のようにコードを追加します-
# Pass all .php files onto a php-fpm/php-fcgi server. location ~ [^/]\.php(/|$) { fastcgi_split_path_info ^(.+?\.php)(/.*)$; if (!-f $document_root$fastcgi_script_name) { return 404; } fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_pass unix:/run/php/php7.0-fpm.sock; fastcgi_index index.php; include fastcgi_params; }を含める
ファイルを保存して閉じます。nginxサーバーをリロードするには、次のコマンドを使用します–
$ sudo service nginx reload
サンプル出力は次のようになります–
* Reloading nginx configuration nginx [ OK ]
リロードする前にnginx 。nginxを確認する必要があります Linuxシステムにインストールされているかどうか。そうでない場合は、次のようにインストールします-
$ sudo apt-get install -y nginx
サンプル出力は次のようになります–
Reading state information... Done The following packages were automatically installed and are no longer required: libapache2-mod-php5 linux-headers-4.2.0-27 linux-headers-4.2.0-27-generic linux-image-4.2.0-27-generic linux-image-extra-4.2.0-27-generic linux-signed-image-4.2.0-27-generic Use 'apt-get autoremove' to remove them. The following extra packages will be installed: nginx-common nginx-core Suggested packages: fcgiwrap nginx-doc The following NEW packages will be installed: nginx nginx-common nginx-core 0 upgraded, 3 newly installed, 0 to remove and 3 not upgraded. Need to get 349 kB of archives. After this operation, 1,297 kB of additional disk space will be used. Get:1 https://in.archive.ubuntu.com/ubuntu/ trusty-updates/main nginx-common all .............................
nginxがすでにLinuxにインストールされている場合は、上記のコマンドを使用してnginxをリロードします。新しいPHP7のインストールをテストするには、/ var / www /html/ディレクトリにtest.phpというファイルを作成します。
test.php このようにする必要があります–
<?php phpinfo(); ?>
ファイルを保存して閉じます。次のように実行します–
https://localhost/test.php
おめでとう!これで、「Ubuntu Linux14.04LTSにPHP7をインストールする方法」がわかりました。これらのタイプのコマンドについては、次のLinuxの投稿で詳しく説明します。読み続けてください!
-
ArchLinuxをインストールする方法
UbuntuやLinuxMintとは異なり、Arch LinuxはローリングリリースのLinuxディストリビューションです。つまり、一度インストールするだけで、最新バージョンに継続的に更新されます。また、システムにインストールするものを完全に制御できる最低限のディストリビューションでもあります。何よりも優れているのは、Linuxコミュニティで最高の1つであるArchwikiです。 Arch Linuxについて注意すべきことの1つは、そのインストールプロセスです。気弱な人向けではありません。システムにArchLinuxをインストールしたい場合は、このガイドでインストール方法を説明します。 はじ
-
Windows 10 または Windows 11 に Ubuntu をインストールする方法
Windows 10 または Windows 11 に Ubuntu Linux をインストールしますか?心配しないでください。あなたは正しい場所にいます。 驚くかもしれませんが、Windows オペレーティング システムに Ubuntu をインストールして実行するための唯一の普遍的な方法はありません。実際、この記事では 3 つのアプローチを紹介します。 Linux 用の Windows サブシステムで Ubuntu を実行したり (Windows で Linux コマンドを実行する方法。詳しくは以下で説明します)、USB スティックから直接実行したり、私の個人的なお気に入りの 1 つである