LoginSignup
0
0

More than 3 years have passed since last update.

ElasticSearchサーバ、Sparkサーバのlimits.confの修正

Last updated at Posted at 2020-05-16

はじめに

ElasticSearchサーバ、Sparkサーバの構築時、limit 1024は足りない場合があります。

変更

sudo vi /etc/security/limits.conf

*  soft  nproc  65535
*  hard  nproc  65535
*  soft  nofile 65535
*  hard  nofile 65535

再起動

sudo reboot

確認

ulimit -n

以上

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0