- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Yum update from Local Repository
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-17-2012 06:10 AM
04-17-2012 06:10 AM
We have a RHEL 5.X server A which is behind a firewall. This needs to be patched but because there is no internet connectivity to this server we are planning to download updates on the RHEL 5.X server B (which will be connected to internet) and then copy these updates to server A.
Now my question is what are the steps to install these updates after i copy the rpms to some location say /yum/Packages on server A.
Solved! Go to Solution.
- Tags:
- yum
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2012 01:17 PM - edited 04-18-2012 01:20 PM
04-18-2012 01:17 PM - edited 04-18-2012 01:20 PM
SolutionTry this link:
RHEL – local repository
http://fojta.wordpress.com/2010/03/17/rhel-local-repository/
How to Setup a Local Redhat 5 Update Repository
http://www.spkaa.com/how-to-setup-a-local-redhat-5-update-repository
How to mirror RHN behind your firewall
http://kenfallon.com/how-to-mirror-rhn-behind-your-firewall/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-26-2012 01:08 PM
04-26-2012 01:08 PM
Re: Yum update from Local Repository
copy your downloaded patches to a location on server. e.g. /patches
If not already done run createrepo
#>createrepo /patches
register this repo with yum by editing /etc/yum.repos.d/local.repo (call it anything you like)
the file should look like this (you can name things as you wish)
[Local Repo]
name=5.7 Local Repo created 122211
baseurl=file:///patches
gpgcheck=1
enabled=1
cleanup yum
#>yum clean all
check your repo registration
yum repolist
(it should only show the one you just created above)
yum check-update
(you should see a list of all the updates you just copied as applicable)
then update your system
yum update
You are done....