By Sajid Qureshi, Alibaba Community Blog author
In this tutorial, we're going to be installing Rudder on Alibaba Cloud. Rudder is an open-source, multi-platform solution for managing configurations. Put more simply, it is a web-based audit and configuration management tool that helps you achieve automation in terms of system configuration for your production IT infrastructure. It is written in Scala and C, and it is a multi-platform solution and also relatively lightweight.
Rudder has built-in rules to perform low-level configuration patterns like confirm and ensure file content and packages are installed. Rudder also comes with several other features, some of which are listed here:
For this tutorial, you'll need the following items:
For this tutorial, it's recommended that you upgrade and update all of the available packages and repositories before installing any new package. To do this, run the yum -y update
command.
As the first part of the main steps of this tutorial, you will need to install Java RE version 8 or later, as it is required to install Rudder on your Alibaba Cloud instance. So, let's install Java, then we will proceed to install Rudder. You can get the Java Oracle JDK 11 by running the following command.
curl -O https://download.java.net/java/GA/jdk11/13/GPL/openjdk-11.0.1_linux-x64_bin.tar.gz
Once downloaded, you'll want to extract the downloaded package using the tar zxvf openjdk-11.0.1_linux-x64_bin.tar.gz
command. After which, you'll need to move it to a different location for backup using the mv jdk-11* /usr/local/
command. Then, once Java is installed, you will need to set it as the default Java configuration. You can do so using the alternatives --config java
command. If, in case, there is multiple Java configurations installed on your system, you'll need to select the latest Java JDK 11.
There are 2 programs which provide 'java'.
Selection Command
-----------------------------------------------
*+ 1 java-1.8.0-openjdk.x86_64 (/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.191.b12-0.el7_5.x86_64/jre/bin/java)
**2 /usr/jdk-11.0.1/bin/java**
Enter to keep the current selection[+], or type selection number: 2
You can check and verify this installation by checking Java version on your system using the java -version
command. If nothing goes wrong, then you should see the following output in your terminal.
java version "11.0.1" 2018-10-16 LTS
Java(TM) SE Runtime Environment 18.9 (build 11.0.1+13-LTS)
Java HotSpot(TM) 64-Bit Server VM 18.9 (build 11.0.1+13-LTS, mixed mode)
Now, you should have installed Java on your server, but you will still need to set up Java environment variables before using it otherwise it won't work properly. In order to do so, you will need to create a file using any text editor. In this tutorial, you'll be using the nano
text editor. You can also install it using the yum -y install nano
command. In particular, by entering the following:
nano /etc/profile.d/javajdk.sh
You'll also need to add the following variables into the file:
export JAVA_HOME=/usr/local/jdk-11.0.1
export PATH=$PATH:$JAVA_HOME/bin
Then, save the file and exit from the text editor. After that, run the source /etc/profile.d/javajdk.sh
command to load up the environments and apply changes.
Now that you have installed and configured all the dependencies required to install Rudder, you are ready to download and install Rudder on Alibaba Cloud instance. To do this, the first thing you'll need to do is import Rudder key into rpm using the following command.
rpm --import https://repository.rudder.io/rpm/rudder_rpm_key.pub
Next, you will need to add the Rudder repository to your system. To do this, simply, copy and paste the following content in your terminal.
echo '[Rudder_5.0]
name=Rudder 5.0
baseurl=http://repository.rudder.io/rpm/5.0/RHEL_$releasever/
gpgcheck=1
gpgkey=https://repository.rudder.io/rpm/rudder_rpm_key.pub' > /etc/yum.repos.d/rudder.repo
Once the Rudder repository is added to your system, it will be very easy to install the Rudder server. Run the yum -y install rudder-server-root
command to install it. This command will install the rudder server and also automatically install all the required components as well. After the installation is complete, you will need to modify firewall rules to open ports used by Rudder server. To do this, run the following command:
firewall-cmd --permanent --zone=public --add-port=443/tcp
Next, you'll need to reload firewall rules to apply these changes. For this, you can run the firewall-cmd --reload
command. Then, given that the Rudder server is installed on your CentOS 7 server, you will then need to configure it to work properly. You can do so by running its official initialization script using the /opt/rudder/bin/rudder-init
command. When you do this, you'll be asked to provide the network address that you want to access the server. So, enter your network details manually and click the ENTER button to continue. Next, you'll be prompted to add more networks. So, if you want to add more networks, then type Yes and continue otherwise type No to finish this script.
Now, we're up to the web interface piece of this tutorial. For this part of the tutorial, you'll want to follow these steps.
First, open up your favorite web browser to go to access your Rudder server by visiting http://YourServerIP
or http://YourDomain.com
. Naturally, you'll need to change these addresses to your actual name.
You'll be prompted to do a Rudder login with a screen like the one below:
Enter admin as both the username and password, and then click on Sign In button to proceed further. On the next page, you should see a Rudder dashboard. You can manage your nodes, rudder agent, and, rudder server from this dashboard.
In this tutorial, you have learned to install Java Oracle JDK on Alibaba Cloud. You also learned to install and configure Rudder on Alibaba Cloud. We hope now you have enough knowledge to work with Rudder.
2,599 posts | 764 followers
FollowAlibaba Cloud Community - May 15, 2023
Alibaba Cloud Community - December 20, 2022
Alibaba Cloud Community - May 17, 2024
Alibaba Clouder - November 27, 2018
Alibaba Clouder - July 5, 2019
Alibaba Clouder - November 21, 2019
2,599 posts | 764 followers
FollowAutomate performance monitoring of all your web resources and applications in real-time
Learn MoreA secure environment for offline data development, with powerful Open APIs, to create an ecosystem for redevelopment.
Learn MoreConduct large-scale data warehousing with MaxCompute
Learn MoreElastic and secure virtual cloud servers to cater all your cloud hosting needs.
Learn MoreMore Posts by Alibaba Clouder