Windows All-In-One Installer [Cacti 1.2.24] [Updated 2023-03-09]
Moderators: Developers, Moderators
-
- Posts: 1
- Joined: Thu Jun 28, 2012 2:08 am
Re: Windows Installer [Cacti 0.8.8a - 2012-05-01]
Just installed a Cacti on a Windows 7 desktop.
From the web browser, under http://localhost IT WORKS appear on the window.
Under the http://localhost/cacti link or http://localhost/cacti/index.php it is asking me download a file.
Need help, I don't know where to go from there. nThank you.
From the web browser, under http://localhost IT WORKS appear on the window.
Under the http://localhost/cacti link or http://localhost/cacti/index.php it is asking me download a file.
Need help, I don't know where to go from there. nThank you.
Re: Windows Installer [Cacti 0.8.8a - 2012-05-01]
Sounds like PHP wasn't properly configured in the web server. Which one did you go with? Have you rebooted since the install? Has any variant of PHP been previously installed?
| Scripts: Monitor processes | RFC1213 MIB | DOCSIS Stats | Dell PowerEdge | Speedfan | APC UPS | DOCSIS CMTS | 3ware | Motorola Canopy |
| Guides: Windows Install | [HOWTO] Debug Windows NTFS permission problems |
| Tools: Windows All-in-one Installer |
Re: Windows Installer [Cacti 0.8.8a - 2012-05-01]
Dear BSOD/all,
I installed the last pack yesterday, but I'm stuck with rrd file creation (from Data Source creation).
My OS is a simple XP Pro SP3.
From process monitor seem rrdtool.exe isn't executed at all (so there's no permission problem), plus there's no rrdtool commands on cacti.log, so I cannot try to execute it from console.
Could someone drive me for a solution? Do you have a simple rrdtool create command so I can test it on cmd console ??
Thanks!
I installed the last pack yesterday, but I'm stuck with rrd file creation (from Data Source creation).
My OS is a simple XP Pro SP3.
From process monitor seem rrdtool.exe isn't executed at all (so there's no permission problem), plus there's no rrdtool commands on cacti.log, so I cannot try to execute it from console.
Could someone drive me for a solution? Do you have a simple rrdtool create command so I can test it on cmd console ??
Thanks!
Re: Windows Installer [Cacti 0.8.8a - 2012-05-01]
I have successfully installed using this installer, however I cannot get the SSL plugin from http://cactiusers.org/downloads/ to populate in the Plugin Management. I have unzipped the plugin and placed it in the plugins folder (Apache2/htdocs/cacti/plugins), but still no luck. I have also tried updating /include/config.php with the following entry:
#Plugin list
$plugins = array();
$plugins[] = 'ssl-0.1';
Server Specs:
Windows 2008 SP2
64bit
I have attached a screen shot of my current plugins directory, cacti install log, and cacti log.
Thanks!
#Plugin list
$plugins = array();
$plugins[] = 'ssl-0.1';
Server Specs:
Windows 2008 SP2
64bit
I have attached a screen shot of my current plugins directory, cacti install log, and cacti log.
Thanks!
- Attachments
-
- Cacti logs.zip
- (19.29 KiB) Downloaded 125 times
-
- PluginsList.jpg (65.51 KiB) Viewed 4902 times
Re: Windows Installer [Cacti 0.8.8a - 2012-05-01]
1) not a problem with the installer, thus belongs in a separate thread.
2) no need to edit config.php anymore as the plugin arch handles it all.
3) if it doesn't work, you'll need to take the problem up with the plugin author.
2) no need to edit config.php anymore as the plugin arch handles it all.
3) if it doesn't work, you'll need to take the problem up with the plugin author.
| Scripts: Monitor processes | RFC1213 MIB | DOCSIS Stats | Dell PowerEdge | Speedfan | APC UPS | DOCSIS CMTS | 3ware | Motorola Canopy |
| Guides: Windows Install | [HOWTO] Debug Windows NTFS permission problems |
| Tools: Windows All-in-one Installer |
Re: Windows Installer [Cacti 0.8.8a - 2012-05-01]
I made a small batch file to help debug the poller process. This is used to replace the program running from Cacti's Scheduled Task. It creates a set of folders under cacti\logs broken down into year\month\day and then places the poller's output (including errors) into this folder. This was tested under Windows 2008 R2 server.
Thanks,
-John
Thanks,
-John
Code: Select all
@echo off
rem (cacti path)\cacti\cli\poller_with_rotate.bat
setlocal
for /f "usebackq tokens=1,2,3,4,5,6,7 delims=/:. " %%a in (`echo %DATE% %TIME%`) do set YR=%%d
for /f "usebackq tokens=1,2,3,4,5,6,7 delims=/:. " %%a in (`echo %DATE% %TIME%`) do set MON=%%b
for /f "usebackq tokens=1,2,3,4,5,6,7 delims=/:. " %%a in (`echo %DATE% %TIME%`) do set DAY=%%c
for /f "usebackq tokens=1,2,3,4,5,6,7 delims=/:. " %%a in (`echo %DATE% %TIME%`) do set NOW=%%d%%b%%c_%%e%%f%%g
set REWT=C:\Apache2\htdocs\cacti\log\%YR%\%MON%\%DAY%
set LOG=%REWT%\poller_%NOW%.log
if not exist %REWT% mkdir %REWT%
cd C:\Apache2\htdocs\cacti
C:\PHP\php.exe C:\Apache2\htdocs\cacti\poller.php >> %LOG% 2>&1
endlocal
Last edited by jftuga on Fri Aug 24, 2012 2:12 pm, edited 1 time in total.
Re: Windows Installer [Cacti 0.8.8a - 2012-05-01]
BSOD2600,
Can you please add to the post-install document that the timezone should be edited in c:\php\php.ini and then Apache needs to be restarted.
Your installer rocks!
Thanks,
-John
Can you please add to the post-install document that the timezone should be edited in c:\php\php.ini and then Apache needs to be restarted.
Your installer rocks!
Thanks,
-John
Re: Windows Installer [Cacti 0.8.8a - 2012-05-01]
Nice script. Yea, it would be useful if the poller log automatically rolled over on X interval. Feature request time
Done. Included in next update, when I find the time...jftuga wrote:BSOD2600,
Can you please add to the post-install document that the timezone should be edited in c:\php\php.ini and then Apache needs to be restarted.
| Scripts: Monitor processes | RFC1213 MIB | DOCSIS Stats | Dell PowerEdge | Speedfan | APC UPS | DOCSIS CMTS | 3ware | Motorola Canopy |
| Guides: Windows Install | [HOWTO] Debug Windows NTFS permission problems |
| Tools: Windows All-in-one Installer |
Re: Windows Installer [Cacti 0.8.8a - 2012-05-01]
Hello,
I am a brand new user to Cacti with not that much experience on computers. These days I'm having some trouble installing Cacti on a Microsoft Server 2003 to monitor another Sun Solaris 10 server. I've used the Windows installer for Cacti 0.8.8a (actually I reinstalled several times to be sure). I even reinstalled IIS 6.0 with FastCGI before reinstalling Cacti and it still does not work. I recieve a 403 Forbidden error (or in the previous installation it was 404 Page cannot be found).
During the installation I noticed that an error to access 'root'@'localhost' (using password : YES) occured (Error 1045 (28000), if it helps). When i tried c:\>mysql -u root -p cacti in the command line, it asks the password again and it does not accept cacti,cactipw or any other password stated in the post-installation instructions.
I believe IIS is working well, since the trial html page I put under c:\Inetpub\wwwroot is displayed successfully.
If you know/can find a solution, please let me know.
edit: When I was checking the properties of the website, I noticed that index.php was not added to default content page list under "Documents". Right now when I try to access http:\\localhost\cacti, I just see Error 404 - Page cannot be found.
I am a brand new user to Cacti with not that much experience on computers. These days I'm having some trouble installing Cacti on a Microsoft Server 2003 to monitor another Sun Solaris 10 server. I've used the Windows installer for Cacti 0.8.8a (actually I reinstalled several times to be sure). I even reinstalled IIS 6.0 with FastCGI before reinstalling Cacti and it still does not work. I recieve a 403 Forbidden error (or in the previous installation it was 404 Page cannot be found).
During the installation I noticed that an error to access 'root'@'localhost' (using password : YES) occured (Error 1045 (28000), if it helps). When i tried c:\>mysql -u root -p cacti in the command line, it asks the password again and it does not accept cacti,cactipw or any other password stated in the post-installation instructions.
I believe IIS is working well, since the trial html page I put under c:\Inetpub\wwwroot is displayed successfully.
If you know/can find a solution, please let me know.
edit: When I was checking the properties of the website, I noticed that index.php was not added to default content page list under "Documents". Right now when I try to access http:\\localhost\cacti, I just see Error 404 - Page cannot be found.
Re: Windows Installer [Cacti 0.8.8a - 2012-05-01]
Did a fresh install on a Windows 2008R2 server.
Had some difficulties with the PHP timezone in php.ini(cacti creating graphs+rrd's but not updating them), but when that was solved it worked fine, spine including.
Migrated my old database and rrd's. Used rrdtool dump/restore to be sure...didn't know if it's 64bit rrdtool included with the installer?
Anyway, saved a lot of time with this installer. Great work!
Had some difficulties with the PHP timezone in php.ini(cacti creating graphs+rrd's but not updating them), but when that was solved it worked fine, spine including.
Migrated my old database and rrd's. Used rrdtool dump/restore to be sure...didn't know if it's 64bit rrdtool included with the installer?
Anyway, saved a lot of time with this installer. Great work!
Re: Windows Installer [Cacti 0.8.8a - 2012-05-01]
It's 32bit. Getting it compiled on Windows is hard enough these days. If someone is able to get a 64bit compile, I'd be interested... as would a patch submitted to Tobias.YoMarK wrote:didn't know if it's 64bit rrdtool included with the installer?
| Scripts: Monitor processes | RFC1213 MIB | DOCSIS Stats | Dell PowerEdge | Speedfan | APC UPS | DOCSIS CMTS | 3ware | Motorola Canopy |
| Guides: Windows Install | [HOWTO] Debug Windows NTFS permission problems |
| Tools: Windows All-in-one Installer |
Re: Windows Installer [Cacti 0.8.8a - 2012-05-01]
Hi,
I used the exe file to install CACTI on a Windows 2003 Server running with IIS. When i try to open i got an error message : This error (HTTP 403 Forbidden) means that Internet Explorer was able to connect to the website, but it does not have permission to view the webpage.
When i looked on C:\php, i can't find the file php5isapi.dll. Is it normal ? The only dll files i found are php5.dll, ssleay32.dll, libsasl.dll and libeay32.dll
Any idea if i have to download Php and reinstall it ?
Thank you in advance.
I used the exe file to install CACTI on a Windows 2003 Server running with IIS. When i try to open i got an error message : This error (HTTP 403 Forbidden) means that Internet Explorer was able to connect to the website, but it does not have permission to view the webpage.
When i looked on C:\php, i can't find the file php5isapi.dll. Is it normal ? The only dll files i found are php5.dll, ssleay32.dll, libsasl.dll and libeay32.dll
Any idea if i have to download Php and reinstall it ?
Thank you in advance.
Re: Windows Installer [Cacti 0.8.8a - 2012-05-01]
jkwine:
attach your cacti-installer.log file for review. If you want to reinstall PHP, per the first page PHP 5.3.10 was installed. either use the reinstall feature or redownload and manually reinstall.... then you'll need to follow the cacti installation guide for the php and cacti sections.
attach your cacti-installer.log file for review. If you want to reinstall PHP, per the first page PHP 5.3.10 was installed. either use the reinstall feature or redownload and manually reinstall.... then you'll need to follow the cacti installation guide for the php and cacti sections.
| Scripts: Monitor processes | RFC1213 MIB | DOCSIS Stats | Dell PowerEdge | Speedfan | APC UPS | DOCSIS CMTS | 3ware | Motorola Canopy |
| Guides: Windows Install | [HOWTO] Debug Windows NTFS permission problems |
| Tools: Windows All-in-one Installer |
Re: Windows Installer [Cacti 0.8.8a - 2012-05-01]
I enclosed the cacti installer log. If i reinstall Php like the first page that means it will reinstall all software ?
- Attachments
-
- cacti-installer.txt
- (151.29 KiB) Downloaded 258 times
Re: Windows Installer [Cacti 0.8.8a - 2012-05-01]
No, just need to validate the php/cacti portions of the installation guide. It's unknown what settings the PHP installer will change.jkwine wrote:If i reinstall Php like the first page that means it will reinstall all software ?
| Scripts: Monitor processes | RFC1213 MIB | DOCSIS Stats | Dell PowerEdge | Speedfan | APC UPS | DOCSIS CMTS | 3ware | Motorola Canopy |
| Guides: Windows Install | [HOWTO] Debug Windows NTFS permission problems |
| Tools: Windows All-in-one Installer |
Who is online
Users browsing this forum: No registered users and 2 guests