시스템 제한 사항을 어떻게 고쳐야 합니까?

museok의 이미지

ulimit -a를 하면 나오는 사항 중에서 open files의 수를 고치려 합니다.
kldp문서를 하나 찾아서 거기에 나온데로 /usr/include/linux/fs.h의 NR_OPEN과 NR_FILE을 고치고 /usr/include/linux/limits.h의 NR_OPEN과 OPEN_MAX를 고치고 커널 컴파일을 다시 하였는데 여전히 ulimit -a를 해보면 똑같이 나오는 군요.

sysctl -a를 했을때
fs.file-max = 65536
fs.file-nr = 600 0 65536
이렇게 나오기는 하나
ulimit -a을 하면 open files는 기본값이 1024가 나옵니다.
그리고 간단한 소켓 서버를 짜서 테스트 해본 결과 1024개 이상 fd를 열지 못하는 군요..

어떻게 해야하는지요?

yeppiguy의 이미지

ulimit -n 2048
하믄 2048로 open file 갯수를 조절할 수 있습니다. 단 root권한으로요.
다시 ulimit -a 하시면 변경사항을 확인하실 수 있습니다.

bbok의 이미지

museok wrote:
ulimit -a를 하면 나오는 사항 중에서 open files의 수를 고치려 합니다.
kldp문서를 하나 찾아서 거기에 나온데로 /usr/include/linux/fs.h의 NR_OPEN과 NR_FILE을 고치고 /usr/include/linux/limits.h의 NR_OPEN과 OPEN_MAX를 고치고 커널 컴파일을 다시 하였는데 여전히 ulimit -a를 해보면 똑같이 나오는 군요.

sysctl -a를 했을때
fs.file-max = 65536
fs.file-nr = 600 0 65536
이렇게 나오기는 하나
ulimit -a을 하면 open files는 기본값이 1024가 나옵니다.
그리고 간단한 소켓 서버를 짜서 테스트 해본 결과 1024개 이상 fd를 열지 못하는 군요..

어떻게 해야하는지요?

getrlimit(), setrlimit()함수를 이용하면 될듯 합니다.
Man 페이지에 보니 다음과 같은 내용이 있네요..

Quote:

RLIMIT_NOFILE
One more than the maximum value that the system
may assign to a newly created descriptor. This
limit constrains the number of file descriptors
that a process may create.

@.@ 어제처럼, 오늘 처럼, 내일 처럼.

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.