And if so, how do we increase it - the named pipes are created using mkfifo command -
Asked
Active
Viewed 4,561 times
4
-
3If 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 03 '11 at 20:32
2 Answers
2
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 ...

aleroot
- 3,180
- 6
- 29
- 37
1
Each end of the pipe uses a file descriptor. On your system check out /proc/sys/fs/file-max.

Zoredache
- 130,897
- 41
- 276
- 420