web access issue after install stor2rrd

dears,
after install stor2rrd on same server have lpar2rrd i can't access stor2rrd throw web.
what should i do to access the tool?

Comments

  • what is the problem exactly? screenshot pls.
    Anything related in Apache logs error_log and access_log (they are somewhere in /var usually)
    Usually it is caused by not proper configuration in Apache httpd.conf
  • this is the error
    "Not Found
    The requested URL /stor2rrd was not found on this server."

    and i think that there is no link between application and web URL

    Note: i didn't changed any thing after installation on /etc/apache2/apache2.conf because i have lpar2rrd installed so i afraid to effect it. 
  • you have to add stor2rrd stuff in apache2.conf as per docu something like this:

    Alias /stor2rrd  "/home/stor2rrd/stor2rrd/www/"
    <Directory "/home/stor2rrd/stor2rrd/www/">
        Options Indexes FollowSymLinks Includes MultiViews
        Require all granted
    </Directory>
    # CGI-BIN
    ScriptAlias /stor2rrd-cgi/ "/home/stor2rrd/stor2rrd/stor2rrd-cgi/"
    <Directory "/home/stor2rrd/stor2rrd/stor2rrd-cgi">
        AllowOverride None
        Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
        Require all granted
        SetHandler cgi-script
    </Directory>


  • thanks Pavel,
    this action will not effect lpar2rrd page?
Sign In or Register to comment.