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

Ruby on Rails Engine - How To Keep Your Engine Migrations Abstracted From Your Host Rails App
Software Development

Ruby on Rails Engine - How To Keep Your Engine Migrations Abstracted From Your Host Rails App

by Jey Geethan | January 16, 2019
Have you ever worked on building a Rails Engine and wanted to keep the models, the migrations and everything inside the engine rather than using a generator to copy paste them into your host Rails App?

[.NET Error] Update requires a valid UpdateCommand when passed DataRow collection with modified rows
Software Development

[.NET Error] Update requires a valid UpdateCommand when passed DataRow collection with modified rows

by Jey Geethan | March 06, 2008
This is an error, with which i was dumbfounded for weeks. But the solution is simple after understanding why it's happening