Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

修复离线rpm包安装方式,解决各个rpm包先后依赖安装顺序不一致导致安装失败的问题。 #530

Merged
merged 1 commit into from
Aug 18, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion install/offline.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,9 @@ exiting because "Download Only" specified
```
#### 复制到目标服务器之后进入文件夹安装(C-N)

* 离线安装时,必须使用rpm命令不检查依赖的方式安装
```bash
yum install *.rpm
rpm -Uvh *.rpm --nodeps --force
```

#### 锁定软件版本(C-N)
Expand Down
Loading