How to increase open file descriptors limit in MacOS Sierra / Linux

How to increase open file descriptors limit in MacOS Sierra / Linux

There are times when you want to increase your open file limit in your system
Software Development
by Jey Geethan | April 08, 2019

There are times when you want to increase your open file limit in your system. You can use the following to do so. Here you are setting the soft limit and the hard limit.


# ~/.bash_profile


# change open file descriptors limit
ulimit -n 65536 200000

Jey Geethan

Jey Geethan is a poet, author and an entrepreneur.


Related Articles

Software Development

Top 4 Reasons Why You Should Participate in Hackathons

by Jey Geethan | August 05, 2018
Top 4 Reasons Why You Should Participate in Hackathons
Hackathons help to keep an active engineering culture alive. Learn here why you should participate and may be try to win them
Software Development

How to get informative, color prompts on Mac Terminal or iTerm2

by Jey Geethan | August 14, 2019
How to get informative, color prompts on Mac Terminal or iTerm2
This article talks about how to get color prompts on your terminal and add some informative things like current git branch and distinctive colors for current path, username etc.