how to set http version to 1.1 only in wildfly server? - wildfly

A Issue raised to change HTTP version 1.1 only in web server configuration.
I am using wildfly 10 as my server.
I have tried using connector varible but it is not allowed in wildfly 10 so help me out with this.

In undertow subsystem configuration you should add require-host-http11="true" to your http/http-listener.
for more configuration options see https://wildscribe.github.io/WildFly/13.0/subsystem/undertow/server/http-listener/index.html#attr-require-host-http11

Related

Jboss EAP 6.4 Server logs are not properly updated

JBoss startup and Server logs are not getting updated completely like started in XXXX ms. But all the services are being deployed successfully. Is there any way to debug why the logs are not printing?
Thanks,
Kusuma
Just check on your the logging subsystem configuration in your standalone.xml.
If that's not the issue, this is probably a problem with your application configuration and not JBoss, probably you just have to exclude some logging libraries in your jboss-deployment-structure.xml, to use the provided and not the jboss instance libs.

configure redelivery-delay-multiplier on wildfly 8

I try to configure a JMS queue with delay multiplier in WildFly 8.2.0, but I have an issue during stadalone.xml parsing when the server is started. Obviously, the parameter <redelivery-delay-multiplier> is not recognised.
But when I see the release note of WildFly 8.2.0, it's shipped with HornetQ 2.4.5 which includes this parameter.
Any one please has an idea about this configuration and how to make the delay multiplier work on WildFly 8?
Thank you

Secure JBoss EAP 6 JMX channel

I'd like to know if it's possible to secure access to the JMX channel when running JBoss EAP 6 (or WildFly). AFAIK, the only available check is username and password which can be added just for remote connections.
Thanks!
The packaging of JMX has been removed from JBoss EAP due to probable security vulnerabilities, JMX was part of JBoss in their AS versions. I assume that you have deployed the JMX yourself onto your JBoss EAP server. So, definately, you will not get anything from JBoss EAP to secure your JMX access. But yes, you can implement your own username and passwrod authenticaiton.
Hope this helps.

Different jboss version on same machine

Now we are using jboss 6.1.1 final version on our production server. Now we want to deploy our new project on jboss AS 7.
So is it possible to run different version of jboss on same machine? Please provide some guidance regarding same.
yes you can deploy new project on different server.
Only thing you have to take care is Port numbers. Because by default both server uses same port numbers like 8080 for http and 8443 for https. If project is already running on Jboss6 and now you are configuring Jboss7 then change standalone.xml in <JBOSS_HOME>\standalone\configuration.
Find <socket-binding-group tag, it should be at bottom of file.
Change port numbers like, 8090 for http and 8442 for https.

JBoss AS 7.1.1 Remote Application Monitoring

atm I'm facing some problems when I'm trying to connect to my JBoss AS 7.1.1 (on a Linux-Server) via JMX remotely and monitor my Java-Apps from a Win-7 client. I can only see the standard JVM settings but no app-specific ones.
I learned that I have to include the jars in the Classpath while starting jvisualvm on my Windows 7 client.
that looks like this:
"C:\Program Files (x86)\Java\jdk1.7.0_07\bin\jvisualvm.exe" -cp:a C:\Users\myuser\jboss-as-7.1.1.Final\modules
But still it is not working...when I try to connect via:
service:jmx:remoting-jmx://:9999
Is there any special configuration I have to change in my JBoss server besides enabling jmx-management in standalone.xml?
Thanks in advance!