• Contact
  • Contact Us
  • Disclamer
  • Home 1
  • Home 2
  • Home 3
  • Privacy Policy
Tuesday, May 13, 2025
How VPS - How to use/setup VPS
  • Login
  • Home
  • Management guides
    • Web servers software
      • Directadmin
      • Hocvps Script
      • Centmin Mod
      • CWP
      • Kloxo-MR
      • Plesk
    • Control Panels
    • Securing VPS/Servers
      • SSL Certificates
      • Upgrading
      • Authentication
  • Operating System
    • CentOS
    • Fedora
    • Debian
    • Linux
    • Arch
    • BSD
    • CoreOS
  • Reviews
  • Coupon
    • Domain Coupon
    • Hosting Coupon
No Result
View All Result
  • Home
  • Management guides
    • Web servers software
      • Directadmin
      • Hocvps Script
      • Centmin Mod
      • CWP
      • Kloxo-MR
      • Plesk
    • Control Panels
    • Securing VPS/Servers
      • SSL Certificates
      • Upgrading
      • Authentication
  • Operating System
    • CentOS
    • Fedora
    • Debian
    • Linux
    • Arch
    • BSD
    • CoreOS
  • Reviews
  • Coupon
    • Domain Coupon
    • Hosting Coupon
No Result
View All Result
How VPS - How to use/setup VPS
No Result
View All Result
Home Operating System CentOS

How to Install Scala on CentOS 7

How VPS by How VPS
October 1, 2019
in CentOS
0
0
SHARES
21
VIEWS
Share on FacebookShare on Twitter

Contents

  1. Prerequisites:
  2. Step 1: Update your system
  3. Step 2: Install OpenJDK Environment
  4. Step 3: Download and install Scala
  5. Step 4: Examples of using Scala
  6. Want to contribute?


Scala is an object-oriented and functional programming language. It a popular language that has been used for developing applications, such as Spark, Akka, and Lift.

In this article, I will show you how to install Scala on a CentOS 7 server instance.

Prerequisites:

All of the instructions in this article are applicable to a non-root sudo user using CentOS 7. Thus, you need to deploy a fresh Vultr CentOS 7 server instance and create a non-root sudo user before diving in.

Step 1: Update your system

After logging in as the non-root sudo user from your SSH terminal, the first thing you need to do is to update the system:

sudo yum update -y && sudo reboot

Use the same user to log in again after the system reboots.

Step 2: Install OpenJDK Environment

Scala requires the Java runtime version 1.6 or later. Here, you can install the latest version of OpenJDK Runtime Environment 1.8.0 using YUM:

sudo yum install java-1.8.0-openjdk.x86_64

You can validate the installation of Java runtime by running the following command:

java -version

This command should output something that resembles:

openjdk version "1.8.0_91"
OpenJDK Runtime Environment (build 1.8.0_91-b14)
OpenJDK 64-Bit Server VM (build 25.91-b14, mixed mode)

Besides, you need to set the “JAVA_HOME” and “JRE_HOME” environment variables.

sudo cp /etc/profile /etc/profile_backup      #Backup the profile file in order to prevent unintentional mistakes
echo 'export JAVA_HOME=/usr/lib/jvm/jre-1.8.0-openjdk' | sudo tee -a /etc/profile
echo 'export JRE_HOME=/usr/lib/jvm/jre' | sudo tee -a /etc/profile
source /etc/profile

Now, you can print the two environment variables for review:

echo $JAVA_HOME
echo $JRE_HOME

Step 3: Download and install Scala

Download and install the latest Scala RPM file from the Scala official website, which at the time of writing is 2.11.8:

cd ~
wget http://downloads.lightbend.com/scala/2.11.8/scala-2.11.8.rpm
sudo yum install scala-2.11.8.rpm

Verify your installation:

scala -version

The output should resemble:

Scala code runner version 2.11.8 -- Copyright 2002-2016, LAMP/EPFL

Step 4: Examples of using Scala

The Scala installation is complete. Let’s have a look at how to use it.

Run the Scala code runner and get into the Scala shell:

scala

In the Scala shell, you can calculate the result of a formula:

scala> 1+2
res0: Int = 3

or, execute a function:

scala> println("Hello Scala")
Hello Scala

If you want to quit the Scala shell:

:q

You can also use the scalac program to compile .scala source code.

Write the source code of an example program using vi:

vi hello.scala

Input the code segment below:

object HelloWorld {
  def main(args: Array[String]) {
    println("Hello World!")
  }
}

Save and quit:

:wq

Compile the source code with scalac:

scalac hello.scala

The program will output two compiled files: HelloWorld.class and HelloWorld$.class. You can run the compiled file with scala:

scala HelloWorld

The output will read:

Hello World!

Moreover, you can embed Scala functions into a bash script, and then run the script using bash:

vi script.sh

Populate the file with:

#!/bin/sh
exec scala "$0" "$@"
!#
object HelloWorld extends App {
  println("Hello world!")
}

HelloWorld.main(args)

Save and quit:

:wq

Run the script in the bash shell:

sh script.sh

Again, the output will read:

Hello world!

Want to contribute?

You could earn up to $300 by adding new articles

Submit your article
Suggest an update
Request an article
Previous Post

How to Install Tiny Tiny RSS on CentOS 7

Next Post

How To Install Vesta CP on CentOS 6

Next Post

How To Install Vesta CP on CentOS 6

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

No Result
View All Result

Recent Post

Install Imagemagick on CentOS
CentOS

Install Imagemagick on CentOS

by How VPS
June 28, 2023
0

This is how I installed Imagemagick on a vanilla CentOS server Start off by installing the prerequisites yum install php-pear...

Read more
how to Check phpinfo

How to Check phpinfo of Hosting or VPS?

June 28, 2023
Failed to download metadata for repo 'appstream' on Centos 8

How to fix error: Failed to download metadata for repo ‘appstream’ on Centos 8

February 25, 2022
How to Fix MySQL Error "Plugin 'InnoDB' registration as a STORAGE ENGINE failed"?

How to Fix MySQL Error “Plugin ‘InnoDB’ registration as a STORAGE ENGINE failed”?

November 17, 2020
How to optimize Mysql or MariaDB

How to optimize Mysql or MariaDB

November 3, 2020

Recent News

  • Install Imagemagick on CentOS
  • How to Check phpinfo of Hosting or VPS?
  • How to fix error: Failed to download metadata for repo ‘appstream’ on Centos 8

Category

  • Arch
  • Authentication
  • Backups
  • BSD
  • Centmin Mod
  • CentOS
  • Control Panels
  • CoreOS
  • CWP
  • Debian
  • Directadmin
  • Encryption
  • Fedora
  • Firewalls
  • Hocvps Script
  • Hosting providers
  • Kloxo-MR
  • Linux
  • Mitigations
  • Operating System
  • Plesk
  • Reviews
  • Securing VPS/Servers
  • Security Patches
  • SSL Certificates
  • Uncategorized
  • Upgrading
  • VPS/Servers management guides
  • Vulnerability Detection
  • Web servers software
  • Webhosting Control Panel
  • About
  • Advertise
  • Careers
  • Contact

© 2025 JNews - Premium WordPress news & magazine theme by Jegtheme.

No Result
View All Result
  • Home
  • Management guides
    • Web servers software
      • Directadmin
      • Hocvps Script
      • Centmin Mod
      • CWP
      • Kloxo-MR
      • Plesk
    • Control Panels
    • Securing VPS/Servers
      • SSL Certificates
      • Upgrading
      • Authentication
  • Operating System
    • CentOS
    • Fedora
    • Debian
    • Linux
    • Arch
    • BSD
    • CoreOS
  • Reviews
  • Coupon
    • Domain Coupon
    • Hosting Coupon

© 2025 JNews - Premium WordPress news & magazine theme by Jegtheme.

Welcome Back!

Login to your account below

Forgotten Password?

Retrieve your password

Please enter your username or email address to reset your password.

Log In
Thabet