1. Enable the Red Hat Developer Tools software repository
First, you need to enable the Red Hat Developer Tools and Red Hat Software Collections (RHSCL) software repositories using subscription-manager as root:
$ su -
# subscription-manager repos --enable rhel-7-server-devtools-rpms
# subscription-manager repos --enable rhel-server-rhscl-7-rpms
Note: Change -server- to -workstation- if you aren't using the server variant of Red Hat Enterprise Linux. For developers, we recommend using Red Hat Enterprise Linux Server for access to the widest range of development tools. For developers, a no-cost subscription is available from developers.redhat.com.
Next, add the Red Hat Developer Tools key to your system. This will allow yum to verify the integrity of the download packages:
# cd /etc/pki/rpm-gpg
# wget -O RPM-GPG-KEY-redhat-devel https://www.redhat.com/security/data/a5787476.txt
# rpm --import RPM-GPG-KEY-redhat-devel
2. Install Red Hat Development Suite
Red Hat Development Suite includes Red Hat JBoss Developer Studio, Red Hat Container Development Kit, and a number of other packages. You can install all of the components with a single command, or you can choose to install only the tools you need. The yum commands need to be run as root.
Install all of the tools in Red Hat Development Suite
# yum install rh-devsuite
Install only Red Hat JBoss Developer Studio 11.3
# yum install rh-eclipse47-devstudio
Install only Red Hat Container Development Kit 3.4
# yum install cdk-minishift
3. Setup CDK and build your first app
Follow these instructions to setup CDK and build your first app.
4. To run Red Hat JBoss Developer Studio:
To run Red Hat JBoss Developer Studio, select Applications→Programming→Red Hat Eclipse 4.7 from the desktop menu, enter this on the command line:
# yum -y install rh-eclipse47-devstudio
To learn more, see the Red Hat JBoss Developer Studio documentation.