Questions tagged [wildfly]

34 questions
4
votes
1 answer

Intermediate certificate not in keystore even though I added it

I was tasked to set up an ssl in a server, this server uses wildfly, so I have to make a keystore that contains all of the certificates that I got, the server certificate, the intermediate and the keyfile. First I chained up the server cert and the…
logax
  • 129
  • 3
  • 14
3
votes
2 answers

Linux file-handle (pipe) leak in WildFly 12+

I am trying to identify if behaviour that I am observing is correct or if WildFly is leaking file handle descriptors. During our standard performance testing after upgrading from WildFly 11 to 14 we ran into an issue regarding too many open files.…
2
votes
1 answer

WildFly sending private key instead of certificate

I'm trying to configure a WildFly server running in Docker to use SSL: created a private key: keytool -genkey -alias axcelpk -keyalg RSA -keystore server.keystore -keysize 2048 -validity 1825 created a CSR: keytool -certreq -alias axcelPK -keystore…
2
votes
0 answers

Wildfly: http to https redirect on the same port

Question How does one redirect a http-request to a https-request on the same port? Use case Someone opens mypage:1234 but omits the protocol. The user would expect to enter the page none the less. Similar Problem(s) The solution provided here…
2
votes
1 answer

Start server service with wildfly

I need to start a service with certain IP using Wildfly Already follows tutorials Wildfly start fine with local IP which is 127.0.0.1 also with 0.0.0.0 But when I change into mine or other IP it got error like this 11:12:58,057 ERROR…
user578558
  • 21
  • 1
  • 3
1
vote
1 answer

Getting rid of the error about the loss of content when updating was files in WildFly (or Jboss EAP) forever

It is not a trivial question about an error on WildFly(10): WFLYSRV0137: No deployment content with hash edba0011304daa1b2648eb4848a44536acbbebf6 is available in the deployment content repository for deployment 'ANYDEPLOYMENT'. This is a fatal …
TheDESTROS
  • 385
  • 3
  • 10
1
vote
1 answer

How to prepare and add Godaddy SSL wildcard certificate to Wildfly/JBoss

I have a done some research into how to prepare the wildcard certificate and add it in a manner in which it could be used within WildFly/JBoss (I'm using WildFly 16, but it should be the same for JBoss). Files I have (and what they are - gathered…
1
vote
1 answer

Cannot start wildfly with systemd

Centos 7 Wildfly-16.0.0.Beta1 JDK 1.8.0_212 I cannot start wildfly with "systemctl start wildfly" but I can start it with "/opt/wildfly/bin/launch.sh standalone standalone.xml 192.168.56.200 &" Config file: # cat /etc/wildfly/wildfly.conf # The…
grepmaster
  • 143
  • 2
  • 4
  • 14
1
vote
3 answers

wildfly and logrotate: wildfly still logs messages to already rotated server.log

For wildfly (on linux) I need following logging scenario: daily rotation of server.log and removing old log files which are older than 90 days. I don't see a way to configure this in wildfly/log4j (the problem is here to remove old log files, but I…
Steffen
  • 989
  • 3
  • 13
  • 31
1
vote
1 answer

Configure WildFly to use HTTPS

I am using WildFly25, and have it running with default settings. Server console WildFly Full 25.0.0.Final (WildFly Core 17.0.1.Final) started in 3938ms - Started 308 of 547 services (338 services are lazy, passive or on-demand) Http management…
Richard
  • 145
  • 1
  • 10
1
vote
2 answers

Wildfly : Too many open files

We recently got a "too many open files" error in our production Wildfly 17 on debian 9. A simple restart of the wildfly service got rid of the error but I'd like to avoid the problem to come back. I'd like to increase the limit but I'm not sure what…
Ror
  • 321
  • 3
  • 16
1
vote
0 answers

Wildfly Elytron container managed authentication with federated SAML2 IDP

I'm trying to set up container-managed authentication with Wildfly 24 and would like to use an existing (federated) Shibboleth IDP. I haven't found docs detailing that use case, so I opted for the proxy auth scenario, e.g. Apache + Shibboleth SP…
fuero
  • 9,591
  • 1
  • 35
  • 40
1
vote
1 answer

Logging username in KeyCloak access-log

In KeyCLoak 15.0 (that is WildFly 23.0), I’m trying to configure access-log to also include username (or any ID of the user) when a user is logged in. In keycloak/standalone/configuration/standalone.xml, I…
McLayn
  • 61
  • 1
  • 7
1
vote
0 answers

WFLYEE0097: Module may not be a child of the EAR's library directory. When trying to deploy EAR

I am trying to deploy a web application to WildFly. Right now, I'm simply dropping an ear file in the /standalone/deployments directory. When I do, I get the following error message in the marker file: {"WFLYCTL0080: Failed services" =>…
1
vote
2 answers

JBoss EAP 7, IO Subsystem workers configurations

I am asking here because I cannot find much information on this... What is the main use of the setting for "Io threads" and "Task max threads" under the IO subsystem workers configuration? Everywhere I read, people are saying that the "Io threads"…
iWantSimpleLife
  • 128
  • 1
  • 5
1
2 3