- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: File Syetem Lay Out - Question .
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
01-17-2007 09:00 AM
01-17-2007 09:00 AM
File Syetem Lay Out - Question .
Need suggetions from you .
This is how we build DB file systems on our Database Servers .These standards are set by our previous sysadmin .
I have few questions in my mind .
/opt/local/xxyyzzz is a file system (100MB)
And all other file system are mounted on this mounted file system.(All are vxfs file systems)
lly oradata is a directory on /opt/local/xxyyzzz file system and Couple of other file systems are getting mounted on to it .
Is this a recommended architecture ? what are the short comings of this lay out ? is there any performance related issues be seen here ?
Your advice will be deeply appreciated .
/opt/local/xxyyzzz
/opt/local/xxyyzzz/backup
/opt/local/xxyyzzz/control001
/opt/local/xxyyzzz/home
/opt/local/xxyyzzz/admin
/opt/local/xxyyzzz/control003
/opt/local/xxyyzzz/control002
/opt/local/xxyyzzz/oradata/arch002
/opt/local/xxyyzzz/oradata/redo001
/opt/local/xxyyzzz/oradata/data006
/opt/local/xxyyzzz/oradata/data002
/opt/local/xxyyzzz/oradata/undo001
/opt/local/xxyyzzz/oradata/data004
~
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2007 09:16 AM
01-17-2007 09:16 AM
Re: File Syetem Lay Out - Question .
It is not clear that you are listing filesystems or simply directories but in general for oracle, at least, several filesystems are a good idea. However, there are times when only one filesystem will suffice for data, indices, redologs, and archives --- but still the executables should be somewhere else. If your data are housed in conventional individual disks (e.g. JBODS) then the more you can scatter your data across multiple filesystems the better but if you are using a modern cache-centric array with high-bandwidth connections then you may find that lumping everything into one filesystem performs almost as well --- and maintenance and backups become easier.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2007 09:26 AM
01-17-2007 09:26 AM
Re: File Syetem Lay Out - Question .
Typically, Oracle filesystems have their mountpoints at root ("/"). For example:
/backup/yoursid
/oraarch/yoursid
/u01/oradata/yoursid/datafile.dbf
/u01/oradata/yoursid/control001.ctl
/u02/oradata/yoursid/undo01.dbf
/u02/oradata/yoursid/control002.ctl
...
The previous sysadmin was probably (incorrectly) following the UNIX convention that locally-installed, optional software resides in /opt/local. However, if this server's "raison dâ être" is to serve as a database server, Oracle datafiles, control files, etc. really aren't optional. What's more, /opt is only intended to contain binaries, not variable data.
Make life easy on yourself and create new mountpoints off of root. Of course, you'll have to perform any house-cleaning (changing absolute paths in scripts, init.ora, Oracle's data dictionary, etc.) associated with the transition.
PCS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2007 11:27 AM
01-17-2007 11:27 AM
Re: File Syetem Lay Out - Question .
/v00 oracle binaries and scripts (50GB)
/v01
/v02
/v03
.
.
and so on are 500GB file systems for data, indexes, redo files.
The nice thing about that - I know longer have to manage their space - they do. They can move the data arounf the v0* filesystems as they see fit.
Except in SAP where it is:
/oracle/
/oracle/
/oracle/
/oracle/
/oracle/
.
.
and so on...where
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2007 02:43 PM
01-17-2007 02:43 PM