Found 128 Articles for Ubuntu

How to Install MongoDB on Ubuntu 16.04

Sharon Christine
Updated on 22-Jan-2020 06:45:35

430 Views

MongoDB is a cross-platform, document oriented database that provides, high performance, high availability, and easy scalability. MongoDB works on concept of collection and document. The official Ubuntu 16.04 MongoDB packages have not yet been published by the MongoDB maintainers. This article explains about “How to install Mongo DB on Ubuntu and start the MongoDB service on boot”Adding the MongoDB RepositoryMongoDB is generally included in a Ubuntu package repositories. However, a legitimate MongoDB repository affords the most upto date version change in an endorsed manner.To carry out this process, we first must import the key for the legitimate MongoDB repository using ... Read More

How To Install Jenkins on Ubuntu

Sharon Christine
Updated on 22-Jan-2020 06:23:35

505 Views

Jenkins is a powerful application that allows continuous integration and continuous delivery of projects, regardless of the platform you are working on. It is a free source that can handle any kind of build or continuous integration. You can integrate Jenkins with a number of testing and deployment technologies. This article explains about- “How to install Jenkins on Ubuntu”To add Jenkins PPA on Ubuntu, use the following command –$ wget -q -O - https://pkg.jenkins.io/debian/jenkins-ci.org.key | sudo apt-key add - $ sudo sh -c 'echo deb http://pkg.jenkins.io/debian-stable binary/ > /etc/apt/sources.list.d/jenkins.list'Now update the packages, use the following command –$ sudo apt-get updateTo ... Read More

How to Install Java with Apt-Get on Ubuntu 16.04

Sharon Christine
Updated on 22-Jan-2020 06:15:40

837 Views

Java programming language was originally developed by Sun Microsystems which was initiated by James Gosling and released in 1995 as core a component of Sun Microsystems’ Java platform (Java 1.0 [J2SE]).The latest release of the Java Standard Edition is Java SE 8. With the advancement of Java and its widespread popularity, multiple configurations were built to suit various types of platforms. Ex − J2EE for Enterprise Applications, J2ME for Mobile Applications.The new J2 versions was renamed as Java SE, Java EE and Java ME respectively. Java is guaranteed to be a Write Once, Run Anywhere.This article explains about ‘How to ... Read More

How to Install Grunt on Ubuntu?

Sharon Christine
Updated on 22-Jan-2020 06:08:04

1K+ Views

Grunt (The JavaScript assignment Runner) is an automation tool to perform repetitive duties like compilation, unit testing etc. Grunt and Grunt plugins are hooked up and managed through NPM, the Node.Js package manager. This article explains about – How to install Grunt on Ubuntu.To install grunt on ubuntu, it should require pre-installed Node.js and NPM. To verify the version of Node.js, use the following command –$ node --versionThe sample output should be like this –v6.9.2To verify the version of NPM, use the following command –$ npm --versionThe sample output should be like this –3.10.9If you wants to install Node.js and ... Read More

How to Enable or Install Byobu for Terminal Management on Ubuntu 16.04

karthikeya Boyini
Updated on 14-Jul-2020 11:57:17

972 Views

In this article, we will learn about Byobu on the Ubuntu 16.04, Byobu which is a terminal multiplexer and easy to use, Byobu is used to have multiple windows, consoles and split panes within the windows and will also show the status badges and notifications on the terminal.To complete this tutorial we needed an Ubuntu 16.04 installed and a Linux user with sudo permissions.Installing or Checking the ByobuAs a default feature of Ubuntu 16.04, Byobu is installed. However, as a practice, we will check the installation and version and if not we will install the Byobu.To check the Byobu is ... Read More

How to Enable Or Add Swap Space on Ubuntu 16.04

karthikeya Boyini
Updated on 21-Jan-2020 10:48:13

331 Views

In this article, we will learn how to enable or add the swap partition on Ubuntu 16.04, actually, the swap will increase the chance of responsiveness of the servers by guarding the out of memory errors for the applications, by default Ubuntu will not enable the swap space. We will learn how to add or enable the swap file for Ubuntu 16.04 servers.Swap is the location or the file which can handle the temporary data which is not required immediately by RAM but will be used to increase the amount of information that the server can handle for its working ... Read More

How to Create a RAID 5 Storage Array with ‘mdadm’ on Ubuntu 16.04

Sharon Christine
Updated on 21-Jan-2020 10:21:13

2K+ Views

In this article, we will learn how to create a RAID 5 Array configuration using the ‘mdadm’ utility.The ‘mdadm’ is a utility which is used to create and manage storage arrays on Linux with RAID capability where the administrators are having great flexibility in managing the individual storages devices and creating the logical storage with a high performance and redundancy.RAID 5 Array is a type where we implement by striping the data across the total available devices. Every component of the each stripe is calculated by parity block. If any device fails the parity block, it will use the remaining ... Read More

How to Create a RAID 0 Storage Array with ‘mdadm’ on Ubuntu 16.04

karthikeya Boyini
Updated on 21-Jan-2020 10:15:50

2K+ Views

In this article, we will learn how to create a RAID 0 Array configuration using the ‘mdadm’ utility.The ‘mdadm’ is a utility which is used to create and manage storage arrays on Linux with RAID capability where the administrators are having a great flexibility in managing the individual storage devices and creating the logical storage with a high performance and redundancy.RAID 0 array will work by dividing the data into small chunks and strips that data across the available storage disks, which means that each and every storage disk will contain a portion of data and when retrieving the data ... Read More

How To Configure and Install Redis on Ubuntu Linux

Sharon Christine
Updated on 21-Jan-2020 09:33:06

447 Views

In this article we will learn how to configure Redis, Redis is an in-memory Key-value store which is popular for its flexibility, performance and used with wide language support. We will configure this on the Ubuntu Linux server. To do this demo we need a non-root user and we will set Sudo privileges to the user to perform.Install the Build and Test DependenciesTo get the latest version of Redis, we will get the latest source code and will compile and install the software. For that, we needed to install the dependencies for the software compiling.We also need to install build-essential ... Read More

How to Check Which Apache Modules are Enabled/Loaded in Ubuntu 16.04

karthikeya Boyini
Updated on 29-Feb-2024 13:55:47

246 Views

Apache is an open supply program on hand without cost. It runs on 67% of all web servers. It is speedy, risk-free, and comfortable. It may be extremely custom-made to satisfy the wants of many one-of-a-kind environments via utilizing extensions and modules.To install apache, use the following commands-$ sudo apt-get update $ sudo apt-get install apache2 apache2ctlapcahe2ctl is a front end to the Apache HyperText switch Protocol (HTTP) server. It is designed to aid an administrator to control the functioning of the Apache HTTP daemon. To get the more information about apache2 modules, use the following command – $ man ... Read More

Previous 1 ... 7 8 9 10 11 ... 13 Next
Advertisements