- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- External Disks & Remote Mount
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
08-08-2004 06:41 PM
08-08-2004 06:41 PM
I am having 4 External SCSI disk connected to
one of my servers I want to create a
filesystem on ony one them and then want to
mount it on another system so as to create
dbspace for informix on that FS.
How can I do that ??
Thanks,
Amit
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-08-2004 06:58 PM
08-08-2004 06:58 PM
Re: External Disks & Remote Mount
I am not an expert on this hence you may have to wait for the experts to get back to you on this. I am sure they will suggest many ways to do this. But while waiting i would suggest that you explore the following possibilities
1. Use of NFS
2. Is this a Cluster?
Having said this, i think it really is not a good idea to look into NFS and make this file system available to other system as you may have to look into a lot of other conditions like IO etc
Secondly if these systems (with local disk) and the system on which you want to make this available are clustered. Then there should be a way for you to make these SCSI disks be seen on the other system
regards
Mobeen
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-08-2004 06:59 PM
08-08-2004 06:59 PM
Re: External Disks & Remote Mount
newfs -F
mount the pariticular fs with a new mount point. Create the entry in /etc/fstab file
It will mount when ever system restarts.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-08-2004 07:01 PM
08-08-2004 07:01 PM
Re: External Disks & Remote Mount
create a new vg using these pv's
create one or more Lvols that you reauire, and hten creat a file system on them.
Mount these file systems to a mount point on your server,include them in /etc/fstab for automounting at server reboot time and copy over the data you wish to be on them.
Then set up the /etc/exports file to have the file systems exported, and ensure you have your server configured to have NFS Server started at boot time, by configuring /etc/rc.config.d/nfsconf
and then start the nfs server side by doing
/sbin/init.d/nfs.server start
Then on the remote system mount the file system(s) you need
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-08-2004 07:20 PM
08-08-2004 07:20 PM
SolutionOn your System1
1. Create PV as suggested. pvcreate
2. Create VG. vgcreate vgname pvname
3. Create LV lvcreate
4. Create Filesystems. newfs
Mount filesystems
Now you filesystems are ready.
5. Modify /etc/exports file see man exports
6. Modify /etc/rc.config.d/nfsconf file and set: NFS_CLIENT=1,NFS_SERVER=1,NUM_NFSD=16, NUM_NFSIOD=16 variables
7. /sbin/init.d/nfs.core start
8. /sbin/init.d/nfs.server start
9. On another systems also you need to modify /etc/rc.config.d/nfsconf as
NFS_CLIENT=1,NFS_SERVER=0, NUM_NFSD=16, NUM_NFSIOD=16 and then do
/sbin/init.d/nfs.core start
/sbin/init.d/nfs.client start
There you are.
Hope that helps.
Regards,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-08-2004 08:06 PM
08-08-2004 08:06 PM
Re: External Disks & Remote Mount
Thanks for 10 points... but as i told you earlier also it would be better to give points to all those who helped and you have choice of 1-10 scale.
Don't take it otherwise... forum is for learning with fun and thrill.
Keep foruming..
regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-09-2004 01:19 AM
08-09-2004 01:19 AM
Re: External Disks & Remote Mount
Bill Hassell, sysadmin