Configure External domain to Openshift

I have Bronze package , http://jbosswildfly-hybridacumen.rhcloud.com/ i have 3 domain names hybridacumen.ie, hybridacumen.com, hybridacumen.eu I set up my cname record for all three Domains to point to jbosswildfly-hybridacumen.rhcloud.com/ on open shift i created three aliases for 3 domain names but this does not work . for one domain i get ssl error i do not … Read more

Unable to run Wildfly 8.1.0 as Service on Windows Server 2012 – Extended Attributes are Inconsistent?

I’m attempting to get Wildfly 8.1.0.Final to run as a service on Windows Server 2012. I cd’d into %Wildfly_Home%\bin\service and ran service install in cmd. It output this: Using the X86-64bit version of prunsrv Success A service named Wildfly was added to my Windows Services. But when I attempt to start it, it tells me … Read more

How to run Wildfly best?

Within development I start Wildfly 8 as standalone. Then I copy all my WAR files to /standalone/deployments and run them over http://localhost:8080/projectname/. When thinking of a productive server environment, how would Wildfly 8 be run best? Would it be a good approach to automatically start the /bin/standalone.sh after system boot? Answer Leaving the deployment scanner … Read more

jboss cluster in ec2 with s3ping

Am trying to get s3ping discovery method working in wildfly 8.0.0. I am using default Amazon Linux AMI and using chef to launch instances in ec2 based on this tutorial http://aws.typepad.com/awsaktuell/tutorial/. I have deployed a sample web app which is clustered. As of now i have a single node. But in the near future i … Read more

Reverse-Proxy fails

I have Apache and Wildfly installed on a Ubuntu 14.04.2 Server and I created a Reverse-Proxy, so that Apache proxies Wildfly. It works, but only half of it. If I hit http://myserver/wildfly/myprogram/index.xthml I do get the entry page, but the links are not adapted properly. Links and image sources ignore the http://myserver/wildfly/myprogram/ entry and are … Read more

How to configure virtual host in nginx for wildfly

I need to setup virtualhost on nginx for wildfly server. i was using apache virtual host earlier and i want to do similar settings in nginx I have followed steps given in this article http://nginx.org/en/docs/http/request_processing.html and http://developer-should-know.tumblr.com/post/112512171397/nginx-serving-static-content-and-java-application Here is my conf file server { listen 80; server_name www.example.com; access_log logs/www.example.com_access.log; error_log logs/www.example.com_error.log; location / { … Read more

Wildfly 10 not detecting environmental variable when run as a service in ubuntu

I have an environmental variable say APP_PROPERTIES pointing to /etc/wildfly/app.properties. When I run wildfly from console using standalone.sh it is taking the properties from the environmental variable, but when I run wildfly as a service, it is not loading the file. The log is as follows: 20:36:17,567 WARN [org.springframework.beans.factory.config.PropertiesFactoryBean] (ServerService Thread Pool — 76) Could … Read more