Found 78 Articles for Server

How to Install and Configure an NTP Client and Server on Linux?

Sharon Christine
Updated on 27-Jan-2020 07:52:33

4K+ Views

This article will help to know how to configure an NTP (Network Time Protocol) server and client on RHEL/Cent OS Linux to manage the system clock with to help of an NTP server.NTP (Network Time Protocol)NPT is used to synchronize a computer’s machine’s time with another time source. In RHEL / CentOS Linux we can use NTP or OpenNTPD server, which provides client and server software for time synchronization.Installing NTP SoftwareThe NTP package have utilities and daemons that will synchronize the machine time to Coordinated Universal Time (UTC) via the NTP protocol. The NTP package has ntpdate (Which updates the ... Read More

How To Fix and Protect The Linux Server Against the Dirty COW Vulnerability on Ubuntu

Sharon Christine
Updated on 27-Jan-2020 06:57:48

172 Views

In this article, we will learn about how to fix the Dirty Cow Linux Vulnerability. The Dirty Cow Linux Vulnerability was escalated on Oct 19 2016 as it is a privilege escalation vulnerability in the Linux OS on kernel level which was disclosed with the name as Dirty COW as it will create a condition that kernel handles COW (Copy-on-Write), which exists for a long time since 2007 from kernel version 2.6.22 as most of the servers are at risk.Dirty Cow means that a regular or an unprivileged user on the server will gain write access to all the files ... Read More

How To Install Parse Server on Ubuntu

Sharon Christine
Updated on 23-Jan-2020 11:25:06

262 Views

Parse server is an open source and is like mobile back-end. It is owned by Facebook since 2013. This server may be deployed to any infrastructure that may run Node.Js and MongoDB. This article explains about – How To Install Parse Server on Ubuntu.Prerequisitespython-software-properties packageNode.jsMongoDBTo add python-software-properties package, use the following command-$ sudo apt-get install build-essential git python-software-propertiesThe sample output should be like this –Reading package lists... Done Building dependency tree Reading state information... Done build-essential is already the newest version (12.1ubuntu2). build-essential set to manually installed. The following packages were automatically installed and are no longer required:    linux-headers-4.4.0-31 ... Read More

How to Install LAMP using Tasksel in Linux

Sharon Christine
Updated on 23-Jan-2020 11:17:48

480 Views

LAMP stack is a bunch of open source software that uses Linux as an operating system. LAMP is an abbreviation for Linux, Apache, MySQL and PHP. It is used to setup web development environment. Here, we will learn about – How you can install LAMP stack using tasksel on Ubuntu. For this article, we expect that you have a just right figuring out of Linux working method and its terminal. Installation of LAMP requires root privileges on the host machine.Installing ProcessTo install Tasksel, use the following command –$ sudo apt-get install taskselThe sample output should be like this –Reading package ... Read More

How to Install and Setup Cacti on Ubuntu 16.04

Sharon Christine
Updated on 23-Jan-2020 11:05:17

225 Views

Cacti is a Network monitoring device that creates personalized graphs of server efficiency. It is accessed and managed via an online entrance-finish. This article explains on – How to install and set up cacti on Ubuntu.PrerequisitesLAMPSNMP, SNMPD and RRDtoolsTo install LAMP, add the following repository as shown below –$ sudo add-apt-repository 'deb http://archive.ubuntu.com/ubuntu trusty universe'To update the packages, using the following command –$ sudo apt-get updateTo install LAMP, use the following command –$ sudo apt-get install apache2 mysql-server-5.6 php libapache2-mod-phpThe sample output should be like this –Reading package lists... Done Building dependency tree Reading state information... Done libapache2-mod-php is already ... Read More

How To Install and Configure Webmin on Ubuntu 16.04

Sharon Christine
Updated on 23-Jan-2020 10:53:34

450 Views

In this article, we will learn – How we can install Webmin on Ubuntu 16.04. Webmin is a web-based control panel with dashboards for any Linux server machines, which allows you to control your server with a simple interface, where we can change the settings of common application packages with simple clicks. Webmin can also be used to add new users accounts and update the packages on the server from the Webmin dashboard itself.Pre-requisitesUbuntu 16.04 machine with a non-root user with Sudo permissions.Apache, PHP, and MySQL Installed on the Ubuntu 16.04 machine.Installing Webmin on Ubuntu 16.04Assuming that we have all ... Read More

How To Configure and Setup Ghost on Ubuntu 16.04

Sharon Christine
Updated on 23-Jan-2020 08:15:27

237 Views

In this article, we will learn how to setup and Configure Ghost on Ubuntu 16.04. Ghost os a light-weight and open-source blogging programs which can be used easily and can be customizable, also have many more themes to use.Pre-RequisitesIn this setup, we need the following –Ubuntu 16.04 installed server machine.A non-root user with Sudo permissions on the machine.Nginx web server installed on the server.Ghost Installation on Ubuntu 16.04We will install the ghost using the Ghosts official repository which is hosted on GitHub.First, we will get the latest version of the Ghost using the bellow command.$ wget https://ghost.org/zip/ghost-latest.zip Output:    --2017-05-18 ... Read More

Mastering User Management on Linux

karthikeya Boyini
Updated on 23-Jan-2020 07:09:12

163 Views

Are you working as Linux admin? Do you create/delete users in Linux Command line? If yes, then this article is for you guys! After reading the below content, you will be able to manipulate users and group permissions in Linux system.In the below example sai is the username.usermodThe usermod command modifies the approach account records to reflect the alterations which can be targeted on the command line.To get more information about usermod, use the following command –$ usermod --helpThe sample output should be like this –-c, --comment        COMMENT new value of the GECOS field -d, --home HOME_DIR ... Read More

Mastering Package Management system with Dpkg

karthikeya Boyini
Updated on 23-Jan-2020 06:55:03

155 Views

Dpkg is a device to install, build, dispose of and manage Debian programs and is managed utterly through command line parameters, which consists of precisely one action and zero or extra options. The action parameter tells to dpkg, what to do and options to manipulate the conduct of the action is some way. This article explains about -“Mastering Package Management system with Dpkg”.To get the options of dpkg, use the following command –$ dpkg --helpThe sample output should be like this –Commands: -i|--install           ... | -R|--recursive ... --unpack           ... Read More

Learn Modern Service Management System (Systemd) on Linux

karthikeya Boyini
Updated on 23-Jan-2020 06:38:40

484 Views

systemd is a framework and service manager for Linux operating system. At a point when keep running as the first process on boot (as PID 1), it goes about as init system. that raises and keeps up userspace services.This article explains -“Learn modern service management system (Systemd) on Linux”To get more information about systemd, use the following command as shown below –$ systemd -hThe sample output should be like this –Starts up and maintains the system or user services. -h --help                                     ... Read More

Advertisements