54
55

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

CentOS7.0 yum外部リポジトリまとめ(2015/03/04版)

Last updated at Posted at 2014-07-08

##yumリポジトリのインストール
###RPMforge
######インストール

rpm --import http://apt.sw.be/RPM-GPG-KEY.dag.txt
rpm -ivh http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.3-1.el7.rf.x86_64.rpm

######インストール確認

rpm -q rpmforge-release

######ミラーサイトが404エラーを返す場合
現状、fastestmirror が有効の場合 RPMforge でミラーサイトが404エラー返すことがあるので、
RPMforgeを導入したい場合、ミラーサイトが出揃うまではfastestmirror を無効にしておいたほうがよさげです。

/etc/yum/pluginconf.d/fastestmirror.conf
[main]
#enabled=1
enabled=0

###EPEL
######インストール

rpm --import http://dl.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-7
rpm -ivh http://ftp-srv2.kddilabs.jp/Linux/packages/fedora/epel/7/x86_64/e/epel-release-7-5.noarch.rpm

######インストール確認

rpm -q epel-release

###ELRepo
######インストール

rpm --import https://www.elrepo.org/RPM-GPG-KEY-elrepo.org
rpm -ivh http://www.elrepo.org/elrepo-release-7.0-2.el7.elrepo.noarch.rpm

######インストール確認

rpm -q elrepo-release

###Remi
######インストール

rpm --import http://rpms.famillecollet.com/RPM-GPG-KEY-remi
rpm -ivh http://rpms.famillecollet.com/enterprise/remi-release-7.rpm

######インストール確認

rpm -q remi-release

######PHPのインストールバージョンの選択
PHP 5.4.x をインストールするには、remi リポジトリ指定します。
PHP 5.5.x をインストールするには、remi-php55 リポジトリ指定します。
PHP 5.6 をインストールするには、remi-php56 リポジトリ指定します。
※2014/07/09現在 PHP5.6は開発版で、安定版は5.5.14 になります。
http://jp2.php.net/manual/en/migration56.php

yum --enablerepo=remi-php55 install php
54
55
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
54
55

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?