Install rapidleech in dedicated server

Status
Not open for further replies.

apostars

Banned
Banned
21
2010
0
0
dear all

i have a dedicated server
atom 250GB 2GB Ram


i am using centos 5.5 64bit on it


all i need to install rapidleech on it without any control panel

i have
/home 200GB
/var/ 10GB


i know tht i can upload rapidleech using sftp or winscp


so now if i use

Code:
yum update
Code:
yum install httpd python php mysql-server php-mysql php-common php-gd php-curl

then i will use this space of /var/www/html


any one can help me so i can use /home
 
7 comments
install apache and php

Add a user

Code:
adduser [COLOR=Red]username[/COLOR]
Password protect that user

Code:
passwd [COLOR=Red]username[/COLOR]
make directory

Code:
cd /home/[COLOR=Red]username[/COLOR]
mkdir public_html
chown -R [COLOR=Red]username[/COLOR] public_html
add these lines to etc/httpd/conf/httpd.conf

Code:
<VirtualHost [COLOR=Red]yourIP[/COLOR]>
        DocumentRoot /home/[COLOR=Red]username[/COLOR]/public_html
        ServerName [COLOR=Red]domain.com[/COLOR]
        ServerAlias [COLOR=Red]www.domain.com[/COLOR]
        CustomLog /home/[COLOR=Red]username[/COLOR]/logs/access.log
        ErrorLog /home/[COLOR=Red]username[/COLOR]/logs/error.log
</VirtualHost>
Red Content = Replace with your own

save and restart httpd

Code:
service httpd restart

after that upload files to /home/username/public_html
 
man i dont need cpanel or kloxo or webmin

i want to use it without panel

i will upload it via winscp

all i need to know how i can use /home as i always use /var
 
Status
Not open for further replies.
Back
Top