• Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Search
  • Register
  • Login
Netgate Discussion Forum
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Search
  • Register
  • Login

Lightsquid service not starting at boot time

2.3-RC Snapshot Feedback and Issues - ARCHIVED
4
38
12.0k
Loading More Posts
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • M
    maverick_slo
    last edited by Mar 11, 2016, 7:33 AM

    After todays snap, Lightsquid is not starting at boot time anymore.
    Also in services status if I press start it does something but it does not start it.

    If I go to Status -> Squid proxy reports and save settings, then it gets started.

    1 Reply Last reply Reply Quote 0
    • C
      cwagz
      last edited by Mar 11, 2016, 2:40 PM

      @maverick_slo:

      After todays snap, Lightsquid is not starting at boot time anymore.
      Also in services status if I press start it does something but it does not start it.

      If I go to Status -> Squid proxy reports and save settings, then it gets started.

      Same issue for me.

      Netgate 6100 MAX

      1 Reply Last reply Reply Quote 0
      • J
        jimp Rebel Alliance Developer Netgate
        last edited by Mar 11, 2016, 2:46 PM

        Any errors in the system log or anywhere else? I still can't reproduce this. I update, reboot, etc and it always starts up for me.

        Remember: Upvote with the 👍 button for any user/post you find to be helpful, informative, or deserving of recognition!

        Need help fast? Netgate Global Support!

        Do not Chat/PM for help!

        1 Reply Last reply Reply Quote 0
        • M
          maverick_slo
          last edited by Mar 11, 2016, 2:46 PM

          I checked lighttpd_lightsquid.log there is nothing there…

          1 Reply Last reply Reply Quote 0
          • J
            jimp Rebel Alliance Developer Netgate
            last edited by Mar 11, 2016, 4:38 PM

            Are the ones seeing failures perhaps using NanoBSD or /var in a RAM disk?

            Remember: Upvote with the 👍 button for any user/post you find to be helpful, informative, or deserving of recognition!

            Need help fast? Netgate Global Support!

            Do not Chat/PM for help!

            1 Reply Last reply Reply Quote 0
            • M
              maverick_slo
              last edited by Mar 11, 2016, 6:31 PM

              No full install.
              If I save settings it starts and then it works as it should…

              1 Reply Last reply Reply Quote 0
              • J
                jimp Rebel Alliance Developer Netgate
                last edited by Mar 11, 2016, 6:35 PM

                @maverick_slo:

                No full install.
                If I save settings it starts and then it works as it should…

                Yeah I get that part, a few people have said it, but since I can't replicate the problem I need more detail about why it's failing. There should be something logged somewhere, on the system log, console, etc. Maybe try, without saving the settings, to run the rc.d script by hand to start it up and see if it produces an error.

                Remember: Upvote with the 👍 button for any user/post you find to be helpful, informative, or deserving of recognition!

                Need help fast? Netgate Global Support!

                Do not Chat/PM for help!

                1 Reply Last reply Reply Quote 0
                • M
                  maverick_slo
                  last edited by Mar 11, 2016, 6:50 PM

                  Can you please point me to rc script?
                  I'm just getting my baby to sleep and Im in bed on my phone :)

                  1 Reply Last reply Reply Quote 0
                  • J
                    jimp Rebel Alliance Developer Netgate
                    last edited by Mar 11, 2016, 6:51 PM

                    /usr/local/etc/rc.d/lighttpd_ls.sh

                    Remember: Upvote with the 👍 button for any user/post you find to be helpful, informative, or deserving of recognition!

                    Need help fast? Netgate Global Support!

                    Do not Chat/PM for help!

                    1 Reply Last reply Reply Quote 0
                    • M
                      maverick_slo
                      last edited by Mar 11, 2016, 7:14 PM

                      A ha!

                      2016-03-11 20:15:31: (configfile.c.1016) opening configfile  /var/etc/lightsquid/lighttpd_ls.conf failed: No such file or directory

                      After each reboot conf file dissapears ??

                      1 Reply Last reply Reply Quote 0
                      • J
                        jimp Rebel Alliance Developer Netgate
                        last edited by Mar 11, 2016, 7:26 PM

                        Does /var/etc/lightsquid/ exist?

                        If not, add "mkdir -p /var/etc/lightsquid/" to the rc script in the start section, reboot, and see if it comes up

                        I don't recall it being cleared out each time, which is why I asked about /var in RAM, since that would be wiped on each boot.

                        Remember: Upvote with the 👍 button for any user/post you find to be helpful, informative, or deserving of recognition!

                        Need help fast? Netgate Global Support!

                        Do not Chat/PM for help!

                        1 Reply Last reply Reply Quote 0
                        • M
                          maverick_slo
                          last edited by Mar 11, 2016, 7:37 PM

                          No there is no folder.
                          But it`s weird, this is happening on latest snapshots so something changed?

                          1 Reply Last reply Reply Quote 0
                          • J
                            jimp Rebel Alliance Developer Netgate
                            last edited by Mar 11, 2016, 7:39 PM

                            Nothing changed at all in any area close to that which I'm aware of.

                            Maybe you added or removed some other package which is causing the boot process to change somehow?

                            I may split this issue off into its own thread since it seems to be taking over and the cause isn't clear.

                            Remember: Upvote with the 👍 button for any user/post you find to be helpful, informative, or deserving of recognition!

                            Need help fast? Netgate Global Support!

                            Do not Chat/PM for help!

                            1 Reply Last reply Reply Quote 0
                            • M
                              maverick_slo
                              last edited by Mar 11, 2016, 7:43 PM

                              No, I changed nothing just pushed a snapshot or 2.

                              Now my /usr/local/etc/rc.d/lighttpd_ls.sh looks like:

                              #!/bin/sh
                              # This file was automatically generated
                              # by the pfSense service handler.
                              
                              rc_start() {
                              	# Start Lightsquid lighttpd webserver
                                  mkdir -p /var/etc/lightsquid/
                              	if [ -f /var/etc/lightsquid/lighttpd_ls.conf ]; then
                              		/usr/local/sbin/lighttpd_ls -f /var/etc/lightsquid/lighttpd_ls.conf
                              	fi
                              }
                              
                              rc_stop() {
                              	# Terminate lightsquid Lighttpd webserver, if found.
                              	pidnum="$(/bin/pgrep lighttpd_ls)"
                              	if [ ! -z "${pidnum}" ]; then
                              		/usr/bin/killall lighttpd_ls
                              	fi
                              }
                              
                              case $1 in
                              	start)
                              		rc_start
                              		;;
                              	stop)
                              		rc_stop
                              		;;
                              	restart)
                              		rc_stop
                              		rc_start
                              		;;
                              esac
                              

                              It is still not started after reboot.

                              1 Reply Last reply Reply Quote 0
                              • M
                                maverick_slo
                                last edited by Mar 11, 2016, 7:45 PM

                                Possible that something is preventing pkg_edit.php?xml=lightsquid.xml when you click on Save to apply correct permissions or something?

                                Forgot to mention… This happens on both of my pfsenses...

                                1 Reply Last reply Reply Quote 0
                                • J
                                  jimp Rebel Alliance Developer Netgate
                                  last edited by Mar 11, 2016, 8:11 PM

                                  If the pkg_edit page was failing to apply then it would work at bootup but not the other way around.

                                  It's acting as though it's not performing the boot-time sync for you that it's doing for me. When it boots up I have /var/etc/lightsquid with the config inside and it's running.

                                  Remember: Upvote with the 👍 button for any user/post you find to be helpful, informative, or deserving of recognition!

                                  Need help fast? Netgate Global Support!

                                  Do not Chat/PM for help!

                                  1 Reply Last reply Reply Quote 0
                                  • M
                                    maverick_slo
                                    last edited by Mar 11, 2016, 8:20 PM

                                    So the cfg should be removed on every reboot?

                                    1 Reply Last reply Reply Quote 0
                                    • J
                                      jimp Rebel Alliance Developer Netgate
                                      last edited by Mar 11, 2016, 8:24 PM

                                      It should be irrelevant - the boot-time sync of packages should trigger a rewrite of the config and restart of the daemon. Which appears to be happening OK on my test VMs.

                                      Remember: Upvote with the 👍 button for any user/post you find to be helpful, informative, or deserving of recognition!

                                      Need help fast? Netgate Global Support!

                                      Do not Chat/PM for help!

                                      1 Reply Last reply Reply Quote 0
                                      • X
                                        xbipin
                                        last edited by Mar 12, 2016, 5:11 AM

                                        well same here on a full install after installing the 11th march snap

                                        1 Reply Last reply Reply Quote 0
                                        • M
                                          maverick_slo
                                          last edited by Mar 12, 2016, 6:54 AM

                                          I noticed that on reboot there is no more starting packages as it used to be. There is definitly something borked as others report it too.

                                          1 Reply Last reply Reply Quote 0
                                          3 out of 38
                                          • First post
                                            3/38
                                            Last post
                                          Copyright 2025 Rubicon Communications LLC (Netgate). All rights reserved.