[재질문] execv 와 bind 관련 문제...

익명 사용자의 이미지

안녕하세요..
저는 소켓(25) 로 돌고 있는 데몬을 만들었습니다.

그리고

9 void sig_hangup(int signum)
10 {
11 cout << "Restarting...." << '\n';
12 execv(argv[0], argv);
13 cout << "Could not restart" << '\n';
14 abort();
15 }

이렇게 해서 재시동 되고 해놓고

이것은 웹에서.. 작동시키게 끔 되어 있습니다.
system("killall -HUP $PROG"); <- 펄로 만든들어진 문구...

이렇게 하고 나면 재시동은 되는 데 소켓이 다시 bind 를 못합니다.

제 생각에는 정지된 소켓이 25 번 포트를 잠시 점유하고 있어서
새로운 프로세스가 다시 25 번을 바인드하지 못하는 것 같기도 하고..
(어디까지 제 생각입니다만... )
이럴 경우 어디에 문제가 있다고 보십니까?

끝까지 읽어 주셔서 감사합니다.

'배성남'님이 보내주신 링크에 보면 ....

"setsockopt를 사용하여 socket reuse flag를 Set하면 간단하게 위의
문제가 해졀 되지여. "

라고 되어 있었습니다.

하지만 제 소스에는 ..
아래와 같이 setsockopt 가 설정되어 있습니다.
하지만 그 아래 bind 에서 자꾸 -1 을 반환합니다.

if (setsockopt (sd, SOL_SOCKET, SO_REUSEADDR, (char *)&opt, sizeof
(opt)) < 0)
throw Exception("(SockeServer fail-to-set-REUSEADDR)");

for (int i=4; i >0; i--) {
rr = bind (sd, (struct sockaddr*)&server_addr, sizeof(struct
sockaddr));

참고로 시그널 핸들러 부분은 ..

struct sigaction act;
bzero(&act, sizeof(act));
act.sa_handler = sig_hangup;
act.sa_flags = SA_RESTART | SA_NOMASK;

--------------------------------------------

void sig_hangup(int signum)
{
cout << "Restarting...." << '\n';
execv(argv[0], argv);
cout << "Could not restart" << '\n';
abort();
}

이렇게 처리했습니다.

끝까지 읽어 주셔서 감사합니다.

익명 사용자의 이미지

음.. close 안하신거 같은..

#include
#include
#include
#include
#include
#include
#include
#include
#include

int port,pid,sockfd;
char *progname,**progargv;

void sig_hup(int signum) {
printf("receiving HUP signal ...\n");
close(sockfd);
execv(progname,progargv);
}

int main(int argc,char **argv) {
int cfd,len,intval = 1;
struct sockaddr_in saddr,caddr;
struct sigaction act;

if ( argc != 2 ) {
printf("Usage %s \n",argv[0]);
return 0;
}

bzero(&act,sizeof(struct sigaction));
act.sa_handler = sig_hup;
act.sa_flags = SA_RESTART | SA_NOMASK;
sigaction(SIGHUP,&act,NULL);

progname = argv[0];
progargv = argv;
port = atoi(argv[1]);
pid = getpid();
saddr.sin_family = AF_INET;
saddr.sin_port = htons(port);
saddr.sin_addr.s_addr = htonl(INADDR_ANY);

if ( ( sockfd = socket(AF_INET,SOCK_STREAM,0) ) < 0 ) {
perror("socket");
return -1;
}

if ( setsockopt(sockfd,SOL_SOCKET,SO_REUSEADDR,&intval,sizeof
(intval)) < 0 ) {
perror("setsockopt");
return -1;
}

if ( bind(sockfd,(struct sockaddr *)&saddr,sizeof(saddr)) < 0 ) {
perror("bind");
return -1;
}
printf("pid is %d , listen at %d\n",pid,port);
listen(sockfd,5);;

for(;;) {
cfd = accept(sockfd,(struct sockaddr *)&caddr,&len);
if ( cfd > 0 ) {
write(cfd,"HelloWorld\n",11);
close(cfd);
}
}

return 0;

}

댓글 달기

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
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.