Tungkol sa Akin

Aking larawan
Manila, Catholic, Philippines
Si Albert Einstein[1] (Marso 14, 1879–Abril 18, 1955) ay isang Aleman-Swiss-Amerikanong pisikong teoretikal na kinikilala bilang isa sa pinakamahalagang siyentista/siyentipiko sa ika-dalawampung siglo at isa sa pinakamahusay na pisikong nabuhay sa kasaysayan ng agham. Ang pinakamahalagang papel na kanyang ginampanan sa agham ay ang pagbuo ng espesyal na teoriya ng relatibidad at teoriyang pangkalahatang relatibidad. Sa karagdagan, marami siyang naiambag sa teoriyang kwantum at mekaniks na estatistikal. Siya ay naparangalan ng Gantimpalang Nobel sa kanyang paliwanag sa epektong potoelektrika noong 1905. Si Einstein ay nakilala sa buong mundo matapos na mapatunayan ang prediksiyon ng kanyang teoriyang pangkalahatang relatibidad na ang sinag(light rays) ng malalayong bituin ay malilihis ng grabidad ng araw. Ito ay napatunayan noong Nobyembre 7, 1919 sa ekspedisyon na ginawa ng mga inglaterong siyentipiko upang pagmasdan ang Eklipseng solar na naganap nang taong iyon sa Aprika. Dahil sa kanyang katalinuhan at orihinalidad, ang salitang "Einstein" ay naging sinonimo ng salitang "henyo"

Sabado, Oktubre 22, 2011

How to install and configure cacti


Install and Configure Cacti


  1. Extract the distribution tarball.
    shell> tar xzvf cacti-version.tar.gz
  2. Create the MySQL database:
    shell> mysqladmin --user=root create cacti
  3. Import the default cacti database:
    shell> mysql cacti < cacti.sql
  4. Optional: Create a MySQL username and password for Cacti.
    shell> mysql --user=root mysql
    mysql> GRANT ALL ON cacti.* TO cactiuser@localhost IDENTIFIED BY 'somepassword';
    mysql> flush privileges;
  5. Edit include/config.php and specify the database type, name, host, user and password for your Cacti configuration.
    $database_type = "mysql";
    $database_default = "cacti";
    $database_hostname = "localhost";
    $database_username = "cactiuser";
    $database_password = "cacti";
  6. Set the appropriate permissions on cacti's directories for graph/log generation. You should execute these commands from inside cacti's directory to change the permissions.
    shell> chown -R cactiuser rra/ log/
    (Enter a valid username for cactiuser, this user will also be used in the next step for data gathering.)
  7. Add a line to your /etc/crontab file similar to:
    */5 * * * * cactiuser php /var/www/html/cacti/poller.php > /dev/null 2>&1
    Replace cactiuser with the valid user specified in the previous step.
    Replace /var/www/html/cacti/ with your full Cacti path.
  8. Point your web browser to:
    http://your-server/cacti/
    Log in the with a username/password of admin. You will be required to change this password immediately. Make sure to fill in all of the path variables carefully and correctly on the following screen.

Walang komento:

Mag-post ng isang Komento