Browsed by
Tag: #centos

Setting Up Apache WebDAV Storage With LDAP Authentication

Setting Up Apache WebDAV Storage With LDAP Authentication

Hey there! Let’s talk about WebDAV today. If you don’t know what WebDAV is, I recommend you to read this wiki. It stands for Web Distributed Authoring and Versioning. It is a set of extensions to HTTP that facilitates collaborative editing and file management. In a nutshell, it enables write permission to the users, who used to have only read access afforded by HTTP. Nowadays, it can also be utilized by collaboration and versioning systems like SVN and GIT. Now, without…

Read More Read More

Deploying OpenLDAP server on CentOS7 – Getting Started Guide

Deploying OpenLDAP server on CentOS7 – Getting Started Guide

Hello there! In this post, I’m going to cover the installation and initial configuration of open-source directory server called OpenLDAP. The platform I’m using here is CentOS 7. So, if you’re on different distribution or maybe in different version, the mentioned steps might slightly vary. What is OpenLDAP? OpenLDAP is an open-source implementation of Lightweight Directory Access Protocol, which is developed and maintained by OpenLDAP Project. LDAP is a platform-independent protocol and most of the linux distribution utilizes it for…

Read More Read More

How to Increase Size of Root Partition in CentOS

How to Increase Size of Root Partition in CentOS

Being a system engineer, I often face scenarios in which I need to resize various system partitions in my Linux servers. Although this task isn’t that difficult, it’s definitely a very critical one because it can lead to the dis-functioning of your whole server. So, we must be very careful and cautious while trying to resize our system volumes. In this post, I’m going to take the extra space from the swap partition and take that space to my root…

Read More Read More

Docker: Running Apache Web Server In A Container

Docker: Running Apache Web Server In A Container

This is my second post for this blog series on Docker. If you haven’t already read my previous post, I highly recommend you to read that article first. Here, I’m going to dive a little deeper into container management by working on a further complicated application and advanced features of docker. Until now, I’ve already covered the introduction, basic container usage and default networking in docker. So, let’s now get into more advanced concepts in container virtualization. For this post,…

Read More Read More

LAMP- Installation and Configuration in CentOS 7

LAMP- Installation and Configuration in CentOS 7

Hello! Today, let’s install and configure a web server (Linux + Apache + MySQL + PHP = LAMP) in CentOS7 platform. I think this subject can be very helpful to web developers, students and system administrators. Without any adieu, let’s get started with the installation and configuration. Installation of CentOS 7 I’ve already written blogs on installation and initial configuration of CentOS 7 operating system in my previous posts. You can refer to these blog posts: Creating VM in VMware…

Read More Read More

Setup Zimbra Mail Server-Post Installation

Setup Zimbra Mail Server-Post Installation

Welcome back! If you’ve been following up with my previous blogs, it is a continuity to my last blog on how to setup Zimbra mail server in CentOS. Till now, I’ve already covered the preparation and installation of ZCS package. From here, I’ll get into the post-installation part for our mail server setup. Changing SSH Port As we all already know, SSH daemon by default runs on port 22. So, it is a good practice to change it to some…

Read More Read More

Setup Zimbra Mail Server in CentOS

Setup Zimbra Mail Server in CentOS

Hello and welcome back to my next blog! In this post, I’m going to share how to setup Zimbra Mail Server in CentOS server. Since I’m going to cover this topic from start to end, it might be a long read and I hope you’ll manage to go through it. Just to give you a brief introduction of Zimbra, ZCS is one of the World’s largest open-source collaboration projects and it is an ideal solution for all sorts of mail related…

Read More Read More

NFS Sharing Between CentOS Servers

NFS Sharing Between CentOS Servers

In this blog, I’m going to describe how we can share folders between CentOS servers using Network File System (NFS). For this purpose, I’m setting up two CentOS 6.5 Minimal servers named as CentOS-1 and CentOS-2. The IP addresses of CentOS-1 and CentOS-2 are 172.16.5.5 and 172.16.5.6 respectively. I’m going to create a folder in CentOS-1 machine and then share it with CentOS-2 machine. Before getting into folder sharing process, I suggest you to go through my previous blog articles on CentOS…

Read More Read More

Custom Disk Partitioning in CentOS

Custom Disk Partitioning in CentOS

Here, I’m going to explain how we can perform custom disk partitioning while installing a CentOS system. This is a continuity to my earlier blog in which I wrote about the installation of CentOS 6.5 Minimal system. If you haven’t read my previous blog and want to know from where I’m continuing this blog, please read this blog first: Installation of CentOS 6.5 Minimal OS Custom Disk Partitioning Now, let’s get started. After I selected Custom Disk Partitioning during the…

Read More Read More

Initial Configuration of CentOS 6.5

Initial Configuration of CentOS 6.5

Hello! In this article, I’ll be explaining about initial configuration steps for CentOS 6.5 system. You can learn about CentOS from here. These are the tasks we need to perform after our new CentOS server is installed and before the specific applications or software are installed. Without further adieu, let’s get into the setup process. CentOS Networking Configuration If you’re new to CentOS, you should know that all configuration files related to network interfaces are stored inside /etc/sysconfig/network-scripts/ directory. And the interfaces are named…

Read More Read More