Fresh install of 1.2.3 is stuck at Critical Binary Locations
Moderators: Developers, Moderators
Re: Fresh install of 1.2.3 is stuck at Critical Binary Locat
I have same problem here with fresh v1.2.3 install on Fedora 29/x86_64 - after filling "Cacti log path" are all check points green, but on top is still "WARNING:One or more paths appear to be incorrect, unable to proceed" message.
Is there any progress in solving this bug?
Is there any progress in solving this bug?
-
- Cacti User
- Posts: 150
- Joined: Sat Jul 30, 2005 2:15 pm
Re: Fresh install of 1.2.3 is stuck at Critical Binary Locat
Yeah, this is dumb and should be fixed.
The log is writable/being written to, the permissions are right (same as the othr files) but the clever updater is screwed up.
This isn't the first time I've seen this. Someone needs to do a better job testing these releases.
The log is writable/being written to, the permissions are right (same as the othr files) but the clever updater is screwed up.
This isn't the first time I've seen this. Someone needs to do a better job testing these releases.
- Howie
- Cacti Guru User
- Posts: 5508
- Joined: Thu Sep 16, 2004 5:53 am
- Location: United Kingdom
- Contact:
Re: Fresh install of 1.2.3 is stuck at Critical Binary Locat
https://github.com/Cacti/documentation/ ... ibuting.mdpaulbeard206 wrote:Yeah, this is dumb and should be fixed.
The log is writable/being written to, the permissions are right (same as the othr files) but the clever updater is screwed up.
This isn't the first time I've seen this. Someone needs to do a better job testing these releases.
Weathermap 0.98a is out! & QuickTree 1.0. Superlinks is over there now (and built-in to Cacti 1.x).
Some Other Cacti tweaks, including strip-graphs, icons and snmp/netflow stuff.
(Let me know if you have UK DevOps or Network Ops opportunities, too!)
Some Other Cacti tweaks, including strip-graphs, icons and snmp/netflow stuff.
(Let me know if you have UK DevOps or Network Ops opportunities, too!)
-
- Posts: 6
- Joined: Tue Oct 01, 2013 3:36 pm
Re: Fresh install of 1.2.3 is stuck at Critical Binary Locat
Same issue on fresh install of Debian 9 Cacti 1.2.3.
Appreciate the work all the developers do on this. It is free and open source. Thank you!
Appreciate the work all the developers do on this. It is free and open source. Thank you!
Re: Fresh install of 1.2.3 is stuck at Critical Binary Locat
another one stuck at this step.....fresh v1.2.3 install.
Re: Fresh install of 1.2.3 is stuck at Critical Binary Locat
The solution is to create a directory with the correct permissions where the default path resides. This will allow you to get past the installer. You can then remove the default location even if you are using your own custom one.
The 1.2.4 upgrader will have this fixed.
The 1.2.4 upgrader will have this fixed.
Cacti Developer & Release Manager
The Cacti Group
Director
BV IT Solutions Ltd
+--------------------------------------------------------------------------+
Cacti Resources:
Cacti Website (including releases)
Cacti Issues
Cacti Development Releases
Cacti Development Documentation
The Cacti Group
Director
BV IT Solutions Ltd
+--------------------------------------------------------------------------+
Cacti Resources:
Cacti Website (including releases)
Cacti Issues
Cacti Development Releases
Cacti Development Documentation
Re: Fresh install of 1.2.3 is stuck at Critical Binary Locat
Sorry... What is the default location? On my install, the text box for this log file starts out blank.
Re: Fresh install of 1.2.3 is stuck at Critical Binary Locat
It can very from system to system and method of install. To find the actual location used, run the following sql code and then check install_complete.log in the log folder.
The value you are looking for is the path_cactilog
Code: Select all
replace into settings values ('log_install','3')
Cacti Developer & Release Manager
The Cacti Group
Director
BV IT Solutions Ltd
+--------------------------------------------------------------------------+
Cacti Resources:
Cacti Website (including releases)
Cacti Issues
Cacti Development Releases
Cacti Development Documentation
The Cacti Group
Director
BV IT Solutions Ltd
+--------------------------------------------------------------------------+
Cacti Resources:
Cacti Website (including releases)
Cacti Issues
Cacti Development Releases
Cacti Development Documentation
Re: Fresh install of 1.2.3 is stuck at Critical Binary Locat
I finished install cacti 1.2.3 on centos 7.
step 1.
yum install cacti ( 1.2.3).
step 2.
download 1.2.2 then overwrite cacti folder ( /usr/share/cacti/ ).
step 3.
install by web.
step 4.
download 1.2.3 then overwrite cacti folder.
And use web upgrade process from 1.2.2 to 1.2.3.
now. You can use cacti 1.2.3
step 1.
yum install cacti ( 1.2.3).
step 2.
download 1.2.2 then overwrite cacti folder ( /usr/share/cacti/ ).
step 3.
install by web.
step 4.
download 1.2.3 then overwrite cacti folder.
And use web upgrade process from 1.2.2 to 1.2.3.
now. You can use cacti 1.2.3
Re: Fresh install of 1.2.3 is stuck at Critical Binary Locat
netniV wrote:It can very from system to system and method of install. To find the actual location used, run the following sql code and then check install_complete.log in the log folder.
The value you are looking for is the path_cactilogCode: Select all
[b]replace into settings values ('log_install','3')[/b]
i dont know exactly what fixed it, but this helped me get it done. I ran that SQL script, but did nothing else. i dont even have a "install_complete.log" file on my server. i went back to the wizard and could get past that step.
-
- Posts: 1
- Joined: Thu Apr 25, 2019 12:45 am
Re: Fresh install of 1.2.3 is stuck at Critical Binary Locat
Hi All
I am new to Cacti, have been using PRTG up till now but was looking for a Linux based solution, I also got stuck on this during my first install yesterday. I eventually found another "how to" and using that and the first step by step I got it working off the bat.
The way I fixed it was as per what someone posted above here, manually create the folder and assign permissions.
I am a very green Linux user so needed to look for the commands but in the end this is what I used....so if like me you are clueless and need the exact commands, here you go, do the full install then right at the end before you launch the web interface do this..
mkdir -p /var/log/cacti
cd /var/log/cacti/
touch cacti.log
If you want my full install commands send me a message and I will collate the different step by steps I used..
Peter
I am new to Cacti, have been using PRTG up till now but was looking for a Linux based solution, I also got stuck on this during my first install yesterday. I eventually found another "how to" and using that and the first step by step I got it working off the bat.
The way I fixed it was as per what someone posted above here, manually create the folder and assign permissions.
I am a very green Linux user so needed to look for the commands but in the end this is what I used....so if like me you are clueless and need the exact commands, here you go, do the full install then right at the end before you launch the web interface do this..
mkdir -p /var/log/cacti
cd /var/log/cacti/
touch cacti.log
If you want my full install commands send me a message and I will collate the different step by steps I used..
Peter
Re: Fresh install of 1.2.3 is stuck at Critical Binary Locat
Thanks for sharing that info! Hopefully, this will be resolved with the release this weekend.
Cacti Developer & Release Manager
The Cacti Group
Director
BV IT Solutions Ltd
+--------------------------------------------------------------------------+
Cacti Resources:
Cacti Website (including releases)
Cacti Issues
Cacti Development Releases
Cacti Development Documentation
The Cacti Group
Director
BV IT Solutions Ltd
+--------------------------------------------------------------------------+
Cacti Resources:
Cacti Website (including releases)
Cacti Issues
Cacti Development Releases
Cacti Development Documentation
Re: Fresh install of 1.2.3 is stuck at Critical Binary Locat
Same with cacti 1.2.3 installation on Windows. Even creating the .log file and point the spine conf filepath, the problem occours.
Sad.
Sad.
Re: Fresh install of 1.2.3 is stuck at Critical Binary Locat
Hi,
I've found a workaround, if you open a private browsing window on firefox and paste url where you get stuck you can finish install of cacti 1.2.3
Regards
I've found a workaround, if you open a private browsing window on firefox and paste url where you get stuck you can finish install of cacti 1.2.3
Regards
Re: Fresh install of 1.2.3 is stuck at Critical Binary Locat
It worked!k4y53r wrote:Hi,
I've found a workaround, if you open a private browsing window on firefox and paste url where you get stuck you can finish install of cacti 1.2.3
Regards
THANK YOU!
Who is online
Users browsing this forum: No registered users and 1 guest