From the category archives:

Install

Install PhpMyadmin on CentOS

by Perk1z on August 15, 2008

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 restart

You can test by open phpmyadmin by this link :
http://yourdomain.com/phpmyadmin/
You should be find pop up for insert your user name and password.

Popularity: 4% [?]

{ 0 comments }

Install SNMP Centos (Yum)

by Perk1z on July 8, 2008


[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 be updated
—> Downloading header for net-snmp-utils to pack into transaction set.
net-snmp-utils-5.1.2-11.e 100% |=========================| 26 kB 00:00
—> Package net-snmp-utils.i386 0:5.1.2-11.el4_6.11.2 set to be updated
–> Running transaction check
–> Processing Dependency: libsensors.so.3 for package: net-snmp
–> Restarting Dependency Resolution with new changes.
–> Populating transaction set with selected packages. Please wait.
—> Downloading header for lm_sensors to pack into transaction set.
lm_sensors-2.8.7-2.40.5.i 100% |=========================| 23 kB 00:01
—> Package lm_sensors.i386 0:2.8.7-2.40.5 set to be updated
–> Running transaction check [click to continue...]

Popularity: 4% [?]

{ 0 comments }