YumインストールNginx+NodeJs+php
1373 ワード
NodeJsバイナリパッケージのインストール版
文書
Centos
文書
yumソース追加CentOS 6.5のepelとremiソースを設定します.
文書
Centos
#curl --silent --location https://rpm.nodesource.com/setup_6.x | bash -
#yum install -y gcc-c++ cmake
#yum install -y nodejs
NRBC文書
To set up the yum repository for RHEL/CentOS, create the file named /etc/yum.repos.d/nginx.repo with the following contents:
[nginx]
name=nginx repo
baseurl=http://nginx.org/packages/OS/OSRELEASE/$basearch/
gpgcheck=0
enabled=1
Replace “OS” with “rhel” or “centos”, depending on the distribution used, and “OSRELEASE” with “5”, “6”, or “7”, for 5.x, 6.x, or 7.x versions, respectively.
phpyumソース追加CentOS 6.5のepelとremiソースを設定します.
# rpm -Uvh http://ftp.iij.ad.jp/pub/linux/fedora/epel/6/x86_64/epel-release-6-8.noarch.rpm
# rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm
以下はCentOS 7.0のソースです.# yum install epel-release
# rpm -ivh http://rpms.famillecollet.com/enterprise/remi-release-7.rpm
yum listコマンドを使用してインストール可能なパッケージを確認します.# yum list --enablerepo=remi --enablerepo=remi-php56 | grep php
PHP 5.6 yumソースの設置が終わりました.次はPHP 5.6を設置します.# yum install --enablerepo=remi --enablerepo=remi-php56 php php-opcache php-devel php-mbstring php-mcrypt php-mysqlnd php-fpm php-gd -y
PHPコマンドでバージョンを確認します.# php --version