December 2015
M T W T F S S
 123456
78910111213
14151617181920
21222324252627
28293031  

Categories

December 2015
M T W T F S S
 123456
78910111213
14151617181920
21222324252627
28293031  

Wildfly 8.2 Installation on Centos 6.7 x86_64

Distributives:

Centos – 6.7 (http://centos.org/modules/tinycontent/index.php?id=15) WildFly – 8.2 (http://wildfly.org/downloads/) jdk 8 (http://java.sun.com) Before Install: # sed -i.bkp -e “s/SELINUX=enforcing/SELINUX=disabled/g” /etc/selinux/config # sed -i.bkp -e “s/timeout=5/timeout=0/g” /boot/grub/grub.conf # service iptables stop # chkconfig iptables off # reboot JDK8 Installation

http://javadev.org/java_basics/installation/jdk/8/linux/centos/6/x86_x64/

Add User and Groups $ groupadd -g 1001 wildfly_admins $ useradd \ -g wildfly_admins \ -d […]