apc ups pluigin help with 4.1

raj

Renowned Member
Sep 17, 2011
221
4
83
www.businessparksolutions.com
Hi team,

i am trying to install the apc ups deamon but seems to get an error with the webpage.

http://proxmoxve.blogspot.co.uk/2015/06/apc-ups-monitoring-on-proxmox.html

error is :

Not Found
The requested URL /cgi-bin/apcupsd/multimon.cgi was not found on this server.
Apache/2.4.10 (Debian) Server at 192.168.0.11 Port 80

proxmox-ve: 4.1-26 (running kernel: 4.2.6-1-pve) pve-manager: 4.1-1 (running version: 4.1-1/2f9650d4) pve-kernel-4.2.6-1-pve: 4.2.6-26 lvm2: 2.02.116-pve2 corosync-pve: 2.3.5-2 libqb0: 0.17.2-1 pve-cluster: 4.0-29 qemu-server: 4.0-41 pve-firmware: 1.1-7 libpve-common-perl: 4.0-41 libpve-access-control: 4.0-10 libpve-storage-perl: 4.0-38 pve-libspice-server1: 0.12.5-2 vncterm: 1.2-1 pve-qemu-kvm: 2.4-17 pve-container: 1.0-32 pve-firewall: 2.0-14 pve-ha-manager: 1.0-14 ksm-control-daemon: 1.2-1 glusterfs-client: 3.5.2-2+deb8u1 lxc-pve: 1.1.5-5 lxcfs: 0.13-pve1 cgmanager: 0.39-pve1 criu: 1.6.0-1 zfsutils: 0.6.5-pve6~jessie


Can anyone advise pls

Regards,

Raj
 
You probably should ask the creator of this blog, it's not an official Proxmox blog.
Try:
Code:
apt-get install libapache2-mod-perl2
a2enmod cgi
nano /etc/apache2/sites-enabled/000-default.conf
# here add the following under the </VirtualHost> entry:

ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
  Options +ExecCGI
  AddHandler cgi-script .cgi .pl
  Options FollowSymLinks
  Require all granted
</Directory>

# and save the conf file
systemctl restart apache2

and try again.
 
You probably should ask the creator of this blog, it's not an official Proxmox blog.
Try:
Code:
apt-get install libapache2-mod-perl2
a2enmod cgi
nano /etc/apache2/sites-enabled/000-default.conf
# here add the following under the </VirtualHost> entry:

ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
  Options +ExecCGI
  AddHandler cgi-script .cgi .pl
  Options FollowSymLinks
  Require all granted
</Directory>

# and save the conf file
systemctl restart apache2

and try again.


That did the job thanks again for the help