Free Hosting Tutorials

FTP Server Configuration

INSTALL FTP PACKAGE #yum install vsftpd #chkconfig vsftpd on #service vsftpd restart User Login #ftp ipaddress DENY USER LOGIN VIA FTP Edit the configuration file vi /etc/vsftpd/vsftpd.conf Line no 115 userlist_enable=yes Add the user entry in user_list file #vi /etc/vsftpd/user_list Restart the ftp server #service vsftpd restart ALLOW USERS LOGIN VIA FTP Add the user […]

How to create and Manage My SQL DB in linux ?

How to create and Manage My SQL DB in linux? 1. Login to the Cpanel 2. Click “My SQL” 3. Create the My SQL DB 4. Create User 5. Add the user to the DB. Now the database is created.

Linux run level linux 6 run level

Linux it has six run level Run Level Type and there Description RunLevel 0  – shut down RunLevel 1- singele user mode without networking RunLevel2- single user mode with networking RunLevel3-multi user mode RunLevel 4 – not used RunLevel- 5- Graphical user mode RunLevel-6- Restart

How to Install and configure Nagios on Centos

How to install and configure nagios on centos Log into the server using ssh 1.Install the following packages on the server yum install httpd gcc glibc glibc-common gd gd-devel php Create Nagios User account and group[root@server1 ~]#useradd -m nagios groupadd nagcmd usermod -a -G nagcmd nagios usermod -a -G nagcmd apache Download Nagios and recompile […]

how to install mod_mono in VPS

how to install mod_mono in VPS 1.Log into the vps using ssh 2.Download the package wget http://ftp.novell.com/pub/mono/sources/xsp/xsp-2.4.2.tar.bz2 3. Extract the download file, tar jxvf xsp-2.4.2.tar.bz2 4.In to the xsp-2.4.2 folder, cd xsp-2.4.2 5.configure, build and install XSP, ./configure –prefix=/opt/mono; make; make install 6.Install apache yum -y install httpd-devel 7.Download mod_mono 8.Extract the download file, tar […]