Found 78 Articles for Server

How to Use SFTP to Secure File Transfer with a Remote Server

karthikeya Boyini
Updated on 20-Jan-2020 12:42:12

2K+ Views

In this article, you can learn about – how to setup SFTP (Secured File Transfer Protocol) which will help us to transfer the files from local machine to remote server secure. FTP (File Transfer protocol) is a very popular method used to transfer files from one machine to another or from remote servers.SFTP stands for Secure File Transfer protocol, is a separate protocol, which uses SSH to secure the connection and makes the file transfer which traverses the file system on both remote server & local machine.How to Connect using SFTPSFTP uses the SSH protocol to connect and establish a ... Read More

How to Setup Virtual Hosts with Apache Web Server on Linux

karthikeya Boyini
Updated on 20-Jan-2020 12:12:56

17K+ Views

In this article, you will learn about how to set up Apache virtual hosts on an Ubuntu Linux. During this process, you will learn how to serve different sites to different users depending on the domain/site they are requesting.Apache Web ServerThe Apache web server is the most popular and powerful way of serving web sites on the internet. It is used for more than half of all the active websites on the internet and is extremely powerful and flexible.Apache gives its functionality and the components to individual units which can be customized and configured independently. The basic unit that describes ... Read More

How To Setup SSH Access Without Password

karthikeya Boyini
Updated on 20-Jan-2020 11:53:18

580 Views

In this article, we will allow you to configure a password-less login for Linux system with SSH keys to connect to a remote Linux server without entering a password which will also increase the trust between two Linux servers for easy file transfer.SSH is an open source and trusted network protocol that is used to login into remote servers for executing of commands and programs. This is also used to transfer files from one computer to another computer over the network using secure copy (SCP).Creating SSH Keys# ssh-keygen -t rsa Generating public/private rsa key pair. Enter file in which to ... Read More

How to Setup Own Fileserver using Pydio on Ubuntu

karthikeya Boyini
Updated on 20-Jan-2020 11:49:12

63 Views

In this article we will learn, how to host a file sharing server using Pydio which can run well without a powerful hardware. We will install community edition but if we go for enterprise license, it is free for teams smaller than 10 persons.Pydio is a utility which looks like Dropbox and allows files sharing. Pydio has a good feature as other file syncing services, a web interface, native client for Mac, Windows and Linux, Mobile client for IOS and Andriod. It has an ability to share files with other Pydio user who are in the public.PrerequisitesUser with no root ... Read More

How to Setup HAproxy Load Balance Server for Sharing Web Traffic

karthikeya Boyini
Updated on 20-Jan-2020 11:41:55

643 Views

This article is written to prepare high availability of a website. This can also be used by those who want their website to be available to their clients or users with high availability servers and to share between their servers. It is a free and open source application used as a TCP/HTTP load balancer which will distribute web traffic to multiple servers and improves performance and reliability of the web server.InstallationAssume that load balancer HA proxy server IP address is http://192.167.57.150HAproxy Server detailsOS: Centos 6.7, IP Address: 192.168.57.150WebServer1OS: Centos 6.7, IP Address: 192.168.57.147WebServer2OS: Centos 6.7, IP Address: 192.168.57.148We need to ... Read More

How to Set-Up Shiny Server on Ubuntu

karthikeya Boyini
Updated on 20-Jan-2020 11:13:48

701 Views

Shiny is an R package that allows Linux users to convert R code into an interactive webpage and documents online. You can take your shiny apps and share them in your organisation or the world. This article explains about how to set up shiny server on Ubuntu.Installing Shiny Server on UbuntuBefore installing Shiny server, we need to install the shiny R package. To install R packages, use the following command –$ sudo apt-get install r-baseThe sample output should be like this -Reading package lists... Done Building dependency tree Reading state information... Done The following packages were automatically installed and are ... Read More

How To Set Up Multiple SSL Host With A Single Apache Server

karthikeya Boyini
Updated on 20-Jan-2020 11:07:35

3K+ Views

In this article, we will show you how to set up multiple SSL Certificates on a CentOS with Apache using a single IP address only. In general, a website administrator is restricted to use a single SSL Certificate per socket with an IP which will cost a lot of investment to the company. This restriction may lead them to buy multiple IP addresses for HTTP’s websites for their domain hosting or buy hardware that allows them to utilize multiple network adapters.This is allowed by an extension to the SSL protocol called Server Name Indication (SNI). Most current desktops and mobile ... Read More

How to Install and Configure NFS Server on Linux

Sharon Christine
Updated on 20-Jan-2020 10:03:22

8K+ Views

In this article we will learn and configure NFS (Network File System) which is basically used to share the files and folders between Linux systems. This was developed by Sun Microsystems in 1980 which allows us to mount the file system in the network and remote users can interact and the share just like local file and folders.Features of NFSNFS can be configured as a centralized storage solution.No need of running the same OS on both machines.Can be secured with Firewalls.It can be shared along with all the flavors of *nix.The NFS share folder can be mounted as a local ... Read More

How to Install and Configure Caching-Only DNS Server on Linux

Sharon Christine
Updated on 20-Jan-2020 09:43:52

2K+ Views

This article will show you – how to configure the DNS caching or forwarding server in the local environment with the use of DNS. DNS (Domain Name System) are often critical servers to get right, when we are learning things such as configure websites and servers. Most of the people will choose to use the DNS servers which is provided by the hosting company or the domain controllers.Caching DNS ServerThe configuration will cache the DNS server. This type of servers are called as resolvers because it handles recursive queries and can handle the grunts of tracking the DNS data from ... Read More

How to Install and Configure Squid Proxy Server on Linux

karthikeya Boyini
Updated on 17-Jan-2020 12:14:36

617 Views

In this article, we will learn how to install and configure the Squid proxy server. A Squid proxy server is an open source and GPLD proxy with web cache. The Squid proxy server has various uses as we can speed up the web server by caching the repeated requests from the clients and we can use it for name server query. We can use it for looking at the network or a group of people for sharing the network resources.Squid proxy is a high-performance proxy caching server for Web clients which supports FTP, gopher, and HTTP data objects. Squid can ... Read More

Advertisements