- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: File Size Limit In 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
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-04-2005 09:35 AM
08-04-2005 09:35 AM
File Size Limit In HP-UX.
I have MYSQL database file in HP-UX 11i Operating System, wich size is 2G.B.
I want to add more records to that file to become more than 2G.B. in size.
How can I do for this problem?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-04-2005 09:37 AM
08-04-2005 09:37 AM
Re: File Size Limit In HP-UX.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-04-2005 09:37 AM
08-04-2005 09:37 AM
Re: File Size Limit In HP-UX.
do you activate the largefiles :
# fsadm
return largefiles?
if not then
# fsadm -F vxfs -o largefiles
DM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-04-2005 01:10 PM
08-04-2005 01:10 PM
Re: File Size Limit In HP-UX.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-04-2005 06:05 PM
08-04-2005 06:05 PM
Re: File Size Limit In HP-UX.
You can achive this by enabling largefile options online and enabling the options in /etc/fstab file so that everytime the file system is mounted the options is enabled by itself.
Make these changes
#fsadm -F vxfs -o largefiles /mount_point
Change entry in /etc/fstab for this file system . Please note that if the changes are not made to /etc/fstab and largefile option is enabled for the file system then it will not mount on next attempt by itself.
HTH,
Devender
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-15-2005 04:18 AM
08-15-2005 04:18 AM
Re: File Size Limit In HP-UX.
I have MYSQL database file in HP-UX 11i Operating System, wich size is 5G.B.
I want to add more records to that file to become more than 5G.B. in size.
What can I do for this problem?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-15-2005 04:32 AM
08-15-2005 04:32 AM
Re: File Size Limit In HP-UX.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-15-2005 05:53 AM
08-15-2005 05:53 AM
Re: File Size Limit In HP-UX.
I have MYSQL database file in HP-UX 11i Operating System, wich size is 5G.B.
I want to add more records to that file to become unlimited size.
What can I do for this problem?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-15-2005 06:14 AM
08-15-2005 06:14 AM
Re: File Size Limit In HP-UX.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-15-2005 06:19 AM
08-15-2005 06:19 AM
Re: File Size Limit In HP-UX.
Go through the following thread.There is your answer.
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=90584
Regards,
Syam
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-15-2005 04:17 PM
08-15-2005 04:17 PM
Re: File Size Limit In HP-UX.
http://www.docs.hp.com/hpux/onlinedocs/os/lgfiles4.pdf
contains all the information you need.
If you want your MYSQL database file to extend beyond 2GB, you must configure your file system to support Largefiles!
Large files is a technology that must be explicitly enabled. A system will not support large files just because it has been updated to a release of HP-UX that supports large files. The advantage of this is that if large
files are not needed, then they do not need to be enabled on the system and everything will continue to work as it has in the past.
do you need any further clarifications?
kind regards
yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-15-2005 04:38 PM
08-15-2005 04:38 PM
Re: File Size Limit In HP-UX.
There are two things which can be involved in this. First you need to look for free space for adding datafile and secondly you need to add that using your MYSQL database procedure.( which I am not aware of)
You can find out the free space in the file system using "bdf" command. If you have free space in the file system you can use MYSQL documentation to add data file.
But in any case it can not be of unlimited size. You can add another data file of say 5GB,10GB or even more.
If you do not have free space then either it can be allocated from unallocated space or if you do not have unallocated space then you need to add more storage space by adding hardware.
HTH,
Devender