changing file descriptors on solaris OS
Changing ulimit file descriptors:
change /etc/profile and add
ulimit -n 1024
and /etc/system
# Hard limit on file descriptors for single process
set rlim_fd_max = 2048
# Soft limit on the file descriptors for a single process
set rlim_fd_cur = 1024
change /etc/profile and add
ulimit -n 1024
and /etc/system
# Hard limit on file descriptors for single process
set rlim_fd_max = 2048
# Soft limit on the file descriptors for a single process
set rlim_fd_cur = 1024
Comments
Post a Comment