CentOSサーバーにパッケージをインストールしたいとしましょう。インストールするパッケージは、MariaDB、Redis、または他のサードパーティのパッケージです。
公式のCentOSリポジトリで見つける方法はありますか?公式リポジトリは次のとおりです。http://mirror.centos.org/centos/7 (間違っている場合は訂正してください)
それに加えて、その情報を取得するのに役立つyumコマンドがありますか?
答え1
yum
設定されたリポジトリ(デフォルトでは公式リポジトリを含む)で利用可能なエントリを通知します。
$ yum search mariadb
======================================================= N/S matched: mariadb =======================================================
mariadb-bench.x86_64 : MariaDB benchmark scripts and data
mariadb-devel.i686 : Files for development of MariaDB/MySQL applications
mariadb-devel.x86_64 : Files for development of MariaDB/MySQL applications
mariadb-embedded.i686 : MariaDB as an embeddable library
mariadb-embedded.x86_64 : MariaDB as an embeddable library
mariadb-embedded-devel.i686 : Development files for MariaDB as an embeddable library
mariadb-embedded-devel.x86_64 : Development files for MariaDB as an embeddable library
mariadb-libs.i686 : The shared libraries required for MariaDB/MySQL clients
mariadb-libs.x86_64 : The shared libraries required for MariaDB/MySQL clients
mariadb-server.x86_64 : The MariaDB server and related files
mariadb.x86_64 : A community developed branch of MySQL
mariadb-test.x86_64 : The test suite distributed with MariaD
$ yum info mariadb
Available Packages
Name : mariadb
Arch : x86_64
Epoch : 1
Version : 5.5.65
Release : 1.el7
Size : 8.7 M
Repo : base/7/x86_64
Summary : A community developed branch of MySQL
URL : http://mariadb.org
License : GPLv2 with exceptions and LGPLv2 and BSD
Description : MariaDB is a community developed branch of MySQL.
: MariaDB is a multi-user, multi-threaded SQL database server.
: It is a client/server implementation consisting of a server daemon (mysqld)
: and many different client programs and libraries. The base package
: contains the standard MariaDB/MySQL client programs and generic MySQL files.
yum list
利用可能なバージョンとそれを提供するリポジトリの簡単な要約を取得するためにも使用できます。
Redisは公式のCentOSリポジトリでは利用できませんが、EPELでは利用できます。
$ sudo yum install -y epel-release
[...]
$ yum info redis
Available Packages
Name : redis
Arch : x86_64
Version : 3.2.12
Release : 2.el7
Size : 544 k
Repo : epel/x86_64
Summary : A persistent key-value database
URL : http://redis.io
License : BSD
Description : Redis is an advanced key-value store. It is often referred to as a data
: structure server since keys can contain strings, hashes, lists, sets and
: sorted sets.
[...]
特定のパッケージの新しいバージョンの良いソースは次のとおりです。ソフトウェアコレクション;例えばマリアデータベース10.3そこで利用可能です。
答え2
定義公式またはサポート含めるリポジトリによって異なります。正確に言えば、公式集中化が明確ではないので、誤解を招くことがあります。オフィスすべてのリポジトリをカバーします。
用語サポートまた、リポジトリによって異なりますが、ここでは共通の理解があるとします。これにより、インストールするすべてがyum install _package_
最新の状態と見なされ、パッケージ管理者がサポートして推奨する必要があります。
これは非常に形式的な視点です。実際の生活では、「公式」リポジトリのパッケージマネージャはより保守的な方針を持つ傾向があります。ほとんどの場合、これは問題が発生しない状況を引き起こしますが、最新の機能に遅れたり、そうでない場合があります。これは、「公式」と見なされない個々のまたはプロジェクト固有のリポジトリにあります。 2つのタイプがぼやけて、時には重なり合うこともあります。
ここで言及されているすべてのものはほとんどすべてのパッケージマネージャに適用され、CentOSにのみ適用されるわけではありません。