I’m trying to update to the latest trunk version and it fails on the step “Downloading inits, kernels, and the fog client”. I saw the other thread on this same issue, but I can download the client manually with no redirects. It only fails when running the installer.
Latest posts made by technokami
-
Trunk install - Downloading inits, kernels and client fails
-
RE: Trunk (5259) ignoring active task limit
@Tom-Elliott said:
@technokami It uses the Storage Node queuesize as it’s the node side of it.
Ah ok, now it works. Thanks again.
-
RE: Trunk (5259) ignoring active task limit
Fog Settings\General Settings\FOG_QUEUESIZE
-
RE: Trunk (5259) ignoring active task limit
Nope all are either full Registration imaging or group imaging.
-
Trunk (5259) ignoring active task limit
I’ve seen this for a few revisions now, but on the latest trunk release the setting for limiting active tasks is broken. even if set to 3 it will still allow 10 tasks to run simultaneously.
-
RE: iPXE no such file or directory
@Tom-Elliott said:
@technokami this was my fault. Basically, I was attempting to ensure id field always had a value higher than 0. Research suggested making sure fields without data passes incorrectly to MySQL. I learned, quickly, that this was not the case and corrected it from the code. We sanitize all values and fields and rather that setting the value to NULL it set it to a string with the word NULL. Simplest fix would be to revert the db. Before I made the NULL attempt, I added the db backup on updates/installs. This means you can find the backup and revert the db to that. This should fix the issue you’re seeing. I assure you it was not my intention to break the db in such a manner. I do know nothing was corrupted, but updates to an item where the fields were blank should appear on their relevant fields as literally the word NULL.
Thanks for the info. I replaced the NULLs with blanks and everything is back up and running. @Sebastian-Roth you were right as well there was a literal NULL string in the host settings in every field that was normally blank.
-
RE: iPXE no such file or directory
when I visit that page this is the output I get:
#!ipxe
set fog-ip 172.16.101.111
set fog-webroot fog
set boot-url http://${fog-ip}/${fog-webroot}
#!ipxe
kernel NULL loglevel=4 initrd=init_32.xz root=/dev/ram0 rw ramdisk_size=127000 keymap= web=172.16.101.111/fog/ consoleblank=0 mac=34:17:eb:a2:a9:86 ftp=172.16.101.111 storage=172.16.101.111:/images/dev/ storageip=172.16.101.111 web=172.16.101.111/fog/ osid=7 consoleblank=0 irqpoll hostname=F2B3422 chkdsk=0 img=UpdatedWindows81 imgType=n imgPartitionType=all imgid=5 imgFormat= PIGZ_COMP=-9 adon=1 addomain=NULL adou=NULL aduser=NULL adpass=NULL fdrive=NULL hostearly=1 pct=5 ignorepg=1 type=up NULL
imgfetch init_32.xz
boot -
RE: iPXE no such file or directory
I upgraded from a previous trunk version but I cant remember which one. Attached is a photo of the error.
-
iPXE no such file or directory
Just updated to trunk 5229. Now when booting I get an error message that states:
/NULL … No such file or directory
loading boot.php i see the iPXE output but near the top it looks like it is missing the IP and directory for the fog server, see below.
#!ipxe
set fog-ip 172.16.101.111
set fog-webroot fog
set boot-url http://${fog-ip}/${fog-webroot}Is there anything I can do to fix this?