- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- RPM configuration
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
Forums
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
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
05-09-2007 08:53 PM
05-09-2007 08:53 PM
RPM configuration
I want to do thing related to installing my RPMs, i want to make a cashing server that take the RPMs from RHN site and then from it i need to install my RPMs on the servers , how can i configure my server and client to do this process, another thing how can i make a server an ftp server with anonymous login ( from where can i get the password for this user ).kindly details for these issues
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-09-2007 09:27 PM
05-09-2007 09:27 PM
Re: RPM configuration
read the info in this link:
http://www.phptr.com/articles/article.asp?p=440160&seqNum=3&rl=1
as for anonymous ftp user:
if you install vsftpd the anonymous user is enabled by default (anonymous_enable=YES).
You don't need to know the password. Every string will fit, although many times the string must be in the form of e-mail (vip@domain.com will also work).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-10-2007 01:25 AM
05-10-2007 01:25 AM
Re: RPM configuration
1. setup a server for the updates.
2. create a directory to sore the rpms. For example /rhn/updates. Make sure you have plenty of space to hold the updates.
3. run the following:
# up2date --showall | xargs up2date -k /rhn/updates --get
This will download updates from rhn and place them in /var/spool/up2date.
4. move the updates to /rhn/updates:
# find /var/spool/up2date -type f -iname '*.rpm' -exec mv {} /rhn/updates \;
2. setup NFS on the server and export /rhn/updates.
3. mount the nfs directory on your other machines, cd to the directory, then run
# rpm -Fvh --aid *.rpm
This will upgrade any installed packages and install their dependencies.
Once you have the hang of it, this could all be scripted and run via cron.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-11-2007 02:43 AM
05-11-2007 02:43 AM
Re: RPM configuration
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-13-2007 01:30 AM
05-13-2007 01:30 AM