上海翊霈工业控制设备有限公司
初级会员 | 第12年

13585754584

当前位置:上海翊霈工业控制设备有限公司>>公司主营品牌>> RexrothTPM120ES-02-06

TPM120ES-02-06

参  考  价面议
具体成交价以合同协议为准

产品型号Rexroth

品       牌REXROTH/德国力士乐

厂商性质代理商

所  在  地上海市

更新时间:2022-07-19 21:00:31浏览次数:8511次

联系我时,请告知来自 化工仪器网
同类优质产品更多>
TPM120ES-02-06
上海翊霈工业控制设备有限公司
地址:市普陀区靖边路199弄27号2302室
:200333
:符翔
手机




:www.fengdongmaoyi.com/
From artemrts at ukr.net  Mon Dec  2 085705 2013From artemrts at ukr.net (wishmaster)Date Mon, 02 Dec 2013 105705 +0200Subject fastcgi_buffering and caching from FastCGI serverMessage-ID <1385974141.885235384.is0nnm9l@frv34.ukr.net>Hi, devel team!Playing with caching responses from FCGI server I've found not documented issue. When  fastcgi_buffering is "off", then fastcgi_cache doesn't work. Yes, this is logical compley, but I think would be better specify it in docs.What do you think?Cheers,wFrom nginx-forum at nginx.us  Mon Dec  2 095921 2013From nginx-forum at nginx.us (Larry)Date Mon, 02 Dec 2013 045921 -0500Subject Dynamic request rate throttlingMessage-ID <e64cbf0403aca50fa831e49e51722004.NginxMailingListEnglish@forum.nginx.org>Hello,I wish I could send a notification to nginx to dynamically limit the requestrate per second.Say I use the request rate module, i would like to be able to overridedynamically this setting.How would I do that ?I read about the zone but not sure if i can interfere in this way.Any clue ?thanksLarryPosted at Nginx Forum http//forum.nginx.org/read.php?2,245116,245116#msg-245116From nginx-forum at nginx.us  Mon Dec  2 121552 2013From nginx-forum at nginx.us (itpp2012)Date Mon, 02 Dec 2013 071552 -0500Subject [Patch] possible mutex starvation issue affects all nginx Linux versions.Message-ID <67df022ba3182c9dca6903f4f1b17bb3.NginxMailingListEnglish@forum.nginx.org>Here is a patch for a possible mutex starvation issue which affects allnginx Linux versions.Already solved for Windows since nginx 1.5.7.1 Caterpillar.Can be reproduced when nginx reloads the config & worker holding mutex diesor hangs.Fixed by Vittorio Francesco Digilio, commercially sponsered solution byITPP.target source mainline 1.5.8 - 30-11-2013.src/event/ngx_event_accept.c, line 402 was correctly found (starvation fix)but missed insrc/event/ngx_event.c, line 259-260, 1 line added;255 if (ngx_posted_accept_events) {256 ngx_event_process_posted(cycle, &ngx_posted_accept_events);257 }258259 if (ngx_accept_mutex_held) {--+ ngx_accept_mutex_held=0;260 ngx_shmtx_unlock(&ngx_accept_mutex);261 }262263 if (delta) {264 ngx_event_expire_timers();265 }Also applies to; src/os/win32/ngx_process_cycle.cline 507-508, 3 lines added;504 if (ngx_processes[n].handle != h) {505 continue;506 }507--+ if(*ngx_accept_mutex.lock==ngx_processes[n].pid) {--+ *ngx_accept_mutex.lock=0;--+ }508 if (GetExitCodeProcess(h, &code) == 0) {509 ngx_log_error(NGX_LOG_ALERT, cycle->log, ngx_errno,510 "GetExitCodeProcess(%P) failed",511 ngx_processes[n].pid);512 }Posted at Nginx Forum http//forum.nginx.org/read.php?2,245121,245121#msg-245121From mail at labaznov.com  Mon Dec  2 124742 2013From mail at labaznov.com (=?KOI8-R?B?5M3J1NLJyiDswcLB2s7P1w==?=)Date Mon, 2 Dec 2013 154742 +0300Subject session cacheMessage-ID <CADdZ326nGWEatnJzofiBBcoBqdWRb=T_h+O37di4Fay5yjotTw@mail.gmail.com>Hi, could anybody say, may i cache dynamic content for sessions isolatefrom eache other ?I have very hard sql, but it is show some results which very variative forusers, but some times users call this script many time in small period oftime, so i wana cache the results in small period for each users-session.Is it possible in nginx.Nginx work as proxy_pass http//application_serverAnd cache some static for spesific locations.-------------- next part --------------An HTML attachment was scrubbed...URL <http//mailman.nginx.org/pipermail/nginx/attachments/20131202/acc6b3f1/attachment.html>From mdounin at mdounin.ru  Mon Dec  2 133907 2013From mdounin at mdounin.ru (Maxim Dounin)Date Mon, 2 Dec 2013 173907 +0Subject [Patch] possible mutex starvation issue affects all nginx Linux versions.In-Reply-To <67df022ba3182c9dca6903f4f1b17bb3.NginxMailingListEnglish@forum.nginx.org>References <67df022ba3182c9dca6903f4f1b17bb3.NginxMailingListEnglish@forum.nginx.org>Message-ID <20131202133907.GT93176@mdounin.ru>Hello!On Mon, Dec 02, 2013 at 071552AM -0500, itpp2012 wrote> Here is a patch for a possible mutex starvation issue which affects all> nginx Linux versions.> Already solved for Windows since nginx 1.5.7.1 Caterpillar.> Can be reproduced when nginx reloads the config & worker holding mutex dies> or hangs.> > Fixed by Vittorio Francesco Digilio, commercially sponsered solution by> ITPP.> target source mainline 1.5.8 - 30-11-2013.> src/event/ngx_event_accept.c, line 402 was correctly found (starvation fix)> but missed in> src/event/ngx_event.c, line 259-260, 1 line added;> 255 if (ngx_posted_accept_events) {> 256 ngx_event_process_posted(cycle, &ngx_posted_accept_events);> 257 }> 258> 259 if (ngx_accept_mutex_held) {> --+ ngx_accept_mutex_held=0;> 260 ngx_shmtx_unlock(&ngx_accept_mutex);> 261 }> 262> 263 if (delta) {> 264 ngx_event_expire_timers();> 265 }This patch is wrong.  The ngx_accept_mutex_held don't need to be unset here.  The ngx_accept_mutex_held is used as an idicator that on previous iteration the lock was held by the process, and unsetting it will result in incorrect behaviour.> Also applies to; src/os/win32/ngx_process_cycle.c> line 507-508, 3 lines added;> 504 if (ngx_processes[n].handle != h) {> 505 continue;> 506 }> 507> --+ if(*ngx_accept_mutex.lock==ngx_processes[n].pid) {> --+ *ngx_accept_mutex.lock=0;> --+ }> 508 if (GetExitCodeProcess(h, &code) == 0) {> 509 ngx_log_error(NGX_LOG_ALERT, cycle->log, ngx_errno,> 510 "GetExitCodeProcess(%P) failed",> 511 ngx_processes[n].pid);> 512 }This patch is also wrong.  In the current state of the win32 version it is not assumed that accept mutex is used at all.  But if it is, correct aproach to unlock shared memory mutexes on abnormal process termination is to port (or move to platform-independed place) the ngx_unlock_mutexes() function from src/os/unix/ngx_process.c.  It correctly uses ngx_shmtx_force_unlock() to properly unlock shared memory mutexes using atomic operations.Note well that unlocking shared memory mutexes on abnormal process termination is an emergency mechanism.  If it actually happens, it indicate that something is really wrong in other places of the system.Please also consider reading http//nginx.org/en/docs/contributing_changes.html.-- Maxim Douninhttp//nginx.org/en/donation.htmlFrom mdounin at mdounin.ru  Mon Dec  2 134522 2013From mdounin at mdounin.ru (Maxim Dounin)Date Mon, 2 Dec 2013 174522 +0Subject fastcgi_buffering and caching from FastCGI serverIn-Reply-To <1385974141.885235384.is0nnm9l@frv34.ukr.net>References <1385974141.885235384.is0nnm9l@frv34.ukr.net>Message-ID <20131202134521.GU93176@mdounin.ru>Hello!On Mon, Dec 02, 2013 at 105705AM +0200, wishmaster wrote> > Hi, devel team!> > Playing with caching responses from FCGI server I've found not > documented issue. When  fastcgi_buffering is "off", then > fastcgi_cache doesn't work. Yes, this is logical compley, but > I think would be better specify it in docs.> What do you think?If you think that explicitly mentioning this will be beneficial, you may try submitting a patch for the documentation.  Note that this applies to both proxy and fastcgi (well, actually to uwsgi and scgi as too, but we have no docs for them), and to both cache and store.  That is, proxy_store, proxy_cache, fastcgi_store and fastcgi_cache.See here for basic instructions on how to submit patcheshttp//nginx.org/en/docs/contributing_changes.htmlSource of the nginx.org site with the documentation can be found herehttp//hg.nginx.org/nginx.org-- Maxim Douninhttp//nginx.org/en/donation.htmlFrom maxmilhas at yandex.com  Mon Dec  2 162416 2013From maxmilhas at yandex.com (Maxmilhas)Date Mon, 02 Dec 2013 142416 -0200Subject fastcgi_buffering and caching from FastCGI serverIn-Reply-To <20131202134521.GU93176@mdounin.ru>References <1385974141.885235384.is0nnm9l@frv34.ukr.net> <20131202134521.GU93176@mdounin.ru>Message-ID <529CB430.8050707@yandex.com>Yes, it is compley acceptable that people (possibly) compley out of an entire project make its documentation. Or at least it is them who must decide what is good and necessary to have on the docs, and what isn't. Remarkable.Good to see this> If you think that explicitly mentioning this will be beneficial, you > may try submitting a patch for the documentation. Note that this > applies to both proxy and fastcgi (well, actually to uwsgi and scgi as > too, but we have no docs for them), and to both cache and store. That > is, proxy_store, proxy_cache, fastcgi_store and fastcgi_cache. See > here for basic instructions on how to submit patches > http//nginx.org/en/docs/contributing_changes.html Source of the > nginx.org site with the documentation can be found here > http//hg.nginx.org/nginx.org -------------- next part --------------An HTML attachment was scrubbed...URL <http//mailman.nginx.org/pipermail/nginx/attachments/20131202/f5e23bb4/attachment.html>From osa at FreeBSD.org.ru  Mon Dec  2 170630 2013From osa at FreeBSD.org.ru (Sergey A. Osokin)Date Mon, 2 Dec 2013 210630 +0Subject [ANN] ngx_http_redis-0.3.7 releasedMessage-ID <20131202170630.GE20240@FreeBSD.org.ru>ngx_http_redis module version 0.3.7 released, available for immediatedownload at http//people.freebsd.org/~osa/ngx_http_redis-0.3.7.tar.gz                                                                                                                                                                       <ChangeLog>*) Bugfix ngx_http_redis_module might issue the error message   "redis sent invalid trailer" for nginx >= 1.5.3.   Thanks to Maxim Dounin.</ChangeLog>                                                                                                                                                                       -- Sergey A. Osokinosa at FreeBSD.ORG.ruosa at FreeBSD.ORGFrom osa at FreeBSD.org.ru  Mon Dec  2 171119 2013From osa at FreeBSD.org.ru (Sergey A. Osokin)Date Mon, 2 Dec 2013 211119 +0Subject [ANN] ngx_http_redis-0.3.7 releasedIn-Reply-To <20131202170630.GE20240@FreeBSD.org.ru>References <20131202170630.GE20240@FreeBSD.org.ru>Message-ID <20131202171119.GF20240@FreeBSD.org.ru>On Mon, Dec 02, 2013 at 090630PM +0, Sergey A. Osokin wrote> ngx_http_redis module version 0.3.7 released, available for immediate> download at http//people.freebsd.org/~osa/ngx_http_redis-0.3.7.tar.gz>> <ChangeLog>> > *) Bugfix ngx_http_redis_module might issue the error message>    "redis sent invalid trailer" for nginx >= 1.5.3.>    Thanks to Maxim Dounin.> > </ChangeLog>Additional information.SHA256 (ngx_http_redis-0.3.7.tar.gz) = 9dfc14db81f431fdf3d69f3661a37daf110aef5f9479aa7c88cf362bb5d62604SIZE (ngx_http_redis-0.3.7.tar.gz) = 12165Apologies for any inconvenience.-- Sergey A. Osokinosa at FreeBSD.ORG.ruosa at FreeBSD.ORGFrom francis at daoine.org  Mon Dec  2 171634 2013From francis at daoine.org (Francis Daly)Date Mon, 2 Dec 2013 171634 +0000Subject session cacheIn-Reply-To <CADdZ326nGWEatnJzofiBBcoBqdWRb=T_h+O37di4Fay5yjotTw@mail.gmail.com>References <CADdZ326nGWEatnJzofiBBcoBqdWRb=T_h+O37di4Fay5yjotTw@mail.gmail.com>Message-ID <20131202171634.GG15722@craic.sysops.org>On Mon, Dec 02, 2013 at 034742PM +0300, ??????? ???????? wroteHi there,> Hi, could anybody say, may i cache dynamic content for sessions isolate> from eache other ?http//nginx.org/r/proxy_cache_keyInclude something unique per session in the key.f-- Francis Daly        francis at daoine.orgFrom mail at labaznov.com  Mon Dec  2 171806 2013From mail at labaznov.com (=?KOI8-R?B?5M3J1NLJyiDswcLB2s7P1w==?=)Date Mon, 2 Dec 2013 211806 +0Subject session cacheIn-Reply-To <20131202171634.GG15722@craic.sysops.org>References <CADdZ326nGWEatnJzofiBBcoBqdWRb=T_h+O37di4Fay5yjotTw@mail.gmail.com> <20131202171634.GG15722@craic.sysops.org>Message-ID <CADdZ327zs-v-3WmCwGSgtnU1HwBLs6Y9Ex62+1LQ7-XqtkJ1ww@mail.gmail.com>Could you plz some example ?2013/12/2 Francis Daly <francis at daoine.org>> On Mon, Dec 02, 2013 at 034742PM +0300, ??????? ???????? wrote>> Hi there,>> > Hi, could anybody say, may i cache dynamic content for sessions isolate> > from eache other ?>> http//nginx.org/r/proxy_cache_key>> Include something unique per session in the key.>>         f> --> Francis Daly        francis at daoine.org>> _______________________________________________> nginx mailing list> nginx at nginx.org> http//mailman.nginx.org/mailman/listinfo/nginx-------------- next part --------------An HTML attachment was scrubbed...URL <http//mailman.nginx.org/pipermail/nginx/attachments/20131202/09afb4ac/attachment-0001.html>From francis at daoine.org  Mon Dec  2 172123 2013From francis at daoine.org (Francis Daly)Date Mon, 2 Dec 2013 172123 +0000Subject session cacheIn-Reply-To <CADdZ327zs-v-3WmCwGSgtnU1HwBLs6Y9Ex62+1LQ7-XqtkJ1ww@mail.gmail.com>References <CADdZ326nGWEatnJzofiBBcoBqdWRb=T_h+O37di4Fay5yjotTw@mail.gmail.com> <20131202171634.GG15722@craic.sysops.org> <CADdZ327zs-v-3WmCwGSgtnU1HwBLs6Y9Ex62+1LQ7-XqtkJ1ww@mail.gmail.com>Message-ID <20131202172123.GH15722@craic.sysops.org>On Mon, Dec 02, 2013 at 091806PM +0, ??????? ???????? wroteHi there,> Could you plz some example ?What is a session?If it is a cookie called "user", then something like  proxy_cache_key "$host$request_uri $cookie_user";may work for you.f-- Francis Daly        francis at daoine.orgFrom mail at labaznov.com  Mon Dec  2 172953 2013From mail at labaznov.com (=?KOI8-R?B?5M3J1NLJyiDswcLB2s7P1w==?=)Date Mon, 2 Dec 2013 212953 +0Subject session cacheIn-Reply-To <20131202172123.GH15722@craic.sysops.org>References <CADdZ326nGWEatnJzofiBBcoBqdWRb=T_h+O37di4Fay5yjotTw@mail.gmail.com> <20131202171634.GG15722@craic.sysops.org> <CADdZ327zs-v-3WmCwGSgtnU1HwBLs6Y9Ex62+1LQ7-XqtkJ1ww@mail.gmail.com> <20131202172123.GH15722@craic.sysops.org>Message-ID <CADdZ326Y1BgPYx+weLejpZOCLFg6=BEOnSdteN=NvnUy2Pa=kw@mail.gmail.com>> Hi there,> Could you plz some example ?> What is a session?> If it is a cookie called "user", then something like>  proxy_cache_key "$host$request_uri $cookie_user";> may work for you.yes cookie, what does it mean called "user" ?Users have a cookie session, and this strind do not work =(-------------- next part --------------An HTML attachment was scrubbed...URL <http//mailman.nginx.org/pipermail/nginx/attachments/20131202/2f60e1c3/attachment.html>From francis at daoine.org  Mon Dec  2 174012 2013From francis at daoine.org (Francis Daly)Date Mon, 2 Dec 2013 174012 +0000Subject session cacheIn-Reply-To <CADdZ326Y1BgPYx+weLejpZOCLFg6=BEOnSdteN=NvnUy2Pa=kw@mail.gmail.com>References <CADdZ326nGWEatnJzofiBBcoBqdWRb=T_h+O37di4Fay5yjotTw@mail.gmail.com> <20131202171634.GG15722@craic.sysops.org> <CADdZ327zs-v-3WmCwGSgtnU1HwBLs6Y9Ex62+1LQ7-XqtkJ1ww@mail.gmail.com> <20131202172123.GH15722@craic.sysops.org> <CADdZ326Y1BgPYx+weLejpZOCLFg6=BEOnSdteN=NvnUy2Pa=kw@mail.gmail.com>Message-ID <20131202174012.GI15722@craic.sysops.org>On Mon, Dec 02, 2013 at 092953PM +0, ??????? ???????? wroteHi there,> > If it is a cookie called "user", then something like> > >  proxy_cache_key "$host$request_uri $cookie_user";> yes cookie, what does it mean called "user" ?> Users have a cookie session, and this strind do not work =(http//nginx.org/en/docs/http/ngx_http_core_module.html#variablesor maybehttp//nginx.org/ru/docs/http/ngx_http_core_module.html#variablesIf the cookie name is "session", then the nginx variable is$cookie_session.f-- Francis Daly        francis at daoine.orgFrom nginx-forum at nginx.us  Mon Dec  2 181525 2013From nginx-forum at nginx.us (nmarques)Date Mon, 02 Dec 2013 131525 -0500Subject nginx - workers segfaultingMessage-ID <70882db870158d19ee06f8b30f59a845.NginxMailingListEnglish@forum.nginx.org>Dear All,I'm facing a small problem with NGINX; The workers are segfaulting since1120 this morning. From kernel messages I got soemthing like thisnginx[6888] segfault at 8 ip 0000000000426a30 sp 00007fff85c01e70 error 4in nginx[000+a8000]nginx[6886] segfault at 8 ip 0000000000426a30 sp 00007fff85c01e70 error 4in nginx[000+a8000]nginx[6890] segfault at 8 ip 0000000000426a30 sp 00007fff85c01e70 error 4in nginx[000+a8000]nginx[6889] segfault at 8 ip 0000000000426a30 sp 00007fff85c01e70 error 4in nginx[000+a8000]nginx[6892] segfault at 8 ip 0000000000426a30 sp 00007fff85c01e70 error 4in nginx[000+a8000]nginx[6893] segfault at 8 ip 0000000000426a30 sp 00007fff85c01e70 error 4in nginx[000+a8000]nginx[6894] segfault at 8 ip 0000000000426a30 sp 00007fff85c01e70 error 4in nginx[000+a8000]nginx[6891] segfault at 8 ip 0000000000426a30 sp 00007fff85c01e70 error 4in nginx[000+a8000]nginx[6896] segfault at 8 ip 0000000000426a30 sp 00007fff85c01e70 error 4in nginx[000+a8000]The log files show the following2013/12/02 181353 [alert] 26876#0 worker process 30412 exited on signal112013/12/02 181353 [alert] 26876#0 worker process 30414 exited on signal112013/12/02 181353 [alert] 26876#0 worker process 30413 exited on signal112013/12/02 181354 [alert] 26876#0 worker process 30418 exited on signal112013/12/02 181355 [info] 30417#0 *14388 client closed connection whileSSL handshaking, client 10.192.41.251, server 0.0.0.044432013/12/02 181356 [info] 30417#0 *14389 client closed connection whilewaiting for request, client 10.192.41.252, server 0.0.0.0802013/12/02 181356 [info] 30417#0 *14390 client closed connection whileSSL handshaking, client 10.192.41.252, server 0.0.0.024432013/12/02 181357 [info] 30417#0 *14397 client closed connection whileSSL handshaking, client 10.192.41.252, server 0.0.0.044432013/12/02 181357 [info] 30417#0 *14403 client closed connection whilewaiting for request, client 10.192.41.251, server 0.0.0.0802013/12/02 181357 [info] 30417#0 *14402 client closed connection whileSSL handshaking, client 10.192.41.251, server 0.0.0.02443I can provide some cores, but I can't attach them here. My setup was runningfine till today (which has some coincidence with a new webservicedeployed).Please could you provide some extra information on how to further debug thisissue ?NMPosted at Nginx Forum http//forum.nginx.org/read.php?2,245135,245135#msg-245135From luky-37 at hotmail.com  Mon Dec  2 183036 2013From luky-37 at hotmail.com (Lukas Tribus)Date Mon, 2 Dec 2013 193036 +0100Subject nginx - workers segfaultingIn-Reply-To <70882db870158d19ee06f8b30f59a845.NginxMailingListEnglish@forum.nginx.org>References <70882db870158d19ee06f8b30f59a845.NginxMailingListEnglish@forum.nginx.org>Message-ID <DUB123-W269AF54BE7431C76A922E2EDEA0@phx.gbl>Hi!> I'm facing a small problem with NGINX; The workers are segfaulting since> 1120 this morning.> [...]> I can provide some cores, but I can't attach them here. My setup was running> fine till today (which has some coincidence with a new webservice> deployed).>> Please could you provide some extra information on how to further debug this> issue ?A few things the developers will probably ask anyway- exact output from "nginx -V"- do use any nginx modules?- do you use any third party modules?- can post and explain your configuration (at least partially)?- you said you can provide cores, can you post a backtrace?- some details about the underlying OS (virtualization,? cpu/ram/architecture/nic/kernel releases)?Regards,Lukas       From nginx-forum at nginx.us  Mon Dec  2 183225 2013From nginx-forum at nginx.us (nmarques)Date Mon, 02 Dec 2013 133225 -0500Subject nginx - workers segfaultingIn-Reply-To <70882db870158d19ee06f8b30f59a845.NginxMailingListEnglish@forum.nginx.org>References <70882db870158d19ee06f8b30f59a845.NginxMailingListEnglish@forum.nginx.org>Message-ID <0dd3af8e0816efc0cd762139895900e7.NginxMailingListEnglish@forum.nginx.org>AdittionallyName         nginx                        Relocations (not relocatable)Version      1.4.3                             Vendor nginx inc.Release      1.el6.ngx                     Build Date Tue 08 Oct 2013023432 PM WESTInstall Date Mon 02 Dec 2013 053541 PM WET      Build Hostcentos6-amd64-ovl.t.nginx.comGroup        System Environment/Daemons    Source RPMnginx-1.4.3-1.el6.ngx.src.rpmSize         788369                           License 2-clause BSD-likelicenseSignature    RSA/SHA1, Tue 08 Oct 2013 031336 PM WEST, Key IDabf5bd827bd9bf62URL          http//nginx.org/Summary      High performance web serverDescription nginx [engine x] is an HTTP and reverse proxy server, as well asa mail proxy server.Running on fully updated CentOS 6.4.Posted at Nginx Forum http//forum.nginx.org/read.php?2,245135,245137#msg-245137From nginx-forum at nginx.us  Mon Dec  2 184546 2013From nginx-forum at nginx.us (nmarques)Date Mon, 02 Dec 2013 134546 -0500Subject nginx - workers segfaultingIn-Reply-To <DUB123-W269AF54BE7431C76A922E2EDEA0@phx.gbl>References <DUB123-W269AF54BE7431C76A922E2EDEA0@phx.gbl>Message-ID <ac6ed3949abcfd266ebceef320eed4f6.NginxMailingListEnglish@forum.nginx.org>> - exact output from "nginx -V"Name         nginx                        Relocations (not relocatable)Version      1.4.4                             Vendor nginx inc.Release      1.el6.ngx                     Build Date Tue 19 Nov 2013121115 PM WETInstall Date Mon 02 Dec 2013 063331 PM WET      Build Hostcentos6-amd64-ovl.t.nginx.comGroup        System Environment/Daemons    Source RPMnginx-1.4.4-1.el6.ngx.src.rpmSize         788337                           License 2-clause BSD-likelicenseSignature    RSA/SHA1, Tue 19 Nov 2013 010300 PM WET, Key IDabf5bd827bd9bf62URL          http//nginx.org/Summary      High performance web serverDescription nginx [engine x] is an HTTP and reverse proxy server, as well asa mail proxy server.Running on CentOS 6.4. Same happens with 1.4.3 (I've tested a downgrade).> - do use any nginx modules?No. Plain upstream vanilla.> - do you use any third party modules?No. Upstream binary distribution package (rpm)> - can post and explain your configuration (at least partially)?NGINX is a reverse proxy for a vhosted tomcat with openSSL. What tokens fromthe configuration do you require?> - you said you can provide cores, can you post a backtrace?I'm going to attach nginx master process to gdb and check it out. I can'treally attach to workers since they segfault quite fast.> - some details about the underlying OS (virtualization,> ? cpu/ram/architecture/nic/kernel releases)?CentOS 6.4 (full updated) - running on vmware 5.1u1 - 4vcpu's, 6GB RAM,etc...[root at iweb-as2 ~]# uname -aLinux XXXXXXXXXXXX 2.6.32-358.23.2.el6.x86_64 #1 SMP Wed Oct 16 183712 UTC2013 x86_64 x86_64 x86_64 GNU/LinuxPosted at Nginx Forum http//forum.nginx.org/read.php?2,245135,245138#msg-245138From artemrts at ukr.net  Mon Dec  2 185353 2013From artemrts at ukr.net (=?UTF-8?b?0JLQuNGC0LDQu9C40Lk=?= =?UTF-8?b?INCS0LvQsNC00LjQvNC40YDQvtCy0LjRhw==?=)Date Mon, 02 Dec 2013 205353 +0200Subject session cacheIn-Reply-To <20131202172123.GH15722@craic.sysops.org>References <CADdZ326nGWEatnJzofiBBcoBqdWRb=T_h+O37di4Fay5yjotTw@mail.gmail.com> <20131202171634.GG15722@craic.sysops.org> <CADdZ327zs-v-3WmCwGSgtnU1HwBLs6Y9Ex62+1LQ7-XqtkJ1ww@mail.gmail.com> <20131202172123.GH15722@craic.sysops.org>Message-ID <1386010388.168877075.c0ss0i4f@frv34.ukr.net> --- Original message ---From "Francis Daly" <francis at daoine.org>Date 2 December 2013, 192129 > On Mon, Dec 02, 2013 at 091806PM +0, ??????? ???????? wrote> > Hi there,> > > Could you plz some example ?> > What is a session?> > If it is a cookie called "user", then something like> > proxy_cache_key "$host$request_uri $cookie_user";      Or better  proxy_cache_key "$host$request_uri$cookie_user$remote_addr";From nginx-forum at nginx.us  Tue Dec  3 004923 2013From nginx-forum at nginx.us (nmarques)Date Mon, 02 Dec 2013 194923 -0500Subject nginx - workers segfaultingIn-Reply-To <ac6ed3949abcfd266ebceef320eed4f6.NginxMailingListEnglish@forum.nginx.org>References <DUB123-W269AF54BE7431C76A922E2EDEA0@phx.gbl> <ac6ed3949abcfd266ebceef320eed4f6.NginxMailingListEnglish@forum.nginx.org>Message-ID <52417ca2d9a69eaf29addb2c7c25612f.NginxMailingListEnglish@forum.nginx.org>I'm facing a small problem with gdb and separate debuginfo's. Do you buildwith the '-g' compiler option?[root at XXXX2 nginx]# rpm -qa | grep nginxnginx-1.4.4-1.el6.ngx.x86_64nginx-debug-1.4.4-1.el6.ngx.x86_64[root at XXXX2 nginx]# gdb --pid 39019GNU gdb (GDB) Red Hat Enterprise Linux (7.2-60.el6_4.1)Copyright (C) 2010 Free Software Foundation, Inc.License GPLv3+ GNU GPL version 3 or later<http//gnu.org/licenses/gpl.html>This is free software you are free to change and redistribute it.There is NO WARRANTY, to the extent permitted by law.  Type "show copying"and "show warranty" for details.This GDB was configured as "x86_64-redhat-linux-gnu".For bug reporting instructions, please see<http//www.gnu。。org/software/gdb/bugs/>.Attaching to process 39019Reading symbols from /usr/sbin/nginx...warning the debug information found in "/usr/sbin/nginx.debug" does notmatch "/usr/sbin/nginx" (CRC mismatch).(no debugging symbols found)...done.Reading symbols from /lib64/libpthread.so.0...Reading symbols from/usr/lib/debug/lib64/libpthread-2.12.so.debug...done.[Thread debugging using libthread_db enabled]done.Loaded symbols for /lib64/libpthread.so.0Reading symbols from /lib64/libcrypt.so.1...Reading symbols from/usr/lib/debug/lib64/libcrypt-2.12.so.debug...done.done.Loaded symbols for /lib64/libcrypt.so.1Reading symbols from /lib64/libpcre.so.0...Reading symbols from/usr/lib/debug/lib64/libpcre.so.0.0.1.debug...done.done.Loaded symbols for /lib64/libpcre.so.0Reading symbols from /usr/lib64/libssl.so.10...Reading symbols from/usr/lib/debug/usr/lib64/libssl.so.1.0.0.debug...done.done.Loaded symbols for /usr/lib64/libssl.so.10Reading symbols from /usr/lib64/libcrypto.so.10...Reading symbols from/usr/lib/debug/usr/lib64/libcrypto.so.1.0.0.debug...done.done.Loaded symbols for /usr/lib64/libcrypto.so.10Reading symbols from /lib64/libdl.so.2...Reading symbols from/usr/lib/debug/lib64/libdl-2.12.so.debug...done.done.Loaded symbols for /lib64/libdl.so.2Reading symbols from /lib64/libz.so.1...Reading symbols from/usr/lib/debug/lib64/libz.so.1.2.3.debug...done.done.Loaded symbols for /lib64/libz.so.1Reading symbols from /lib64/libc.so.6...Reading symbols from/usr/lib/debug/lib64/libc-2.12.so.debug...done.done.Loaded symbols for /lib64/libc.so.6Reading symbols from /lib64/ld-linux-x86-64.so.2...Reading symbols from/usr/lib/debug/lib64/ld-2.12.so.debug...done.done.Loaded symbols for /lib64/ld-linux-x86-64.so.2Reading symbols from /lib64/libfreebl3.so...Reading symbols from/usr/lib/debug/lib64/libfreebl3.so.debug...done.done.Loaded symbols for /lib64/libfreebl3.soReading symbols from /lib64/libgssapi_krb5.so.2...Reading symbols from/usr/lib/debug/lib64/libgssapi_krb5.so.2.2.debug...done.done.Loaded symbols for /lib64/libgssapi_krb5.so.2Reading symbols from /lib64/libkrb5.so.3...Reading symbols from/usr/lib/debug/lib64/libkrb5.so.3.3.debug...done.done.Loaded symbols for /lib64/libkrb5.so.3Reading symbols from /lib64/libcom_err.so.2...Reading symbols from/usr/lib/debug/lib64/libcom_err.so.2.1.debug...done.done.Loaded symbols for /lib64/libcom_err.so.2Reading symbols from /lib64/libk5crypto.so.3...Reading symbols from/usr/lib/debug/lib64/libk5crypto.so.3.1.debug...done.done.Loaded symbols for /lib64/libk5crypto.so.3Reading symbols from /lib64/libkrb5support.so.0...Reading symbols from/usr/lib/debug/lib64/libkrb5support.so.0.1.debug...done.done.Loaded symbols for /lib64/libkrb5support.so.0Reading symbols from /lib64/libkeyutils.so.1...Reading symbols from/usr/lib/debug/lib64/libkeyutils.so.1.3.debug...done.done.Loaded symbols for /lib64/libkeyutils.so.1Reading symbols from /lib64/libresolv.so.2...Reading symbols from/usr/lib/debug/lib64/libresolv-2.12.so.debug...done.done.Loaded symbols for /lib64/libresolv.so.2Reading symbols from /lib64/libselinux.so.1...Reading symbols from/usr/lib/debug/lib64/libselinux.so.1.debug...done.done.Loaded symbols for /lib64/libselinux.so.1Reading symbols from /lib64/libnss_files.so.2...Reading symbols from/usr/lib/debug/lib64/libnss_files-2.12.so.debug...done.done.Loaded symbols for /lib64/libnss_files.so.2Reading symbols from /lib64/libnss_sss.so.2...(no debugging symbolsfound)...done.Loaded symbols for /lib64/libnss_sss.so.20x00007ffa45a45f23 in __epoll_wait_nocancel () at../sysdeps/unix/syscall-template.S8282T_PSEUDO (SYSCALL_SYMBOL, SYSCALL_NAME, SYSCALL_NARGS)Missing separate debuginfos, use debuginfo-installnginx-1.4.4-1.el6.ngx.x86_64Posted at Nginx Forum http//forum.nginx.org/read.php?2,245135,245142#msg-245142From mail at labaznov.com  Tue Dec  3 065717 2013From mail at labaznov.com (=?KOI8-R?B?5M3J1NLJyiDswcLB2s7P1w==?=)Date Tue, 3 Dec 2013 095717 +0300Subject session cacheIn-Reply-To <20131202174012.GI15722@craic.sysops.org>References <CADdZ326nGWEatnJzofiBBcoBqdWRb=T_h+O37di4Fay5yjotTw@mail.gmail.com> <20131202171634.GG15722@craic.sysops.org> <CADdZ327zs-v-3WmCwGSgtnU1HwBLs6Y9Ex62+1LQ7-XqtkJ1ww@mail.gmail.com> <20131202172123.GH15722@craic.sysops.org> <CADdZ326Y1BgPYx+weLejpZOCLFg6=BEOnSdteN=NvnUy2Pa=kw@mail.gmail.com> <20131202174012.GI15722@craic.sysops.org>Message-ID <CADdZ324EjPRxYW9x0jwBsWDHZeBrkQ0R3BrNRejrOmHed_YLzQ@mail.gmail.com>On Mon, Dec 02, 2013 at 092953PM +0, ??????? ???????? wrote> Hi there,> > If it is a cookie called "user", then something like>> >  proxy_cache_key "$host$request_uri $cookie_user";> yes cookie, what does it mean called "user" ?> Users have a cookie session, and this strind do not work =(> http//nginx.org/en/docs/http/ngx_http_core_module.html#variables> or maybe> http//nginx.org/ru/docs/http/ngx_http_core_module.html#variables> If the cookie name is "session", then the nginx variable is> $cookie_session.THX!!!! Its work!location ~* ^/.+\.(php)$ {        proxy_cache_methods GET HEAD POST;        proxy_ignore_headers Cache-Control Expires;        proxy_cache_key "$host$request_uri $cookie_PHPSESSID";        proxy_pass http//localhost8080;        proxy_temp_path /tmp/nginx/tmp;        proxy_cache one;        proxy_cache_valid 200 304 1m;        expires 1m;    }here i cache all php dynavics, cous it is from test stand. But it is work,dynamic for various browsers cachedin conformity with they cookies. Thx a lot!It is strange, this easy example i couldnt google for my case and situation.2013/12/2 Francis Daly <francis at daoine.org>> On Mon, Dec 02, 2013 at 092953PM +0, ??????? ???????? wrote>> Hi there,>> > > If it is a cookie called "user", then something like> >> > >  proxy_cache_key "$host$request_uri $cookie_user";>> > yes cookie, what does it mean called "user" ?> > Users have a cookie session, and this strind do not work =(>> http//nginx.org/en/docs/http/ngx_http_core_module.html#variables>> or maybe>> http//nginx.org/ru/docs/http/ngx_http_core_module.html#variables>> If the cookie name is "session", then the nginx variable is> $cookie_session.>>         f> --> Francis Daly        francis at daoine.org>> _______________________________________________> nginx mailing list> nginx at nginx.org> http//mailman.nginx.org/mailman/listinfo/nginx>-------------- next part --------------An HTML attachment was scrubbed...URL <http//mailman.nginx.org/pipermail/nginx/attachments/20131203/4f814d94/attachment.html>From luky-37 at hotmail.com  Tue Dec  3 081946 2013From luky-37 at hotmail.com (Lukas Tribus)Date Tue, 3 Dec 2013 091946 +0100Subject nginx - workers segfaultingIn-Reply-To <52417ca2d9a69eaf29addb2c7c25612f.NginxMailingListEnglish@forum.nginx.org>References <DUB123-W269AF54BE7431C76A922E2EDEA0@phx.gbl>, <ac6ed3949abcfd266ebceef320eed4f6.NginxMailingListEnglish@forum.nginx.org>, <52417ca2d9a69eaf29addb2c7c25612f.NginxMailingListEnglish@forum.nginx.org>Message-ID <DUB123-W3860CA9CE05D7C8A2D66B9EDD50@phx.gbl>Hi!> I'm facing a small problem with gdb and separate debuginfo's. Do you build> with the '-g' compiler option?Probably not. Please check withfile /usr/sbin/nginxDoes the repository contain a special debug build like nginx-debug orsomething? Could you install it?Whoever maintains the centos binaries on nginx.org, please advise howtoget the symbol informations; /usr/sbin/nginx.debug doesn't seem to containit> warning the debug information found in "/usr/sbin/nginx.debug" does not> match "/usr/sbin/nginx" (CRC mismatch).> [root at XXXX2 nginx]# gdb --pid 39019Please let it properly dump a core.Here is an example howto configure nginx so the workers can actuallycoredumphttp//forum.nginx.org/read.php?2,234757,234860Thanks,Lukas       From svoop at delirium.ch  Tue Dec  3 090242 2013From svoop at delirium.ch (Svoop)Date Tue, 3 Dec 2013 090242 +0000 (UTC)Subject Sanitize "invalid UTF-8 byte sequence"Message-ID <loom.20131203T100211-654@post.gmane.org>HiI'm getting forged requests with invalid UTF-8 byte sequences on my Railsapp which is served with Nginx/Passenger. Is there a way to have Nginxsanitize requests before they are passed to Passenger?Thanks for your hints!From nginx-forum at nginx.us  Tue Dec  3 092130 2013From nginx-forum at nginx.us (fatine,al)Date Tue, 03 Dec 2013 042130 -0500Subject NGINX 500 http errorIn-Reply-To <8cb2846812e4dc52b0eba105531f2e9a.NginxMailingListEnglish@forum.nginx.org>References <20131115132151.GQ95765@mdounin.ru> <3d57ede6d4d086be412204da3a43654e.NginxMailingListEnglish@forum.nginx.org> <e7b7b4f7734bd7a7bdaf1f6b52eab111.NginxMailingListEnglish@forum.nginx.org> <e18ac6f7ce523c12f26cfd16a7d91718.NginxMailingListEnglish@forum.nginx.org> <719e036e94e70427f03196a4f080325a.NginxMailingListEnglish@forum.nginx.org> <5d059809a78b8fea62f6d010a7c6650b.NginxMailingListEnglish@forum.nginx.org> <56c3928692421282e9f1938dd8a7e758.NginxMailingListEnglish@forum.nginx.org> <8cb2846812e4dc52b0eba105531f2e9a.NginxMailingListEnglish@forum.nginx.org>Message-ID <977b04cd0f550691258e9acd18029d71.NginxMailingListEnglish@forum.nginx.org>OK. )Posted at Nginx Forum http//forum.nginx.org/read.php?2,244693,245150#msg-245150From borate at adobe.com  Tue Dec  3 094549 2013From borate at adobe.com (Shankar Dagadu Borate)Date Tue, 3 Dec 2013 151549 +0530Subject NGINX timeout issueMessage-ID <D5164FA59122874DB119F738F59C1EFB1DEA850157@indiambx02.corp.adobe.com>Hi all,We are using nginx as proxy server in all our production deployment. The nginx server proxy the http request to Amazon ELB (elastic load balancer) using upstream module. Currently we are seeing timeout issues in NGINX because NGINX caches the IP address on start. Now when there is change in IP address of ELB, NGINX doesn't updates it's IP and still point to old IP. We went through many post on internet and tried setting resolver to AWS DNS server, resolver timeout to 20s, valids to 30 sec. defining variable instead of direct name in proxy pass, request URL in proxy pass but nothing has worked for us. NGINX is not honoring the resolver and corresponding TTL settings.Some of the blogs also says that they have tried similar things and nothing works for them. IT looks to me like this is bug in NGINX and will be resolved only by changing the source.Has anybody found solution to this problem? If yes, please let us know your configurations.Only solution I have right now is write some script and restart the server when timeout occurs. But this is not ideal solution.I am seriously thinking of moving to Apache Http server if this problem doesn't get resolved.Regards,Shankar-------------- next part --------------An HTML attachment was scrubbed...URL <http//mailman.nginx.org/pipermail/nginx/attachments/20131203/4307b11c/attachment.html>From andrew at nginx.com  Tue Dec  3 100947 2013From andrew at nginx.com (Andrew Alexeev)Date Tue, 3 Dec 2013 020947 -0800Subject NGINX timeout issueIn-Reply-To <D5164FA59122874DB119F738F59C1EFB1DEA850157@indiambx02.corp.adobe.com>References <D5164FA59122874DB119F738F59C1EFB1DEA850157@indiambx02.corp.adobe.com>Message-ID <D1C568DA-98E0-475E-9BEC-2C9138625477@nginx.com>Hi,On Dec 3, 2013, at 145 AM, Shankar Dagadu Borate <borate at adobe.com> wrote> Hi all,> > We are using nginx as proxy server in all our production deployment. The nginx server proxy the http request to Amazon ELB (elastic load balancer) using upstream module. Currently we are seeing timeout issues in NGINX because NGINX caches the IP address on start. Now when there is change in IP address of ELB, NGINX doesn?t updates it?s IP and still point to old IP. We went through many post on internet and tried setting resolver to AWS DNS server, resolver timeout to 20s, valids to 30 sec. defining variable instead of direct name in proxy pass, request URL in proxy pass but nothing has worked for us. NGINX is not honoring the resolver and corresponding TTL settings.> > Some of the blogs also says that they have tried similar things and nothing works for them. IT looks to me like this is bug in NGINX and will be resolved only by changing the source.> > Has anybody found solution to this problem? If yes, please let us know your configurations.> > Only solution I have right now is write some script and restart the server when timeout occurs. But this is not ideal solution.Can you paste the relevant part of your nginx configuration here?If that's about re-resolving server names in an upstream server group, then yes - there's nosuch functionality in nginx at this time.Still, if you're using proxy_pass to a "single server" instead of an upstream server group,re-resolving works. That might be a workaround since you appear to proxy to a singleentry-point which is terminated on ELB?Please check,http//nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_pass("If a domain name resolves to several addresses, all of them will be used in a round-robin fashion.")Also,"A server name, its port and the passed URI can also be specified using variables    proxy_pass http//$host$uri;or even like this    proxy_pass $request;In this case, the server name is searched among the described server groups, and, if not found, is determined using aresolver."Hope this helps> I am seriously thinking of moving to Apache Http server if this problem doesn?t get resolved.)> Regards,> > Shankar> > _______________________________________________> nginx mailing list> nginx at nginx.org> http//mailman.nginx.org/mailman/listinfo/nginxFrom www at lc365.net  Tue Dec  3 113220 2013From www at lc365.net (=?gb2312?B?ufnV8cGi?=)Date Tue, 3 Dec 2013 193220 +0800Subject [ANN] Windows nginx 1.5.8.1 CaterpillarIn-Reply-To <82f08a63fed0ac7d3fefdf3b8752ac2d.NginxMailingListEnglish@forum.nginx.org>References <82f08a63fed0ac7d3fefdf3b8752ac2d.NginxMailingListEnglish@forum.nginx.org>Message-ID <SNT149-W88FBA0F07460B528DC51F7E3D50@phx.gbl>Dear, Thank you very much for your great job! I use Nginx-Win to run proxy for some Windows 2003 nodes.I change nginx-win from official download  to your version now. Here is an error occurred if I run "nginx -t" in Windows CLI when the nginx server is in running,The tips always is the same "Assertion failed ngx_shared_sockets->pid==pid, file src/core/nginx.c, line 374"And also find one line in error.log which is "2013/12/01 145136 [notice] 4046#3925 Fatal wait on listen sockets mutex failed" Hope this can be solved in futrue. And please try to compile a version with this module http//wiki.nginx.org/HttpSubsModule, and with the options "--without-mail_pop3_module --without-mail_imap_module --without-mail_smtp_module" if possible, thank you. Robert K. > To nginx at nginx.org> Subject [ANN] Windows nginx 1.5.8.1 Caterpillar> From nginx-forum at nginx.us> Date Sat, 30 Nov 2013 165818 -0500> > 1918 30-11-2013 nginx 1.5.8.1 Caterpillar> > Based on nginx 1.5.8 (29-11-2013) with (mainly bugfixes in add-on's);> + Naxsi WAF (Web Application Firewall) v0.53-1 (upgraded)> + lua-nginx-module v0.9.2 (upgraded 30-11)> + Streaming with nginx-rtmp-module, v1.0.8 (upgraded 29-11)> + Source changes back ported> + Source changes add-on's back ported> * Additional specifications are like 2032 19-11-2013 nginx 1.5.7.2> Caterpillar> > Builds can be found here> http//nginx-win.ecsds.eu/> > Posted at Nginx Forum http//forum.nginx.org/read.php?2,245105,245105#msg-245105> > _______________________________________________> nginx mailing list> nginx at nginx.org> http//mailman.nginx.org/mailman/listinfo/nginx       -------------- next part --------------An HTML attachment was scrubbed...URL <http//mailman.nginx.org/pipermail/nginx/attachments/20131203/f7786614/attachment-0001.html>From mdounin at mdounin.ru  Tue Dec  3 121952 2013From mdounin at mdounin.ru (Maxim Dounin)Date Tue, 3 Dec 2013 161952 +0Subject nginx - workers segfaultingIn-Reply-To <70882db870158d19ee06f8b30f59a845.NginxMailingListEnglish@forum.nginx.org>References <70882db870158d19ee06f8b30f59a845.NginxMailingListEnglish@forum.nginx.org>Message-ID <20131203121952.GD93176@mdounin.ru>Hello!On Mon, Dec 02, 2013 at 011525PM -0500, nmarques wrote> Dear All,> > I'm facing a small problem with NGINX; The workers are segfaulting since> 1120 this morning. From kernel messages I got soemthing like this> > nginx[6888] segfault at 8 ip 0000000000426a30 sp 00007fff85c01e70 error 4> in nginx[000+a8000]> nginx[6886] segfault at 8 ip 0000000000426a30 sp 00007fff85c01e70 error 4> in nginx[000+a8000]> nginx[6890] segfault at 8 ip 0000000000426a30 sp 00007fff85c01e70 error 4> in nginx[000+a8000]> nginx[6889] segfault at 8 ip 0000000000426a30 sp 00007fff85c01e70 error 4> in nginx[000+a8000]> nginx[6892] segfault at 8 ip 0000000000426a30 sp 00007fff85c01e70 error 4> in nginx[000+a8000]> nginx[6893] segfault at 8 ip 0000000000426a30 sp 00007fff85c01e70 error 4> in nginx[000+a8000]> nginx[6894] segfault at 8 ip 0000000000426a30 sp 00007fff85c01e70 error 4> in nginx[000+a8000]> nginx[6891] segfault at 8 ip 0000000000426a30 sp 00007fff85c01e70 error 4> in nginx[000+a8000]> nginx[6896] segfault at 8 ip 0000000000426a30 sp 00007fff85c01e70 error 4> in nginx[000+a8000]> > The log files show the following> > 2013/12/02 181353 [alert] 26876#0 worker process 30412 exited on signal> 11> 2013/12/02 181353 [alert] 26876#0 worker process 30414 exited on signal> 11> 2013/12/02 181353 [alert] 26876#0 worker process 30413 exited on signal> 11> 2013/12/02 181354 [alert] 26876#0 worker process 30418 exited on signal> 11> 2013/12/02 181355 [info] 30417#0 *14388 client closed connection while> SSL handshaking, client 10.192.41.251, server 0.0.0.04443> 2013/12/02 181356 [info] 30417#0 *14389 client closed connection while> waiting for request, client 10.192.41.252, server 0.0.0.080> 2013/12/02 181356 [info] 30417#0 *14390 client closed connection while> SSL handshaking, client 10.192.41.252, server 0.0.0.02443> 2013/12/02 181357 [info] 30417#0 *14397 client closed connection while> SSL handshaking, client 10.192.41.252, server 0.0.0.04443> 2013/12/02 181357 [info] 30417#0 *14403 client closed connection while> waiting for request, client 10.192.41.251, server 0.0.0.080> 2013/12/02 181357 [info] 30417#0 *14402 client closed connection while> SSL handshaking, client 10.192.41.251, server 0.0.0.02443> > I can provide some cores, but I can't attach them here. My setup was running> fine till today (which has some coincidence with a new webservice> deployed).> > Please could you provide some extra information on how to further debug this> issue ?>From the messages I suspect you are hitting this bughttp//trac.nginx.org/nginx/ticket/235Please follow suggested workaround to see if it helps (i.e., move the "ssl_session_cache" directive to http{} level or use the same value in all server{} blocks listening on the same socket).If it doesn't help, please follow debugging hints herehttp//wiki.nginx.org/Debugging-- Maxim Douninhttp//nginx.org/en/donation.htmlFrom nginx-forum at nginx.us  Tue Dec  3 131808 2013From nginx-forum at nginx.us (itpp2012)Date Tue, 03 Dec 2013 081808 -0500Subject [ANN] Windows nginx 1.5.8.1 CaterpillarIn-Reply-To <SNT149-W88FBA0F07460B528DC51F7E3D50@phx.gbl>References <SNT149-W88FBA0F07460B528DC51F7E3D50@phx.gbl>Message-ID <acdba42af23f06685d1dcdd2c1c3bb7e.NginxMailingListEnglish@forum.nginx.org>> Here is an error occurred if I run "nginx -t" in Windows CLI when the> nginx server is in running,> > The tips always is the same "Assertion failed> ngx_shared_sockets->pid==pid, file src/core/nginx.c, line 374"This is because you are running nginx.exe as a different user then nginx.exeis running under, its the same issue when you run 'nginx -s reload' whilenginx is running as a service (which is a different user) see the FAQ on theproject website which describes a workaround to this problem.If you need to test a config on the same machine then make a copy of theenvironment in some other folder so that the PID file does not conflict withthe running version. Or stop nginx, run your test and start nginx.> And please try to compile a version with this module> http//wiki.nginx.org/HttpSubsModule, and with the optionsI will have a look athttps//github.com/yaoweibin/ngx_http_substitutions_filter_module> "--without-mail_pop3_module --without-mail_imap_module> --without-mail_smtp_module" if possible, thank you.I'm not going to remove modules unless they are bugged beyond repair.Adding/removing modules on the fly is on the long term feature listPosted at Nginx Forum http//forum.nginx.org/read.php?2,245105,245161#msg-245161From nginx-forum at nginx.us  Tue Dec  3 161124 2013From nginx-forum at nginx.us (nmarques)Date Tue, 03 Dec 2013 111124 -0500Subject nginx - workers segfaultingIn-Reply-To <20131203121952.GD93176@mdounin.ru>References <20131203121952.GD93176@mdounin.ru>Message-ID <80c92d3e73942913ce14334e20b7e31b.NginxMailingListEnglish@forum.nginx.org>Maxim,Right on dude. Anyway you can have this patch merged into trunk for the nextrelease? So far I have blocked nginx updates.NMPosted at Nginx Forum http//forum.nginx.org/read.php?2,245135,245167#msg-245167From mdounin at mdounin.ru  Tue Dec  3 162326 2013From mdounin at mdounin.ru (Maxim Dounin)Date Tue, 3 Dec 2013 202326 +0Subject nginx - workers segfaultingIn-Reply-To <80c92d3e73942913ce14334e20b7e31b.NginxMailingListEnglish@forum.nginx.org>References <20131203121952.GD93176@mdounin.ru> <80c92d3e73942913ce14334e20b7e31b.NginxMailingListEnglish@forum.nginx.org>Message-ID <20131203162326.GK93176@mdounin.ru>Hello!On Tue, Dec 03, 2013 at 111124AM -0500, nmarques wrote> Maxim,> Right on dude. Anyway you can have this patch merged into trunk for the next> release?The patch as in the ticket is wrong, it only hides the real problem.  Proper patch to solve the problem is to be coded.As the problem can be easily resolved by using symmetrical session cache configuration (better yet, using a single session cache at http level), it's not a high priority task.> So far I have blocked nginx updates.Looks like a silly thing to do.  The problem you are seeing was a result of a configuration change you've done, not of an nginx update.  And blocking updates will only make sure you'll never get a fix.-- Maxim Douninhttp//nginx.org/en/donation.htmlFrom alex.koch007 at outlook.com  Tue Dec  3 175552 2013From alex.koch007 at outlook.com (Alex Koch)Date Tue, 3 Dec 2013 185552 +0100Subject =?UTF-8?Q?NGINX_Module_-_create_variables=E2=80=8F?=Message-ID <DUB124-W47220696B4F5406A38F75ADAD50@phx.gbl>Hi,I would like to create a small module which execute some routines, returns an NGX_OK, somewhat similar in concept to http//blog.zhuzhaoyuan.com/2009/08/creating-a-hello-world-nginx-module/However I would like once the module executes to create variables such as $my_var which would be accessible via config files to other blocks or to the same location block.I am aware of the "register_variable" option, with "ngx_http_variable_t *var, *v;" - but the examples I have seen so far, execute the module only once this variable is loaded in the config file.What I would like is being able to define a couple of config variables once my module is loaded. Is this possible at all? If so, could you point me to a sample/module which does this so I can learn from it?Many thanks,Alex       -------------- next part --------------An HTML attachment was scrubbed...URL <http//mailman.nginx.org/pipermail/nginx/attachments/20131203/79e7b4f7/attachment.html>From nginx-forum at nginx.us  Tue Dec  3 182000 2013From nginx-forum at nginx.us (Peleke)Date Tue, 03 Dec 2013 132000 -0500Subject Subdomains no longer workIn-Reply-To <20131127231035.GB15722@craic.sysops.org>References <20131127231035.GB15722@craic.sysops.org>Message-ID <1afd6e9946388553fe017b15c1823b13.NginxMailingListEnglish@forum.nginx.org>It worked sometime before that subdomains were accessible as they should be,now they are not anymore but sadly I don't know why because I haven't testedthem with every change.The config seems to be valid.nginx is running on a Debian Wheezy server with PHP 5.5x, memcache and a fewother services.I don't know why it serves the main domain as it should but no subdomains.ThanksPosted at Nginx Forum http//forum.nginx.org/read.php?2,244807,245173#msg-245173From francis at daoine.org  Tue Dec  3 203009 2013From francis at daoine.org (Francis Daly)Date Tue, 3 Dec 2013 203009 +0000Subject Subdomains no longer workIn-Reply-To <1afd6e9946388553fe017b15c1823b13.NginxMailingListEnglish@forum.nginx.org>References <20131127231035.GB15722@craic.sysops.org> <1afd6e9946388553fe017b15c1823b13.NginxMailingListEnglish@forum.nginx.org>Message-ID <20131203203009.GM15722@craic.sysops.org>On Tue, Dec 03, 2013 at 012000PM -0500, Peleke wroteHi there,> I don't know why it serves the main domain as it should but no subdomains.What happens if you comment the line  listen []80 ipv6only=on;and restart?If your response is anything other than "it works", please show onerequest that you make, what response you get, and what response youexpect.The output of  curl -v http//adminer.domain.tld/will probably help.f-- Francis Daly        francis at daoine.orgFrom ianevans at digitalhit.com  Tue Dec  3 211303 2013From ianevans at digitalhit.com (Ian Evans)Date Tue, 03 Dec 2013 161303 -0500Subject Any config tricks to stop site from framing  us?Message-ID <11fcffb2663578b4ba9f3fa3e8f4c5bc@digitalhit.com>Yesterday, I discovered that someone had registered a site (basically taking our domain name and adding a word to it) and then framed our whole site in theirs. By that I mean it's a full iframe job, with no toolbars showing.Not sure what they're up to, but I'd like to stop it. I know I can use a framebuster, but I'm wondering what I can do on the nginx.conf end to stop them dead in their tracks so not an ounce of our bandwidth goes to them.Thanks for any advice.From ilan at time4learning.com  Tue Dec  3 211511 2013From ilan at time4learning.com (Ilan Berkner)Date Tue, 3 Dec 2013 161511 -0500Subject Any config tricks to stop site from framing us?In-Reply-To <11fcffb2663578b4ba9f3fa3e8f4c5bc@digitalhit.com>References <11fcffb2663578b4ba9f3fa3e8f4c5bc@digitalhit.com>Message-ID <CAOoWpPotDMYE1TiZHAFZY09sRA_qVsAXN0WgLQk=aASMw52new@mail.gmail.com>One possibility (not Nginx related directly) is to block their IP addressat the firewall level from even getting to your server.On Tue, Dec 3, 2013 at 413 PM, Ian Evans <ianevans at digitalhit.com> wrote> Yesterday, I discovered that someone had registered a site (basically> taking our domain name and adding a word to it) and then framed our whole> site in theirs. By that I mean it's a full iframe job, with no toolbars> showing.>> Not sure what they're up to, but I'd like to stop it. I know I can use a> framebuster, but I'm wondering what I can do on the nginx.conf end to stop> them dead in their tracks so not an ounce of our bandwidth goes to them.>> Thanks for any advice.>> _______________________________________________> nginx mailing list> nginx at nginx.org> http//mailman.nginx.org/mailman/listinfo/nginx>-- Ilan BerknerChief Technology OfficerTime4Learning.com6300 NE 1st Ave., Suite 203Ft. Lauderdale, FL 33334(954) 771-0914<http//www.twitter。。com/time4learning> <http//www.facebook。。com/Time4Learning>Time4Learning.com - Online interactive curriculum for home use, PreK-8thGrade.Time4Writing.com - Online writing tutorials for high, middle, andelementary school students.Time4Learning.net - A forum to chat with parents online about kids,education, parenting and more.spellingcity.com - Online vocabulary and spelling activities for teachers,parents and students.-------------- next part --------------An HTML attachment was scrubbed...URL <http//mailman.nginx.org/pipermail/nginx/attachments/20131203/cfe43894/attachment-0001.html>From ianevans at digitalhit.com  Tue Dec  3 211841 2013From ianevans at digitalhit.com (Ian Evans)Date Tue, 03 Dec 2013 161841 -0500

会员登录

×

请输入账号

请输入密码

=

请输验证码

收藏该商铺

X
该信息已收藏!
标签:
保存成功

(空格分隔,最多3个,单个标签最多10个字符)

常用:

提示

X
您的留言已提交成功!我们将在第一时间回复您~
拨打电话
在线留言