Configuring LiteSpeed Webserver with a hosting cPanel

Configuring LiteSpeed Webserver with a hosting cPanel
[root@nagan ~]# pwd
/root
[root@nagan ~]# mkdir litespeed
[root@nagan ~]# cd litespeed/
Download LiteSpeed Web Server
[root@nagan litespeed]# wget http://www.litespeedtech.com/packages/3.0/lsws-3.3.22-ent-i386-linux.tar.gz
–20:21:37–  http://www.litespeedtech.com/packages/3.0/lsws-3.3.22-ent-i386-linux.tar.gz
=> `lsws-3.3.22-ent-i386-linux.tar.gz’
Resolving www.litespeedtech.com… 209.151.227.121
Connecting to www.litespeedtech.com|209.151.227.121|:80… connected.
HTTP request sent, awaiting response… 200 OK
Length: 5,204,674 (5.0M) [application/gzip]
100%[====================================>] 5,204,674      7.39K/s    ETA 00:00
20:31:07 (8.94 KB/s) - `lsws-3.3.22-ent-i386-linux.tar.gz’ saved [5204674/5204674]
[root@nagan litespeed]# tar zxf lsws-3.3.22-ent-i386-linux.tar.gz

get trial key : http://www.litespeedtech.com/trial/license/ [...]

Tags: , , , ,

Filed under:How To

Install PureFTPd on FreeBSD

Install PureFTPd on FreeBSD
[dupre@ibm ~]$ su -
Password:
[root@ibm ~]# cd /usr/ports/
[root@ibm /usr/ports]# make search name=pure-ftp
Port:   pure-ftpd-1.0.21_2
Path:   /usr/ports/ftp/pure-ftpd
Info:   A small, easy to set up, fast and very secure FTP server
Maint:  garga@FreeBSD.org
B-deps:
R-deps: perl-5.8.8_1
WWW:    http://www.pureftpd.org/

Tags: , , ,

Filed under:How To

Install PhpMyadmin on CentOS

1. $ su -
2. # cd /var/html/www/
3. Download Phpmyadmin
# wget -c http://prdownloads.sourceforge.net/phpmyadmin/phpMyAdmin-2.11.3-english.tar.gz?download
4. Extract
# tar xvfz phpMyAdmin-2.11.3-english.tar.gz
5. # mv phpMyAdmin-2.11.3-english phpmyadmin
6. # cd phpmyadmin
7. # cp config.sample.inc.php config.inc.php
8. edit config
# vi config.inc.php
at :line 29
/* Authentication type */
change default Authentication type cookies to http
$cfg['Servers'][$i]['auth_type'] = ‘http’;
$cfg[’Servers’][$i][’auth_type’] = ‘http‘; # default is cookies
:
9. Restart http service
# service httpd [...]

Tags: , ,

Filed under:How To

Install SNMP Centos (Yum)

[root@titik ~]# yum install net-snmp net-snmp-libs net-snmp-utils
Setting up Install Process
Setting up repositories
Reading repository metadata in from local files
Excluding Packages in global exclude list
Finished
Parsing package install arguments
Resolving Dependencies
–> Populating transaction set with selected packages. Please wait.
—> Downloading header for net-snmp to pack into transaction set.
net-snmp-5.1.2-11.el4_6.1 100% |=========================| 36 kB 00:01
—> Package net-snmp.i386 0:5.1.2-11.el4_6.11.2 set to [...]

Tags: , , ,

Filed under:How To