- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- What does the following permissions prw-rw-rw mean...
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
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
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
тАО11-19-2001 10:53 AM
тАО11-19-2001 10:53 AM
/bin/compress < /lrg01/export/exp_pipe > /lrg01/export/chprod_fullexp.dmp.Z &
The file doesn't appear to be being compressed and the export fails because of a file being larger than 2G.
We have an identical script running on another machine that works. The only difference is the permissions on the exp_pipe file is prw-rw-rw. I am wondering if this is the cause of my problem. What does the "p" mean and how can I change the permissions on the problem file to
include the "p"
Solved! Go to Solution.
- Tags:
- pipe
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-19-2001 12:11 PM - last edited on тАО04-04-2024 04:24 AM by Sunitha_Mod
тАО11-19-2001 12:11 PM - last edited on тАО04-04-2024 04:24 AM by Sunitha_Mod
SolutionHi Virginia,
Your question would be better served if you posted in the HP-UX forum of the ITRC. Here's the link to that forum:http://forums.itrc.hp.com/cm/
You'll find an hp-ux option there; that's where I'd head if I were you.
Good luck!
Kathy
[Moderator edit: The above link is no longer valid.]
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-19-2001 03:15 PM - last edited on тАО04-04-2024 04:25 AM by Sunitha_Mod
тАО11-19-2001 03:15 PM - last edited on тАО04-04-2024 04:25 AM by Sunitha_Mod
Re: What does the following permissions prw-rw-rw mean and how do I set this permission
That's okay Kathy, I'll handle it.
The p stands for pipe, a special type of file. Suggest you go to www.docs.hp.com and search on the word pipe and read up. There is no good way to change the file *type*.
- regular file
d directory
b block type special file
c character type special file
l symbolic link
p pipe
s socket
Here is a desction of a pipe file
"A pipe provides a method to take output from one process and use it as input to another process. The HPPIPE intrinsic creates a new file type object called pipe for this purpose. It provides a one-way flow of data. After creating a pipe file type object, the HPPIPE intrinsic returns both read-access and write-access file numbers. Related processes can access the pipe.
Data can be written to the write-end and read from the read-end of the pipe. The data is accessed in a first-in-first-out manner, or FIFO.
A pipe file does not have a name associated with it and is not inserted into any directories upon creation. After the final close of a pipe file, the file is deleted. Pipe files are treated as new files. "
[Moderator edit: Removed the broken link. Please refer to https://support.hpe.com/]
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-28-2001 04:13 AM
тАО12-28-2001 04:13 AM
Re: What does the following permissions prw-rw-rw mean and how do I set this permission
to create the pipe, issue the command
mknod exp_pipe p
to change the permissions to rw-rw-rw- issue
chmod 666 exp_pipe
The Oracle export should write to this outputfile (exp_pipe) while the compress is reading from it and writing the finaly compressed file.
Since 2GB limit should not really be a problem today, you should check out "ulimit" in the shell that does the export and may be adjust it.
Hope this helps
Volker
- Tags:
- mknod
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-30-2001 10:10 AM
тАО12-30-2001 10:10 AM
Re: What does the following permissions prw-rw-rw mean and how do I set this permission
to me it seems everything is ok about the pipe, but the file-system where you are to store the output of that command line, needs to be mounted with the option "-o largefiles" to be able to store a file bigger than 2GB!
You get the filesystem's name wou are working in with:
devnm $PWD
and then you can "grep" for that device name in "/etc/mnttab" (a file which does contain the information about all currently mounted filesystems).
I guess there is no "largefiles" option, yet.
Hence you will have to "umount" that filesystem, modify the "/etc/fstab" (that's the file containing the definitions what to mount and how to do it) and then you can mount it again with "mount -a" (you have to be "root" to this, of course).
HTH,
Wodisc