Steps to Handle the Centos Web Panel(CWP)

Centos Web panel installation(CWP 6) on VPS -------in IP : xxxxxxxxxx Domain: xxxxxxxxx 1.http://centos-webpanel.com/installation-instructions From the above link download the centos web panel and readthe instructions and follow them carefully steps involved in installing the CWP 1.login to the VPS by the given IP address 2.yum -y install wget --- installing the get instructions 3.yum … Continue reading Steps to Handle the Centos Web Panel(CWP)

Steps to Install and Config the Linux Host in Centos 6

1.1: Virtual Hosts-An Overview Virtual Hosts are required in order to run multiple domains off a single IP address. Creating virtual host is expressly helpful for users who wish to run numerous sites using one virtual private server (VPS). Typically, each server is distinctly defined by it's domain/hostname. To the utter delight of users, there … Continue reading Steps to Install and Config the Linux Host in Centos 6

SSH commands used for Linux Hosting in CentOS:-Putty

COMMANDS USED IN PUTTY SHELL FOR VPS ===================================== 1 yum install httpd php php-mysql------------ installation of apache,php and php-mysql(application) 2 service httpd start----------------------- that restart appache(httpd) 3 yum install mysql-server------------------- install mysql server 4 service mysqld start------------------------start mysql service yum install nano----------------------------instakk of nano(text editing file) 5 nano /etc/httpd/conf/httpd.conf-------------open editing file to configure appache(httpd) according … Continue reading SSH commands used for Linux Hosting in CentOS:-Putty

List of Commands used inside the Mysql in Putty

CREATE DATABASE exampledb;---------------------------- it is used to create a database named exampledb CREATE USER 'balajikc'@'localhost' IDENTIFIED BY 'zxcvbnm' ;----- create an username balajikc and password zxcvbnm for that database GRANT ALL PRIVILEGES ON exampledb.* TO balajikc@localhost IDENTIFIED BY 'zxcvbnm';-------- FLUSH PRIVILEGES; --------------------------------------------------- show databases; --------------------------------------- to show or display the whole databases in mysql use … Continue reading List of Commands used inside the Mysql in Putty