Switch to DuckDuckGo Search
   October 31, 2014  
< | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | >

Toggle Join/Part | bottom
[00:00:03] <doctau> socket-: https://docs.jboss.org/author/display/AS71/Logging+Configuration#LoggingConfiguration-Overview
[00:00:05] <jbossbot> Title: Logging Configuration - JBoss AS 7.1 - Project Documentation Editor
[00:00:11] <socket-> so, i pasted that in standalone.xml but the serevr wouldnt start up, did i paste it in the wrong section
[00:00:24] <socket-> or are you saying that the code is invalid for jboss7
[00:01:21] <doctau> socket-: yes, you need to use the jboss logging configuration format rather than log4j xml configuration
[00:01:25] <doctau> it's similar but not the same
[00:02:00] <doctau> rather than <appender name="OCSPTRANSACTION" class="org.jboss.logging.appender.RollingFileAppender">
[00:02:09] <doctau> you would have <periodic-rotating-file-handler name="OCSPTRANSACTION" autoflush="true">
[00:02:21] *** emmanuel is now known as emmanuel_off
[00:02:29] <doctau> if you look at the example, it should be fairly obvious how to convert it over
[00:04:07] <socket-> so, i already have a <periodic-rotating-file-handler name="FILE"> in my standalone.xml would i modify that, or add a new one after?
[00:05:22] <doctau> assuming you want to add a new one logging to a different file, you'd need a new one
[00:05:45] <socket-> yeah, i would like this app to log to a seperate file, ok ill try creating one thanks
[00:05:49] <doctau> socket-: it looks like what you are trying to do is send those two specific logging categories to separate files, right?
[00:06:22] <socket-> yeah
[00:07:26] *** jdcasey has quit IRC
[00:12:02] *** doobrie has quit IRC
[00:15:37] <socket-> something like this? http://apaste.info/OFu lines 77 - 104
[00:15:37] <jbossbot> Title: Paste #OFu - Apache Paste Bucket
[00:16:59] <doctau> socket-: the bits inside the handler need to be converted too. e.g. <param name="Append" value="false"/> to <append value="false"/>
[00:17:22] <doctau> socket-: <layout> needs to be replaced with <formatter> as you can see in the default FILE handler
[00:17:57] <doctau> socket-: https://docs.jboss.org/author/display/AS71/Logging+Configuration#LoggingConfiguration-periodicrotatingfilehandler
[00:17:58] <jbossbot> Title: Logging Configuration - JBoss AS 7.1 - Project Documentation Editor
[00:19:08] <socket-> k, thanks ill see if i can make those changes
[00:22:21] *** rhusar has joined #wildfly
[00:23:05] *** bstansberry has joined #wildfly
[00:23:05] *** ChanServ sets mode: +v bstansberry
[00:23:54] *** plarsen has quit IRC
[00:28:07] <socket-> like this, http://apaste.info/4u0
[00:28:07] <jbossbot> Title: Paste #4u0 - Apache Paste Bucket
[00:32:47] <doctau> you need to lower-case the element names Append -> append, and if you want it to rotate you'll need a <suffix value=".yyyy-MM-dd"/> or similar
[00:33:09] <doctau> oh wait, you want size-based rolling
[00:33:16] *** whitingjr has quit IRC
[00:33:48] <doctau> that's <size-rotating-file-handler> instead, and the other options are rotate-size and max-backup-index
[00:36:01] <socket-> the logger category stufff right?
[00:36:14] <socket-> or should it be <level name="DEBUG"/>
[00:37:02] <socket-> http://apaste.info/kxZ
[00:37:03] <jbossbot> Title: Paste #kxZ - Apache Paste Bucket
[00:37:25] <socket-> this is what i currently have, not sure about line 33,34 and 37,38
[00:43:17] *** fnasser has quit IRC
[00:48:20] *** sebersole has quit IRC
[00:48:42] *** firemanxbr has quit IRC
[00:50:05] <prekitt> can someone tell me if wildfly domain mode replicates application users to each slave (host-controller)
[00:50:30] <prekitt> is this even possible
[00:50:38] <prekitt> or do I have to create the application user on each host?
[00:50:52] <prekitt> google is not anwering me this question
[00:59:04] <prekitt> please #wildfly you are my only hope...
[00:59:08] <prekitt> hope
[00:59:49] *** Nihility has quit IRC
[01:01:23] *** Nihility has joined #wildfly
[01:01:23] *** ChanServ sets mode: +v Nihility
[01:01:53] *** rhusar has quit IRC
[01:06:27] *** plarsen has joined #wildfly
[01:06:27] *** ChanServ sets mode: +v plarsen
[01:06:52] <doctau> prekitt: do you mean a security domain configuration, or what is in application-{roles,users}.properties
[01:07:23] <doctau> prekitt: for the latter, I think the answer is that it does, and if you have a domain you may want to consider a real authentication mechanism :)
[01:07:31] <doctau> s/doesn/doesn't/ urgh
[01:09:40] <prekitt> doctau: I am working on a domain configuration and trying to have a remote client access a jms queue, I create an application user on the domain controller(all servers are on a seperate machine) but when I try to access the remote queue on one of the application servers. I cannot reach the queue and get an error about not authentication mechanisns were present
[01:10:23] <prekitt> doctau: if I create a user on the application server I get no error and I am able to access the queue
[01:11:14] <prekitt> doctau: all users are created with the add-user.sh utility
[01:11:27] <prekitt> domain.xml has default settings on it.
[01:13:45] <doctau> yeah, I don't believe that the properties files authentication is replicated
[01:13:57] <doctau> so you'd either need to copy it or use a better authentication mechanism
[01:15:25] <prekitt> ok, so either db backed or ldap, those system would replicate correct...
[01:15:40] <prekitt> at least the application servers would be aware of them.
[01:16:00] <doctau> well, make replication irrelevant since everything points to the one source yes
[01:18:13] <prekitt> ok, doctau Thank you... I will create the user in each host and if my requirement change, i'll set a security domain with a db back-end.
[01:38:07] <socket-> Can anyone help me figur out why my config: http://apaste.info/Eg2 causing the following error: http://apaste.info/ogJ
[01:38:07] <jbossbot> Title: Paste #Eg2 - Apache Paste Bucket
[01:38:08] <jbossbot> Title: Paste #ogJ - Apache Paste Bucket
[01:52:25] *** rploski has joined #wildfly
[01:52:25] *** ChanServ sets mode: +v rploski
[02:16:58] <doctau> socket-: errorHandler isn't valid as the message suggests
[02:17:03] <doctau> socket-: the schema showing what is valid is at https://github.com/wildfly/wildfly/blob/8.x/build/src/main/resources/docs/schema/jboss-as-logging_1_4.xsd
[02:17:57] <socket-> i removed that and it was able to start up without errors, but no data is being wrong to audit.log or transactions.log , so im not sure what to check next
[02:18:22] <socket-> the data that SHOULD be wrote there is still going to server.log
[02:18:52] *** plarsen has quit IRC
[02:19:09] *** plarsen has joined #wildfly
[02:19:09] *** ChanServ sets mode: +v plarsen
[02:21:16] <socket-> This is the install guide im trying to make work. I'm on Step 3
[02:21:18] <socket-> http://www.ejbca.org/docs/installation-ocsp.html#Audit and Account Logging
[02:21:19] <jbossbot> Title: EJBCA - Open Source PKI Certificate Authority - OCSP Installation
[02:25:17] *** bstansberry has quit IRC
[02:33:49] *** erewhon_ has quit IRC
[02:47:08] *** wangc has joined #wildfly
[02:47:08] *** ChanServ sets mode: +v wangc
[02:47:20] <doctau> socket-: does it have it's own log4j packaged into the app? if so, it ma not be using the server logging at all
[02:52:56] <socket-> well, it's writting to server.log
[02:54:28] <socket-> http://apaste.info/rQr
[02:54:29] <jbossbot> Title: Paste #rQr - Apache Paste Bucket
[02:54:38] <socket-> ^if that helps you understand it at all
[03:01:26] <doctau> ah, your <logger category="..."> needs a <handlers><handler name="..."/></handlers> sub-element
[03:04:14] <socket-> so the handler would replace <appender-ref ref="OCSPTRANSACTION" />
[03:04:36] <socket-> so i would do like... <handler name="OCSPTRANSACTION"
[03:04:39] <socket-> ?
[03:13:10] <socket-> sweet, thanks!
[03:24:40] *** wyvern has quit IRC
[03:26:14] *** conan has joined #wildfly
[03:37:12] *** crobson has joined #wildfly
[03:37:12] *** ChanServ sets mode: +v crobson
[03:38:01] *** crobson has quit IRC
[03:46:16] *** conan has quit IRC
[03:46:30] *** lgao has joined #wildfly
[03:46:30] *** ChanServ sets mode: +v lgao
[04:08:40] *** erewhon has joined #wildfly
[04:38:34] *** rploski has quit IRC
[04:50:46] *** ghenriks has quit IRC
[05:07:54] *** erewhon has quit IRC
[05:08:04] *** plarsen has quit IRC
[05:15:16] *** Nihility has quit IRC
[05:24:46] *** Nihility has joined #wildfly
[05:24:46] *** ChanServ sets mode: +v Nihility
[05:44:32] *** erewhon has joined #wildfly
[05:49:14] *** erewhon has quit IRC
[05:50:38] *** baranowb has joined #wildfly
[06:25:07] *** lgao has quit IRC
[06:27:40] *** belong has quit IRC
[06:31:12] *** Nihility has quit IRC
[06:46:22] *** belong has joined #wildfly
[06:46:22] *** ChanServ sets mode: +v belong
[06:55:30] *** istudens has joined #wildfly
[07:03:21] *** jfclere has quit IRC
[07:24:30] *** Leon has joined #wildfly
[07:25:36] *** matzew|out is now known as matzew
[07:28:42] *** mbabacek|karm has joined #wildfly
[07:28:42] *** ChanServ sets mode: +v mbabacek|karm
[07:39:49] *** doctau has quit IRC
[07:40:15] *** belong has quit IRC
[07:54:21] *** belong has joined #wildfly
[07:54:21] *** ChanServ sets mode: +v belong
[08:11:33] *** lponceb has joined #wildfly
[08:12:30] *** cberndt has quit IRC
[08:13:06] *** cvasilak has joined #wildfly
[08:13:06] *** ChanServ sets mode: +v cvasilak
[08:15:18] *** mmatloka has joined #wildfly
[08:17:14] *** mkouba has joined #wildfly
[08:17:14] *** ChanServ sets mode: +v mkouba
[08:28:43] *** Ladicek has joined #wildfly
[08:30:54] *** mmatloka has quit IRC
[08:33:45] *** mmatloka has joined #wildfly
[08:46:47] *** opalka has joined #wildfly
[08:46:47] *** ChanServ sets mode: +v opalka
[08:48:45] *** ozizka has joined #wildfly
[08:48:46] *** ChanServ sets mode: +v ozizka
[08:49:19] *** lponceb has quit IRC
[08:52:27] *** smarlow has joined #wildfly
[08:52:27] *** ChanServ sets mode: +v smarlow
[08:57:26] *** jpkroehling has joined #wildfly
[08:57:27] *** ChanServ sets mode: +v jpkroehling
[08:58:20] *** ctomc has joined #wildfly
[08:58:20] *** ChanServ sets mode: +v ctomc
[08:58:41] *** ctomc has quit IRC
[09:01:04] *** mgoldmann|away is now known as mgoldmann
[09:15:33] *** clichybi has joined #wildfly
[09:15:34] *** ChanServ sets mode: +v clichybi
[09:20:06] *** wfink has joined #wildfly
[09:22:46] *** ozizka has quit IRC
[09:23:50] *** marekn has joined #wildfly
[09:26:07] *** emmanuel_off is now known as emmanuel
[09:26:17] *** zroubali has joined #wildfly
[09:31:24] *** lponceb has joined #wildfly
[09:37:03] *** matzew is now known as matzew|Errands
[09:43:55] <jbossbot> new jira [WFLY-4037] Error 500 accessing png,css, rest [Open (Unresolved) Bug, Critical, Stuart Douglas] https://issues.jboss.org/browse/WFLY-4037
[09:46:27] *** ktwo has joined #wildfly
[09:47:17] <ktwo> Hi, im using an older application migrated from Jboss4 on Wildfly. It isnt threadsafe meaning that if i abort an ajax request and refresh page and reclick on something it is done twice
[09:47:36] <ktwo> Jboss4 instead was only creaing one ajp-thread per session. Any idea how to achieve this with wildfly?
[09:47:45] <ktwo> however the global thread count should be still unchanged
[09:49:37] *** asoldano has joined #wildfly
[09:49:37] *** ChanServ sets mode: +v asoldano
[09:50:37] *** jfclere has joined #wildfly
[09:50:38] *** ChanServ sets mode: +v jfclere
[09:51:25] *** tsegismont has joined #wildfly
[09:53:46] *** wolfc has joined #wildfly
[09:53:46] *** ChanServ sets mode: +v wolfc
[10:02:19] *** rhusar has joined #wildfly
[10:03:01] *** pskopek has joined #wildfly
[10:03:01] *** ChanServ sets mode: +v pskopek
[10:09:10] *** whitingjr has joined #wildfly
[10:09:10] *** ChanServ sets mode: +v whitingjr
[10:12:48] *** emuckenhuber has joined #wildfly
[10:12:48] *** ChanServ sets mode: +v emuckenhuber
[10:17:19] *** matzew|Errands is now known as matzew
[10:24:39] *** rhusar has quit IRC
[10:24:47] *** rhusar has joined #wildfly
[10:26:38] *** jmesnil has joined #wildfly
[10:26:38] *** ChanServ sets mode: +v jmesnil
[10:33:24] *** pil-zzZZzz is now known as pilhuhn
[10:36:57] *** cberndt has joined #wildfly
[10:39:48] *** pruivo has joined #wildfly
[10:39:48] *** ChanServ sets mode: +v pruivo
[10:42:10] *** baranowb has quit IRC
[10:43:26] *** blSnoopy has quit IRC
[11:00:35] <jbossbot> new jira [WFLY-4038] Ability to terminate a connection by JMS User [Open (Unresolved) Feature Request, Major, Jeff Mesnil] https://issues.jboss.org/browse/WFLY-4038
[11:04:23] *** baranowb has joined #wildfly
[11:04:43] *** elguardian has joined #wildfly
[11:05:39] *** rhusar has quit IRC
[11:07:47] *** matzew has quit IRC
[11:10:06] *** rhusar has joined #wildfly
[11:15:29] *** matzew has joined #wildfly
[11:15:34] *** emmanuel is now known as emmanuel_off
[11:17:03] <jbossbot> new jira [WFLY-4039] Ability to close all consumers on a destination and the connections for these consumers [Open (Unresolved) Feature Request, Major, Jeff Mesnil] https://issues.jboss.org/browse/WFLY-4039
[11:20:10] *** lponceb has quit IRC
[11:32:18] *** sebersole has joined #wildfly
[11:32:19] *** ChanServ sets mode: +v sebersole
[11:34:57] *** rhusar has quit IRC
[11:35:22] *** lponceb has joined #wildfly
[11:35:54] *** galderz has joined #wildfly
[11:35:54] *** ChanServ sets mode: +v galderz
[11:35:55] *** lponceb has quit IRC
[11:36:11] *** lponceb has joined #wildfly
[11:37:32] *** wfink has quit IRC
[11:40:30] *** galderz has quit IRC
[11:41:18] *** clichybi has quit IRC
[11:44:32] *** cberndt has quit IRC
[11:45:09] *** rhusar has joined #wildfly
[11:48:09] *** rhusar1 has joined #wildfly
[11:49:38] *** rhusar has quit IRC
[11:50:27] *** mmatloka has quit IRC
[11:54:11] *** mmatloka has joined #wildfly
[11:55:19] *** jmesnil has quit IRC
[11:57:36] *** wangc has quit IRC
[12:00:54] *** clichybi has joined #wildfly
[12:00:55] *** ChanServ sets mode: +v clichybi
[12:05:04] *** kkhan has joined #wildfly
[12:05:04] *** ChanServ sets mode: +v kkhan
[12:06:14] *** wfink has joined #wildfly
[12:16:58] *** galderz has joined #wildfly
[12:16:58] *** ChanServ sets mode: +v galderz
[12:18:42] *** crobson has joined #wildfly
[12:18:42] *** ChanServ sets mode: +v crobson
[12:31:03] *** whitingjr has left #wildfly
[12:34:41] *** cvasilak is now known as cvasilak|lunch
[12:35:25] *** frainone has quit IRC
[12:35:36] *** frainone has joined #wildfly
[12:35:37] *** ChanServ sets mode: +v frainone
[12:43:19] *** pruivo is now known as pruivo_llunch
[12:44:53] *** emmanuel_off is now known as emmanuel
[12:50:37] *** matzew is now known as matzew|Lunch
[12:54:43] *** [devil-boy] has joined #wildfly
[13:00:56] *** rbenevides has joined #wildfly
[13:00:57] *** ChanServ sets mode: +v rbenevides
[13:01:56] *** pilhuhn is now known as pil-afk-bbl
[13:06:08] *** lponceb has quit IRC
[13:12:22] *** plarsen has joined #wildfly
[13:12:22] *** ChanServ sets mode: +v plarsen
[13:15:01] *** cvasilak|lunch is now known as cvasilak
[13:18:06] *** lponceb has joined #wildfly
[13:18:32] *** kenfinnigan has joined #wildfly
[13:18:32] *** ChanServ sets mode: +v kenfinnigan
[13:23:26] *** bbrowning_away is now known as bbrowning
[13:30:35] *** pgier has joined #wildfly
[13:30:35] *** ChanServ sets mode: +v pgier
[13:39:14] *** natedennis has quit IRC
[13:40:14] *** asoldano is now known as asoldano_lunch
[13:40:46] *** emmanuel is now known as emmanuel_off
[13:41:09] *** emmanuel_off is now known as emmanuel
[13:44:16] *** jmesnil has joined #wildfly
[13:44:16] *** ChanServ sets mode: +v jmesnil
[13:45:07] *** plarsen has quit IRC
[13:51:46] *** matzew|Lunch is now known as matzew
[13:51:52] *** ozizka has joined #wildfly
[13:51:53] *** ChanServ sets mode: +v ozizka
[13:56:08] *** ozizka has quit IRC
[13:57:06] *** plarsen has joined #wildfly
[13:57:06] *** ChanServ sets mode: +v plarsen
[14:00:19] *** fnasser has joined #wildfly
[14:00:19] *** ChanServ sets mode: +v fnasser
[14:01:54] *** pil-afk-bbl is now known as pilhuhn
[14:06:35] *** sebersole_ has joined #wildfly
[14:06:35] *** ChanServ sets mode: +v sebersole_
[14:06:54] *** sebersole has quit IRC
[14:09:42] *** rhusar1 has quit IRC
[14:10:48] *** rhusar has joined #wildfly
[14:12:08] *** pruivo_llunch is now known as pruivo
[14:12:46] *** ozizka has joined #wildfly
[14:12:46] *** ChanServ sets mode: +v ozizka
[14:20:34] *** adietisheim has joined #wildfly
[14:31:24] *** lance|afk is now known as lanceball
[14:32:09] *** fjuma has joined #wildfly
[14:32:10] *** ChanServ sets mode: +v fjuma
[14:32:11] *** pilhuhn is now known as pil-afk-bbl
[14:35:58] *** jmesnil has quit IRC
[14:37:37] *** sebersole_ is now known as sebersole
[14:38:50] *** asoldano_lunch is now known as asoldano
[14:40:28] *** whitingjr has joined #wildfly
[14:40:28] *** ChanServ sets mode: +v whitingjr
[14:42:24] *** Nihility has joined #wildfly
[14:42:24] *** ChanServ sets mode: +v Nihility
[14:46:27] *** jmesnil has joined #wildfly
[14:46:27] *** ChanServ sets mode: +v jmesnil
[14:51:19] *** whitingjr has left #wildfly
[14:55:37] *** whitingjr has joined #wildfly
[14:55:37] *** ChanServ sets mode: +v whitingjr
[15:04:33] *** lponceb has quit IRC
[15:07:39] *** moparisthebest has joined #wildfly
[15:08:01] *** jsightler_afk is now known as jsightler
[15:08:17] *** lponceb has joined #wildfly
[15:08:29] <jbossbot> new jira [WFLY-4040] add support for persistence-fragment.xml [Open (Unresolved) Feature Request, Major, David Lloyd] https://issues.jboss.org/browse/WFLY-4040
[15:16:32] *** jmesnil has quit IRC
[15:19:10] *** pil-afk-bbl is now known as pilhuhn
[15:29:38] *** whitingjr has left #wildfly
[15:34:07] *** whitingjr has joined #wildfly
[15:34:08] *** ChanServ sets mode: +v whitingjr
[15:36:14] *** zroubali has quit IRC
[15:36:33] *** zroubali has joined #wildfly
[15:36:44] *** emmartins has quit IRC
[15:42:19] *** mkouba has quit IRC
[15:44:35] *** emmanuel is now known as emmanuel_off
[15:46:00] *** bstansberry has joined #wildfly
[15:46:00] *** ChanServ sets mode: +v bstansberry
[15:47:16] *** emmanuel_off is now known as emmanuel
[16:02:54] *** clichybi has quit IRC
[16:05:20] *** mkouba has joined #wildfly
[16:05:21] *** ChanServ sets mode: +v mkouba
[16:05:55] *** matzew is now known as matzew|errands
[16:07:59] *** zathras has joined #wildfly
[16:10:58] <zathras> Hi. I am trying to get jboss-7.1.1 working on Debian Wheezy with Orcale JDK 1.8.0_20 (all 64bit). Jboss starts and shows up as a process, there are logs (console, server, boot) but without errors. So that looks ok. But... Jboss does not bind to any(!) interfaces/ports. The only biding attempt I see is a binding to 8080 which works for a split second. Info-tag on logs show a start, pasuing and stopping: Pausing Coyote HTTP/1.1 on http--0.
[16:10:58] <zathras> 0.0.0-8080
[16:11:07] *** arielb has joined #wildfly
[16:11:30] <zathras> the pausing takes place straight after the datasource/ExampleDS connection gets fired up
[16:11:36] *** plarsen has quit IRC
[16:11:42] <zathras> what can be wrong please?
[16:11:50] *** plarsen has joined #wildfly
[16:11:50] *** ChanServ sets mode: +v plarsen
[16:15:06] *** mgoldmann is now known as mgoldmann|away
[16:17:06] *** elguardian has quit IRC
[16:23:17] *** elguardian has joined #wildfly
[16:24:24] *** clerum has joined #wildfly
[16:25:27] <zathras> cpu usage also skyrockets at 99%+
[16:30:44] *** marekn has quit IRC
[16:34:32] *** rbenevides has quit IRC
[16:37:23] *** matzew|errands is now known as matzew
[16:39:47] *** rbenevides has joined #wildfly
[16:39:47] *** ChanServ sets mode: +v rbenevides
[16:40:35] *** rbenevides is now known as rbenevides|lunch
[16:40:53] *** rbenevides|lunch is now known as rbenevides|afk
[16:40:56] *** rbenevides|afk is now known as rbenevides|lunch
[16:44:45] *** jmesnil has joined #wildfly
[16:44:45] *** ChanServ sets mode: +v jmesnil
[16:46:06] *** trepel has left #wildfly
[16:50:41] *** emuckenhuber has quit IRC
[16:51:54] *** clichybi has joined #wildfly
[16:51:54] *** ChanServ sets mode: +v clichybi
[16:53:16] *** wyvern has joined #wildfly
[17:00:22] *** mbabacek|karm has quit IRC
[17:10:54] *** crobson has quit IRC
[17:13:58] *** Nihility has quit IRC
[17:14:10] *** Nihility_ has joined #wildfly
[17:14:11] *** ChanServ sets mode: +v Nihility_
[17:18:40] *** zroubali has quit IRC
[17:18:50] *** emmanuel is now known as emmanuel_off
[17:19:23] <jbossbot> new jira [WFLY-4041] Upgrade to JBossWS 4.3.2.Final, Apache CXF 2.7.13, Apache WSS4J 1.6.17 [Open (Unresolved) Component Upgrade, Major, Alessio Soldano] https://issues.jboss.org/browse/WFLY-4041
[17:19:54] *** baranowb has quit IRC
[17:21:08] *** zathras has quit IRC
[17:25:15] *** sebersole has quit IRC
[17:25:29] *** bbrowning is now known as bbrowning_away
[17:26:08] *** winem_ has joined #wildfly
[17:27:27] *** matzew is now known as matzew|away
[17:28:03] *** TinkerTyper has quit IRC
[17:28:05] *** Ladicek has quit IRC
[17:32:18] *** jmesnil has quit IRC
[17:32:52] *** TinkerTyper has joined #wildfly
[17:34:20] *** [devil-boy] has quit IRC
[17:41:07] <jbossbot> new jira [WFLY-4042] Update JSF based on Mojarra 2.2.9 [Open (Unresolved) Component Upgrade, Major, Farah Juma] https://issues.jboss.org/browse/WFLY-4042
[17:41:17] *** clichybi has quit IRC
[17:41:22] *** asoldano has quit IRC
[17:41:41] <jbossbot> new jira [WFCORE-208] Expose 'singleton' type information in read-children-types [Open (Unresolved) Feature Request, Major, Unassigned] https://issues.jboss.org/browse/WFCORE-208
[17:43:33] *** elguardian has left #wildfly
[17:43:48] *** mkouba has quit IRC
[17:45:36] *** zathras has joined #wildfly
[17:50:48] *** adietisheim has quit IRC
[17:53:00] *** mbabacek|karm has joined #wildfly
[17:53:40] *** mmatloka has quit IRC
[17:55:03] *** rbenevides|lunch has quit IRC
[17:55:50] *** rbenevides has joined #wildfly
[17:55:51] *** ChanServ sets mode: +v rbenevides
[18:01:03] *** istudens has quit IRC
[18:04:32] *** lponceb has quit IRC
[18:04:35] *** conan__ has joined #wildfly
[18:06:37] *** smarlow has quit IRC
[18:09:22] *** wolfc has quit IRC
[18:13:23] *** Leon has quit IRC
[18:13:36] *** erewhon has joined #wildfly
[18:14:55] *** arielb has quit IRC
[18:14:56] *** ozizka has quit IRC
[18:16:00] *** galderz has quit IRC
[18:16:37] *** whitingjr has quit IRC
[18:29:18] *** nahh has joined #wildfly
[18:30:35] *** ozizka has joined #wildfly
[18:30:35] *** ChanServ sets mode: +v ozizka
[18:30:37] <nahh> hey, i'm experiencing some issues with colliding modules - http://pastebin.com/BdiZEfuR. I can't use apache http components that come with jboss, but it seems that i'm doimg something wrong to exclude them. any ideas?
[18:30:37] <jbossbot> Title: Exception: Caused by: java.lang.LinkageError: loader constraint violation: - Pastebin.com
[18:30:56] *** pilhuhn is now known as pil-afk
[18:32:06] *** jfclere has quit IRC
[18:43:50] *** lanceball is now known as lance|afk
[18:49:54] *** zathras has quit IRC
[18:56:54] *** cberndt has joined #wildfly
[18:58:04] *** bbrowning_away is now known as bbrowning
[19:00:11] *** ehsavoie is now known as ehsavoie_afk
[19:01:30] *** mmatloka has joined #wildfly
[19:03:21] *** lance|afk is now known as lanceball
[19:04:27] *** cberndt has quit IRC
[19:05:54] *** pskopek has quit IRC
[19:08:16] *** moparisthebest has quit IRC
[19:10:54] *** moparisthebest has joined #wildfly
[19:12:14] *** crobson has joined #wildfly
[19:12:14] *** ChanServ sets mode: +v crobson
[19:19:26] *** cvasilak is now known as cvasilak|away
[19:25:12] *** erewhon has quit IRC
[19:26:04] *** erewhon has joined #wildfly
[19:30:53] *** opalka has quit IRC
[19:31:32] *** tsegismont has quit IRC
[19:37:14] *** kkhan has quit IRC
[19:45:45] *** rbenevides has quit IRC
[19:45:55] *** cvasilak|away has quit IRC
[19:48:09] *** rhusar has quit IRC
[19:50:27] *** th_janssen has joined #wildfly
[19:57:20] *** pruivo has quit IRC
[19:58:47] *** crobson has quit IRC
[20:11:44] *** th_janssen has left #wildfly
[20:24:12] *** frainone has quit IRC
[20:24:34] *** pw_pw has joined #wildfly
[20:28:47] <pw_pw> Got a shutdown hang in 7.2.0 when remoting client tcp connection gets stalled/mangled by firewall. Anybody around with remoting / xnio chops?
[20:31:16] *** kenfinnigan has quit IRC
[20:32:28] *** winem_ has quit IRC
[20:33:53] *** bbrowning is now known as bbrowning_away
[20:36:15] <blitman> is there a process that would allow me to add modules to my wildfly instance, other than manually figuring out the dependencies and building out the xml files?
[20:36:41] <blitman> perhaps working with maven dependencies in some way?
[20:37:57] *** lanceball is now known as lance|afk
[20:38:06] <dmlloyd> pw_pw, try configuring TCP keepalive
[20:40:17] <pw_pw> dmlloyd, I've enabled TCP keepalive, and it does prevent an indefinite hang
[20:41:52] <pw_pw> but with the server tcp keepalive set at to discard the connection after 3 failed keep alives, in 90 seconds, shutdown still takes 17 minutes
[20:46:02] <dmlloyd> the point of the keepalive is to prevent the connection from dying
[20:46:14] <dmlloyd> so that it can be shut down cleanl
[20:46:16] <dmlloyd> y
[20:49:27] <pw_pw> understood, the firewall is not discarding the connection because it is idle
[20:56:39] <pw_pw> dmlloyd, stack trace of when the server is stuck: http://fpaste.org/146968/41478472/, and xnio trace: http://fpaste.org/146975/41478519/
[20:56:40] <jbossbot> Title: #146968 • Fedora Project Pastebin
[20:56:41] <jbossbot> Title: #146975 • Fedora Project Pastebin
[20:56:53] *** nahh has quit IRC
[21:07:43] <dmlloyd> pw_pw: do you know what service in particular is being used?
[21:07:55] <dmlloyd> seems to me that the connection could be terminated aggressively
[21:08:15] <dmlloyd> e.g. is it EJB, remote naming, something else?
[21:08:39] <pw_pw> ejb, but the app has already been undeployed
[21:09:18] <dmlloyd> hmm
[21:10:28] <pw_pw> the shutdown sequence undeploys everything (jboss-cli --connect --command=undeploy), and then shutdown (jboss-cli --connect :shutdown), it hangs in the :shutdown
[21:13:04] <dmlloyd> the problem must be in the remoting service
[21:14:26] <pw_pw> dmlloyd, in production this failure is rare, to reproduce locally, start up as with ejb, connect with ejb remoting client, iptables -A OUTPUT -p tcp --spor 4447 -j DROP, then attempt shutdown
[21:15:11] <pw_pw> dmlloyd, should I try get traces with the remoting logging turned up?
[21:18:42] <dmlloyd> sure
[21:18:47] <dmlloyd> I'm reviewing the code
[21:18:52] <dmlloyd> it does try to close all connections on shutdown
[21:18:59] <dmlloyd> but it does so "nicely"
[21:19:09] <dmlloyd> as in, it wants to send a close message and get one back again
[21:19:13] <dmlloyd> maybe I should add some timeout
[21:24:30] *** wfink has quit IRC
[21:26:56] *** mbabacek|karm has quit IRC
[21:39:23] *** blitman has quit IRC
[21:43:45] *** firemanxbr has joined #wildfly
[21:49:39] *** emmartins has joined #wildfly
[21:50:47] *** mbabacek|karm has joined #wildfly
[21:51:36] *** zerick has joined #wildfly
[21:56:28] *** rbenevides has joined #wildfly
[21:56:29] *** ChanServ sets mode: +v rbenevides
[21:57:58] *** emmartins has quit IRC
[21:59:35] *** mindCrime has quit IRC
[22:04:46] *** emmartins has joined #wildfly
[22:06:41] *** fjuma has quit IRC
[22:20:28] *** xapiens has joined #wildfly
[22:54:05] <pw_pw> dmlloyd, new trace with remoting logging enabled: http://fpaste.org/147016/14147922/
[22:54:06] <jbossbot> Title: #147016 • Fedora Project Pastebin
[22:56:24] *** fnasser has quit IRC
[23:20:49] *** emmartins has quit IRC
[23:26:52] *** jsightler is now known as jsightler_afk
[23:39:52] *** TinkerTyper has quit IRC
[23:52:23] *** conan__ has quit IRC
top

   October 31, 2014  
< | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | >