За последние 24 часа нас посетили 22252 программиста и 1686 роботов. Сейчас ищет 1671 программист ...

exited on signal 11 (SIGSEGV) after

Тема в разделе "Вопросы от блондинок", создана пользователем Romanuy, 28 янв 2012.

  1. Romanuy

    Romanuy Активный пользователь

    С нами с:
    28 янв 2012
    Сообщения:
    7
    Симпатии:
    0
    Народ обновились с 5.3.3 до # php -v
    PHP 5.3.8 with Suhosin-Patch (cli) (built: Aug 25 2011 16:43:54)
    Copyright (c) 1997-2011 The PHP Group
    Zend Engine v2.3.0, Copyright (c) 1998-2011 Zend Technologies

    и вот какая проблема нас посетила и не как не можем найти причину и способа решить ее.
    Код (Text):
    1. [28-Jan-2012 11:39:15] WARNING: [pool www] child 71144 exited on signal 11 (SIGSEGV) after 52.913546 seconds from start
    2. [28-Jan-2012 11:39:15] NOTICE: [pool www] child 71154 started
     
  2. asokol

    asokol Активный пользователь

    С нами с:
    17 янв 2012
    Сообщения:
    162
    Симпатии:
    0
  3. Romanuy

    Romanuy Активный пользователь

    С нами с:
    28 янв 2012
    Сообщения:
    7
    Симпатии:
    0
    Плохо английский знаю а переводчики не совсем корректно переводят, не могли бы в крации написать что мне в этом случаи делать? может обновления до стабильной версии мне поможет http://php.net/downloads.php#v5
     
  4. asokol

    asokol Активный пользователь

    С нами с:
    17 янв 2012
    Сообщения:
    162
    Симпатии:
    0
    У кого-то проблема возникает из-за APC, у меня тоже были проблемы с APC, приходилось отключать. А у кого-то решилось обновлением:
    It was bug #17689, which was fixed in revision 301127 of the oauth trunk.
    И там есть ссылка на: http://pecl.php.net/bugs/bug.php?id=17689
    - и на: http://pecl.php.net/bugs/bug.php?id=18138
     
  5. Romanuy

    Romanuy Активный пользователь

    С нами с:
    28 янв 2012
    Сообщения:
    7
    Симпатии:
    0
    А куда конкретнее нужно писать о данной баге чтоб помогли ее зафиксить?



    З.Ы Тема досехпор актуальна


    php -v
    PHP 5.3.9 with Suhosin-Patch (cli) (built: Jan 29 2012 14:40:07)
    Copyright (c) 1997-2012 The PHP Group
    Zend Engine v2.3.0, Copyright (c) 1998-2012 Zend Technologies

    version of APC (3.1.9)

    Ситуация в общем вот такая в логах php-fpm.log появляются такие ошибки
    Код (Text):
    1. WARNING: [pool www] child 2266 exited on signal 11 (SIGSEGV) after 2178.624133 seconds from start
    2. [28-Jul-2011 12:36:35] NOTICE: [pool www] child 12552 started
    Весь интернет поставил на уши google уже вешается от меня но окончательного решения я так и не нашел, нашел только такую статью http://skeletor.org.ua/?p=1346 где человек пишет о таких же ошибках и плюс пишет решение после чего я попробовал в nginx.conf вписать нечто такое fastcgi_param PHP_ADMIN_VALUE "open_basedir=/db/www/mydomain.ru/:/tmp/"; но не помогло.

    Код (Text):
    1. location ~* \.php$ {
    2.             # control php limit connect unique IP
    3.             # limit_req  zone=one  burst=20  nodelay;
    4.             # limit_req_log_level  info;
    5.  
    6.             root           /db/www/mydomain.ru;
    7.             try_files $uri = 404;
    8.             fastcgi_pass   unix:/tmp/my.sock;
    9.             fastcgi_index  index.php;
    10.  
    11.             # FreeBSD Optimization
    12.             fastcgi_pass_request_body off;
    13.             client_body_in_file_only clean;
    14.             fastcgi_param   REQUEST_BODY_FILE  $request_body_file;
    15.             fastcgi_param   PHP_ADMIN_VALUE "open_basedir=/db/www/mydomain.ru/:/tmp/";
    16.             fastcgi_param   SCRIPT_FILENAME $document_root$fastcgi_script_name;
    17.             fastcgi_param   PATH_TRANSLATED $document_root$fastcgi_script_name;
    18.  
    19.             include        fastcgi_params;
    20.         }
    Народ может кто то встречался с подобной ошибкой и знает как ее решить помогите мне чем сможете. Заранее большое спасибо!
     
  6. killxxxvi

    killxxxvi Активный пользователь

    С нами с:
    16 фев 2012
    Сообщения:
    1
    Симпатии:
    0
    в nginx.conf
    Код (Text):
    1. upstream  backend  {
    2.     server unix:/tmp/my.sock;
    3. }
    присутствует? если да, то закоменть.
     
  7. Romanuy

    Romanuy Активный пользователь

    С нами с:
    28 янв 2012
    Сообщения:
    7
    Симпатии:
    0
    Уже даже обновил php до

    # php -v
    PHP 5.3.10 (cli) (built: Feb 26 2012 15:55:46)
    Copyright (c) 1997-2012 The PHP Group
    Zend Engine v2.3.0, Copyright (c) 1998-2012 Zend Technologies
    gardnet#



    Вот мой конфиг может кто че обнаружит в нем не ладное что могло вызвать эту ошибку.

    Код (Text):
    1. user  www;
    2. worker_processes  1;
    3.  
    4. worker_rlimit_nofile 10240;
    5. worker_rlimit_sigpending 32768;
    6.  
    7. error_log  /var/log/nginx-error.log;
    8. #error_log  logs/error.log  notice;
    9. #error_log  logs/error.log  info;
    10.  
    11. pid        /var/run/nginx.pid;
    12.  
    13. worker_priority -5;
    14. events {
    15.     worker_connections  1024;
    16.     use                 kqueue;
    17. }
    18.  
    19. http {
    20.     include       mime.types;
    21.     default_type  application/octet-stream;
    22.     client_max_body_size 40m;
    23.  
    24.     #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
    25.     #                  '$status $body_bytes_sent "$http_referer" '
    26.     #                  '"$http_user_agent" "$http_x_forwarded_for"';
    27.  
    28.     #access_log  logs/access.log  main;
    29.  
    30.     sendfile        on;
    31.     aio             sendfile;
    32.     tcp_nopush      on;
    33.     tcp_nodelay     on;
    34.     send_lowat      12000;
    35.     server_tokens   off;
    36.     log_not_found   off;
    37.  
    38.     #keepalive_timeout  0;
    39.     keepalive_timeout  65;
    40.  
    41.     lingering_time      30;
    42.     lingering_timeout   6;
    43.  
    44.     #optimiz for fulehosting
    45.     #output_buffers                  32 512k;
    46.     #sendfile_max_chunk              128k;
    47.     #postpone_output                 1460;
    48.     server_names_hash_bucket_size   32;
    49.  
    50.     gzip  on;
    51.     gzip_vary on;
    52.     #gzip_min_length 2048;
    53.     gzip_comp_level 5;
    54.     #gzip_http_version 1.0;
    55.     gzip_proxied any;
    56.     gzip_disable "msie6";
    57.     gzip_types text/plain text/css application/x-javascript text/xml application/xml application/xml+rss text/javascript;
    58.  
    59.     # Optimization Hard disk fuckking ass
    60.     open_file_cache                 max=100000 inactive=40s;
    61.     open_file_cache_valid           60s;
    62.     open_file_cache_min_uses        2;
    63.     open_file_cache_errors          on;
    64.  
    65.     # client_max_body_size            16m;
    66.     large_client_header_buffers     16 8k;
    67.     client_header_buffer_size       4k;
    68.     client_body_temp_path /tmp/nginx/client_temp 1 2;
    69.  
    70.     # Limit connection Google bot and etc
    71.     limit_req_zone  $binary_remote_addr  zone=one:16m  rate=5r/s;
    72.  
    73.     server {
    74.         listen       78.129.222.45:80 default sndbuf=16k rcvbuf=8k accept_filter=httpready;
    75.         server_name  mydomain.ru www.mydomain.ru;
    76.  
    77.         charset windows-1251;
    78.  
    79.         access_log  off;
    80.         #logs/host.access.log  main;
    81.  
    82.         location / {
    83.             root   /db/www/mydomain.ru;
    84.             index  index.html index.htm index.php;
    85.  
    86.             # SEO begginer mod
    87.             #rewrite ^/?t([0-9]+)(\..*)?$ /viewtopic.php?t=$1 permanent;
    88.         }
    89.  
    90.         error_page  404              /errors/404.html;
    91.         error_page  503              /errors/503.html;
    92.         # redirect server error pages to the static page /50x.html
    93.         #
    94.         error_page   500 502 504  /errors/50x.html;
    95.         #location = /50x.html {
    96.         #    root   /usr/local/www/nginx-dist;
    97.         #}
    98.  
    99.         # proxy the PHP scripts to Apache listening on 127.0.0.1:80
    100.         #
    101.         #location ~ \.php$ {
    102.         #    proxy_pass   http://127.0.0.1;
    103.         #}
    104.  
    105.         # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    106.         #
    107.         location ~* \.php$ {
    108.             # control php limit connect unique IP
    109.             # limit_req  zone=one  burst=20  nodelay;
    110.             # limit_req_log_level  info;
    111.  
    112.             root           /db/www/mydomain.ru;
    113.             try_files $uri = 404;
    114.             fastcgi_pass   unix:/tmp/www.sock;
    115.             fastcgi_index  index.php;
    116.  
    117.             # FreeBSD Optimization
    118.             fastcgi_pass_request_body off;
    119.             client_body_in_file_only clean;
    120.             fastcgi_param   REQUEST_BODY_FILE  $request_body_file;
    121.         fastcgi_param   PHP_ADMIN_VALUE "open_basedir = /db/www/mydomain.ru/:/tmp/";
    122.             fastcgi_param   SCRIPT_FILENAME $document_root$fastcgi_script_name;
    123.             fastcgi_param   PATH_TRANSLATED $document_root$fastcgi_script_name;
    124.  
    125.             include        fastcgi_params;
    126.         }
    127.  
    128.         # рЕТЕЧПД ПВТБВПФЮЙЛБ Ч ТЕЦЙН ПФДБЮЙ ЛПОФЕОФБ ЙЪ РБРЛЙ files
    129.         location ~ ^/files/ {
    130.             root         /db/www/mydomain.ru;
    131.             types {
    132.                 text/plain php php3 php4 php5 phtml phps pl pm;
    133.             }
    134.         }
    135.  
    136.         # deny access to .htaccess files, if Apache's document root
    137.         # concurs with nginx's one
    138.         #
    139.         location ~ /\.ht {
    140.             deny  all;
    141.         }
    142.         # Deny folder (Sec. lvl1)
    143.         location ~ \/(cache|log|attach_mod|cache|config|includes|language|triggers)\/ {
    144.             deny all;
    145.         }
    146.         location ~ \.(.*sql|tpl|db|inc|log)$ {
    147.             deny  all;
    148.         }
    149.         rewrite ^/forum/torrentbar.php/([0-9]+\.png)$ /forum/torrentbar.php?/$1 last;
    150.  
    151.         location ^~ /bt/ {
    152.             #if ( $query_string ~ "^uk=([^&?]{10})[&?]+(.*)$" ) {
    153.             #    set $uk $1;
    154.             #    set $qs $2&ip=$remote_addr;
    155.             #}
    156.             #if ( $query_string ~ "^uk=([^&?]{10})[&?]+((.*&|)ip=.*)$" ) {
    157.             #    set $uk $1;
    158.             #    set $qs $2;
    159.             #}
    160.             #if ( $qs ) {
    161.             #    rewrite ^.*/([a-z]+)(\.php|)$ /$uk/$1?$qs break;
    162.             #}
    163.             #rewrite ^.*/([a-z]+)(\.php|)$ /$1 break;
    164.             rewrite ^/?(.*)$ /$1?ip=$remote_addr&$query_string break;
    165.             proxy_pass http://127.0.0.1:2710/;
    166.         }
    167.  
    168.        #location ~* \.(jpg|jpeg|gif|png|ico)$ {
    169.        #     root   /db/www;
    170.        #     access_log   off;
    171.        #     expires      30d;
    172.        #     add_header   Cache-Control  public;
    173.        #  }
    174.  
    175.     # nginx status
    176.     location = /status-nginx {
    177.             access_log   off;
    178.             stub_status on;
    179.         }
    180.      }
    181.  
    182.     # another virtual host using mix of IP-, name-, and port-based configuration
    183.     #
    184.     #server {
    185.     #    listen       8000;
    186.     #    listen       somename:8080;
    187.     #    server_name  somename  alias  another.alias;
    188.  
    189.     #    location / {
    190.     #        root   html;
    191.     #        index  index.html index.htm;
    192.     #    }
    193.     #}
    194.  
    195.  
    196.     # HTTPS server
    197.     #
    198.     #server {
    199.     #    listen       443;
    200.     #    server_name  localhost;
    201.  
    202.     #    ssl                  on;
    203.     #    ssl_certificate      cert.pem;
    204.     #    ssl_certificate_key  cert.key;
    205.  
    206.     #    ssl_session_timeout  5m;
    207.  
    208.     #    ssl_protocols  SSLv2 SSLv3 TLSv1;
    209.     #    ssl_ciphers  ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP;
    210.     #    ssl_prefer_server_ciphers   on;
    211.  
    212.     #    location / {
    213.     #        root   html;
    214.     #        index  index.html index.htm;
    215.     #    }
    216.     #}
    217. }
    Ах да и вот такая ошибка довольна часто появляется, может какая то взаимосвязь есть я если честно хз.
    Код (Text):
    1. WARNING: [pool www] child 8558 said into stderr: "NOTICE: PHP message: PHP Warning:  REQUEST_BODY_FILE: open('/tmp/nginx/client_temp/1/34/0052180341') failed: No such file or directory (2) in Unknown on line 0"
    Готов оплатить за решение двух этих проблем обращайтесь в ЛС

    1.
    WARNING: [pool] child 28930 said into stderr: "NOTICE: PHP message: PHP Warning: REQUEST_BODY_FILE: open('/tmp/nginx/client_temp/2/78/0029277782') failed: No such file or directory (2) in Unknown on line 0"

    2.
    WARNING: [pool] child 28955 exited on signal 11 (SIGSEGV) after 85169.466260 seconds from start
    NOTICE: [pool gardnet] child 35566 started
     
  8. Romanuy

    Romanuy Активный пользователь

    С нами с:
    28 янв 2012
    Сообщения:
    7
    Симпатии:
    0
    Неужели тут нет специалистов которые могут мне помочь?
     
  9. Апельсин

    Апельсин Активный пользователь

    С нами с:
    20 мар 2010
    Сообщения:
    3.645
    Симпатии:
    2
    Я бы переставил систему с нуля (включая ось), изначально оставив только самое нужное. Затем смотреть все ли работает как нужно.
    Бывает, что после всех проб и советов, "неведомая xyйня" проходит или находится именно после такого.
     
  10. Romanuy

    Romanuy Активный пользователь

    С нами с:
    28 янв 2012
    Сообщения:
    7
    Симпатии:
    0
    Не это не вариант мне нужно чтоб кто нибудь уже в рабочей системе исправил данные ошибки, работу магу оплатить...