Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Cacti 0.8 Beginner's Guide

You're reading from   Cacti 0.8 Beginner's Guide Learn Cacti and design a robust Network Operations Center

Arrow left icon
Product type Paperback
Published in Mar 2011
Publisher Packt
ISBN-13 9781849513920
Length 348 pages
Edition 1st Edition
Languages
Tools
Concepts
Arrow right icon
Author (1):
Arrow left icon
Thomas Urban Thomas Urban
Author Profile Icon Thomas Urban
Thomas Urban
Arrow right icon
View More author details
Toc

Table of Contents (23) Chapters Close

Cacti 0.8Beginner's Guide
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
1. Installing Cacti FREE CHAPTER 2. Using Graphs to Monitor Networks and Devices 3. Creating and Using Templates 4. User Management 5. Data Management 6. Cacti Maintenance 7. Network and Server Monitoring 8. Plugin Architecture 9. Plugins 10. Threshold Monitoring with Thold 11. Enterprise Reporting 12. Cacti Automation for NOC Mobile Access / Administration Online Resources Further Information Pop Quiz Answers
Index

Time for action – installing the WSO2 WebService framework


  1. Logon to your Cacti server.

  2. Change to the tmp directory:

    cd /tmp
    
  3. Download the WSO2 plugin:

    wget http://dist.wso2.org/products/wsf/php/2.1.0/wso2-wsf-php-src-2.1.0.tar.gz
    
  4. Install some required packages:

    yum install php-devel php-xml libxml2-devel
    
  5. Extract the tar.gz file:

    tar -xzvf wso2-wsf-php-src-2.1.0.tar.gz
    
  6. Change to the new directory:

    cd wso2-wsf-php-src-2.1.0
    
  7. Run configure to automatically generate the make files:

    ./configure
    
  8. This will take some time to complete. Once finished, start the build process:

    make
    
  9. If the build process finished successfully, install the binaries:

    make install
    
  10. Create a file to tell PHP to load the new module:

    echo "extension=wsf.so" >> /etc/php.d/wsf.ini
    
  11. Check if the module loads by issuing the following command:

    php –m
    
  12. The newly added module should be listed in the output.

  13. Restart the web server so it loads the new extension:

    /etc/init.d/httpd restart
    

What just happened?

You just installed the WSO2 WebService Framework for PHP which is required for the nmidWebService plugin to work correctly. This framework provides some WebService functionality which the native PHP-SOAP module is not able to provide.

Installing the nmidWebService plugin

Now that you've installed the basic requirement for the nmidWebService plugin, let's look at how to install and configure the plugin itself.

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime
Banner background image