And if so, how do we increase it - the named pipes are created using mkfifo command -

link|improve this question
3  
If you are suggesting creating so many that you would worry about running into a limit, I would suggest that your system architecture is wrong! You shouldn't need more than a handful. – Caleb Jun 3 '11 at 20:32
feedback

2 Answers

Since everything in linux is a file and fifi named pipes are files, i think there's no maximum number of named pipes ...

However it depend if you want to create a huge number of named pipes in the same directory could be a limit that that is a constraint of some File system ...

link|improve this answer
thats what my conclusion was as well - thanks - – Ryan Oberoi Jun 3 '11 at 20:25
feedback

Each end of the pipe uses a file descriptor. On your system check out /proc/sys/fs/file-max.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.