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

Related Articles

What's next after Chatbots?
Software Development

What's next after Chatbots?

by Jey Geethan | December 08, 2018
Chatbots are programmatically defined workflows that can help any customer to navigate some scenarios. But will chatbots stay there?

[VB.NET] Finding whether its Design Mode or Runtime Mode for Forms
Software Development

[VB.NET] Finding whether its Design Mode or Runtime Mode for Forms

by Jey Geethan | November 06, 2008
Sometimes, while creating controls, either by Inherited Controls or UserControls, we will be required to skip a piece of code depending upon the design time or runtime mode.