- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- linux yum update repository on hp-ux
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
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
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
тАО07-21-2009 04:12 AM
тАО07-21-2009 04:12 AM
i have a depot/web server where i keep a software repository for my HP-UX servers and an web server set-up to serve kickstart and other linux files, but i would like to try and see if it is possible to set-up a yum repo on the ux server.
is there anybody who has done this or has any thoughts on process to achieve.
regards
andrew
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-21-2009 04:15 AM
тАО07-21-2009 04:15 AM
SolutionYes you can store a yum repository on an HP-UX server. You need to have hpws, hp web suite installed to provide a web/httpd server on which to host the data.
http://software.hp.com
Search for hpws
Download and install the depot.
I have done this.
In order to run the create repo command correctly, I set the space where the repo was to sit as an NFS share and gave the Linux machine building the repo read-write access.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-21-2009 04:25 AM
тАО07-21-2009 04:25 AM
Re: linux yum update repository on hp-ux
can you give some advice on how to achieve this, never done it.
i have already set-up the apache web server on hp-ux for kickstart purposes will that be sufficeint.
obviosly nfs no problem.
so do i just run commands from linux server having mounted nfs share.
regards
andrew
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-21-2009 05:15 AM
тАО07-21-2009 05:15 AM
Re: linux yum update repository on hp-ux
1) http://software.hp.com search for hpws
Download and install the latest version that is supported on your OS. I use 2.26 for mine, because I use HP-UX 11.11 and hpws v3 is not supported on my very old systems.
2) vi /etc/exports
/share *(rw)
exportfs -av
I have a mount point called /share which I have on shared storage for this purpose.
To run commands such as createrepo you need to have NFS access to a shared storage point
3) From linux
mkdir /share/
mount -t nfs 10.0.0.80:/share /share
10.0.0.80 is the ip address of my D class HP-UX box.
At that point you can run commands such as create repo.
If you need assistance with creation of the repo itself, indicate that and I will toss in a few links and commands for you to work with.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-21-2009 10:39 PM
тАО07-21-2009 10:39 PM
Re: linux yum update repository on hp-ux
i am using V3 so i will set-up dfstab and the share is no issue i will set-up a virtual linux server to create repo (although never created repo before so as much info as poss would be good) the main question i still have is will apache be sufficient as i think that all i need to do is make the finished repo available via https connection and i can surely do this with apache.
is this correct or am i missing something, i can install hpws if really necassary but would prefer to limit software to essential for purpose.
regards
andrew
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-22-2009 02:26 AM
тАО07-22-2009 02:26 AM
Re: linux yum update repository on hp-ux
apache is sufficient.
The apache code used in Red Hat is nearly identical to that of HP-UX.
The only thing you need the Linux server for is the createrepo command which will not work on HP-UX.
You should please report results. This would be a great white paper.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-22-2009 03:44 AM
тАО07-22-2009 03:44 AM
Re: linux yum update repository on hp-ux
regards
Andrew