jboss

Jboss service won't start

喜欢而已 提交于 2020-01-06 07:14:30
问题 I'm developing a GWT application in Eclipse on JBoss AS7. However, when I try to deploy, I get this 13:11:52,546 ERROR [org.jboss.msc.service.fail] (MSC service thread 1-1) MSC00001: Failed to start service jboss.persistenceunit."ctivTools_GWT.war#Catalog": org.jboss.msc.service.StartException in service jboss.persistenceunit."ctivTools_GWT.war#Catalog": Failed to start service at org.jboss.msc.service.ServiceControllerImpl$StartTask.run(ServiceControllerImpl.java:1767) [jboss-msc-1.0.2.GA

Separating application logs on jboss 4.0.5

半世苍凉 提交于 2020-01-06 04:35:26
问题 How can I upgrade JBoss AS 4.0.5 to TCL Filter, so that it supports separate application logs. Any help is appreciated in advance. Thanks, Ram 回答1: Googled for "jboss tclfilter", first hit: http://community.jboss.org/wiki/SeparatingApplicationLogs <appender name="App1Log" class="org.apache.log4j.FileAppender"> <errorHandler class="org.jboss.logging.util.OnlyOnceErrorHandler"></errorHandler> <param name="Append" value="false"/> <param name="File" value="${jboss.server.home.dir}/log/app1.log"/>

How to run jsf mojarra 2.3 in wildfly 13 with netbeans 8.2?

南楼画角 提交于 2020-01-06 04:21:07
问题 I created a project in netbeans and I add jboss_jsf-api_2.3 and after I created my faces_config.xml. But I have a error: One or more services were unable to start due to one or more indirect dependencies not being available faces config is: <faces-config xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-facesconfig_2_3.xsd" version="2.3"> </faces-config>

Allow specific linux user to bind to port 443

非 Y 不嫁゛ 提交于 2020-01-05 15:05:34
问题 I am in charge of setting up a JBoss web application that runs over SSL, thus should be accessible over port 443. Of course, it can be started up by user with root privileges, but that is something I'd like to avoid. I'd like to run it by non-privileged user so I can strictly control everything this application does and give no more access than needed. However, the problem is that non-privileged users can not bind to <1024 ports. I am aware of the reasons why this is so by design, however,

Jurisdiction policy files are not signed by trusted signers…?

ぃ、小莉子 提交于 2020-01-05 11:00:54
问题 We have next exception during starting of our application under JBoss on AIX: Caused by: java.lang.SecurityException: Cannot set up certs fo 12:56:25,055 INFO [STDOUT] r trusted CAs at javax.crypto.b.<clinit>(Unknown Source) at java.lang.J9VMInternals.initializeImpl(Native Method) at java.lang.J9VMInternals.initialize(J9VMInternals.java:194) ... 83 more Caused by: java.lang.SecurityException: Jurisdiction policy files are not signed by trusted signers! at javax.crypto.b.a(Unknown Source) at

Jurisdiction policy files are not signed by trusted signers…?

拈花ヽ惹草 提交于 2020-01-05 11:00:36
问题 We have next exception during starting of our application under JBoss on AIX: Caused by: java.lang.SecurityException: Cannot set up certs fo 12:56:25,055 INFO [STDOUT] r trusted CAs at javax.crypto.b.<clinit>(Unknown Source) at java.lang.J9VMInternals.initializeImpl(Native Method) at java.lang.J9VMInternals.initialize(J9VMInternals.java:194) ... 83 more Caused by: java.lang.SecurityException: Jurisdiction policy files are not signed by trusted signers! at javax.crypto.b.a(Unknown Source) at

Keycloak user federator

冷暖自知 提交于 2020-01-05 10:31:59
问题 I'm trying to put my new custom Federator in Keycloak so I've compiled my jar filed created using mvn clean install into standalone/configuration/providers following this guide. I then restarted the Wildfly 8 server but it doesn't seem to register my customer Federation provider. Is there a reason why this isn't working? 回答1: Add a file META-INF/services/org.keycloak.models.UserFederationProviderFactory containing the full classname of your custom provider factory . For example be.abc.def

Keycloak user federator

自闭症网瘾萝莉.ら 提交于 2020-01-05 10:31:15
问题 I'm trying to put my new custom Federator in Keycloak so I've compiled my jar filed created using mvn clean install into standalone/configuration/providers following this guide. I then restarted the Wildfly 8 server but it doesn't seem to register my customer Federation provider. Is there a reason why this isn't working? 回答1: Add a file META-INF/services/org.keycloak.models.UserFederationProviderFactory containing the full classname of your custom provider factory . For example be.abc.def

Wildfly 8.1.0 shutting down automatically

眉间皱痕 提交于 2020-01-05 09:04:14
问题 I have a multi-threaded application that is built as a web-application (.war file). The structure of the web-application is, the ServletContextListener starts the threads, and shuts them down when the server is brought down. This application works charm in JBoss-5.1.0 production server. If the same war file is deployed in the Wildfly-8.1.0, as expected the ServletContextListener brings up all the threads, the threads also runs, but after somewhere around 90-100 minutes the Wildfly starts

Cant inject EntityManager With @PersistenceContext in most basic example

你。 提交于 2020-01-05 08:59:10
问题 To test JPA with PersistenceContext injection of entity manager I have basic example project with following structure: Person entity: @Entity public class Person { @Id @GeneratedValue private long id; private String name; private String surname; public Person() { } public Person(String name, String surname) { this.name = name; this.surname = surname; } public long getId() { return id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public