1、yum命令
-repolist
-info 类似rpm -qai
-list yum管理的软件及版本,类似于rpm -qa;@开头表示已经安装
-y 当yum交互时,自动提供yes响应
--installroot=/some/path ,将软件安装到/some/path 而不是默认路径
-search
-provodes 从文件去查找软件,类似rpm -qf
-history redo|undo 2 重做/撤销id为2的包。
-grouplist --查看包组
-q 静默模式
-install 安装
2、客户端配置
2.1.配置路径
[root@hadoop102 ~]#touch /etc/yum.repo.d/mysql.repo
2.2.配置文件
[root@hadoop102 ~]#vi /etc/yum.repo.d/mysql.repo #添加以下内容: # Enable to use MySQL 5.7 [mysql57-community] name=MySQL 5.7 Community Server baseurl=http://repo.mysql.com/yum/mysql-5.7-community/el/$releasever/$basearch/ #enabled=1 gpgcheck=0 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-mysql
其中:
name:解释说明
baseurl:URL地址;$releasever:当前OS的发行版的主版本号;$basearch:基础平台,如I386、x86_64等
enabled:1:让软件源被启用;0:软件不启用
gpgcheck:1标识要验证,0标识不验证
gpgkey:验证文件