• Recent
  • Unsolved
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Register
  • Login
  • Recent
  • Unsolved
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Register
  • Login

Changing the directory where Fog images are stored question

Scheduled Pinned Locked Moved
FOG Problems
7
28
17.7k
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.
  • H
    Hanz @PageTown
    last edited by Feb 1, 2016, 2:50 PM

    @PageTown /opt/fog/.fogsettings —the file is hidden under that directory, but with nano (which I prefer and will need installed) or vi, it can be edited and resaved.

    If you google mounting in linux it will give you an idea of how I mounted the volume with /etc/fstab, there’s a lot out there on the subject

    P 1 Reply Last reply Feb 1, 2016, 3:19 PM Reply Quote 0
    • P
      PageTown @Hanz
      last edited by Feb 1, 2016, 3:19 PM

      @Hanz

      Here are the contents of my fogsettings folder. I’m not sure which parameter I need to change to redirect where my images are stored:

      Created by the FOG Installer

      Version: 1.2.0

      Install time: Mon 01 Feb 2016 08:57:55 AM CST

      ipaddress=“10.1.8.10”;
      interface=“eth0”;
      routeraddress=“# option routers x.x.x.x;”;
      plainrouter=“”;
      dnsaddress=“# option domain-name-servers x.x.x.x; “;
      dnsbootimage=””;
      password=“0cac54”;
      osid=“2”;
      osname=“Debian”;
      dodhcp=“n”;
      bldhcp=“0”;
      installtype=“N”;
      snmysqluser=“”
      snmysqlpass=“password”;
      snmysqlhost=“”;
      installlang=“0”;
      donate=“0”;
      fogupdateloaded=“1”

      W 1 Reply Last reply Feb 1, 2016, 3:26 PM Reply Quote 0
      • W
        Wayne Workman @PageTown
        last edited by Feb 1, 2016, 3:26 PM

        @PageTown It appears that 1.2.0 doesn’t have the settings that @Hanz was talking about.

        You’ll have to do it manually.

        You’ll need to edit /etc/exports
        and you’ll need to change the web interface in storage management to reflect the new location
        You’ll need to configure permissions on the new location, and you’ll need to create the subdirectory dev and the (hidden and empty) .mntcheck files.

        Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG!
        Daily Clean Installation Results:
        https://fogtesting.fogproject.us/
        FOG Reporting:
        https://fog-external-reporting-results.fogproject.us/

        P 2 Replies Last reply Feb 1, 2016, 3:33 PM Reply Quote 0
        • P
          PageTown @Wayne Workman
          last edited by PageTown Feb 1, 2016, 9:36 AM Feb 1, 2016, 3:33 PM

          @Wayne-Workman

          How do I create the .mntcheck files? Can I copy them from the default images/dev locations that was created when I did the original Fog install?

          W 1 Reply Last reply Feb 1, 2016, 3:38 PM Reply Quote 0
          • W
            Wayne Workman @PageTown
            last edited by Wayne Workman Feb 1, 2016, 9:39 AM Feb 1, 2016, 3:38 PM

            @PageTown You can create them like this, but substitute your new path for /images

            touch /images/.mntcheck
            touch /images/dev/.mntcheck

            that’s it. They are literally just blank files. You don’t need to do any copying.

            Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG!
            Daily Clean Installation Results:
            https://fogtesting.fogproject.us/
            FOG Reporting:
            https://fog-external-reporting-results.fogproject.us/

            1 Reply Last reply Reply Quote 1
            • P
              PageTown @Wayne Workman
              last edited by Feb 1, 2016, 8:46 PM

              @Wayne-Workman

              I think I did everything correctly, but I am receiving this error when I try to upload an image:
              0_1454359590702_IMG001.jpg

              W 1 Reply Last reply Feb 1, 2016, 8:48 PM Reply Quote 0
              • W
                Wayne Workman @PageTown
                last edited by Feb 1, 2016, 8:48 PM

                @PageTown Check your firewall, and set 777 permissions recursively on /media/bfd/images

                chmod -R 777 /media/BFD/images

                Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG!
                Daily Clean Installation Results:
                https://fogtesting.fogproject.us/
                FOG Reporting:
                https://fog-external-reporting-results.fogproject.us/

                P 1 Reply Last reply Feb 1, 2016, 9:05 PM Reply Quote 0
                • P
                  PageTown @Wayne Workman
                  last edited by Feb 1, 2016, 9:05 PM

                  @Wayne-Workman

                  The chmod command didn’t work.

                  If it was a firewall issue, wouldn’t that block my being able to register the host?

                  I W 2 Replies Last reply Feb 1, 2016, 9:11 PM Reply Quote 0
                  • I
                    ITSolutions Testers @PageTown
                    last edited by Feb 1, 2016, 9:11 PM

                    @PageTown d you run chmod as sudo?

                    sudo chmod -R 777 /media/BFD/images
                    
                    
                    P 1 Reply Last reply Feb 1, 2016, 9:24 PM Reply Quote 1
                    • W
                      Wayne Workman @PageTown
                      last edited by Feb 1, 2016, 9:12 PM

                      @PageTown said:

                      The chmod command didn’t work.

                      It might not have solved the issue, but I promise it’s a necessary step.

                      You’re /etc/exports should look like this:

                      /media/BFD/images *(ro,sync,no_wdelay,no_subtree_check,insecure_locks,no_root_squash,insecure,fsid=0)
                      /media/BFD/images/dev *(rw,async,no_wdelay,no_subtree_check,no_root_squash,insecure,fsid=1)
                      

                      You’re .mntcheck file creation would be:

                      touch /media/BFD/images/.mntcheck
                      touch /media/BFD/images/dev/.mntcheck
                      

                      Then to recursively set that directory and the mntcheck files permissions:
                      chmod -R 777 /media/BFD/images

                      You’d need to reset the nfs and rpc service next (or just reboot).

                      sudo service nfs-kernel-server restart
                      sudo service rpcbind restart
                      

                      Seeing how you have an NFS related issue with uploading, you might want to look through this wiki and try some of these things manually:
                      https://wiki.fogproject.org/wiki/index.php?title=Troubleshoot_NFS

                      Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG!
                      Daily Clean Installation Results:
                      https://fogtesting.fogproject.us/
                      FOG Reporting:
                      https://fog-external-reporting-results.fogproject.us/

                      P 1 Reply Last reply Feb 2, 2016, 5:14 PM Reply Quote 0
                      • P
                        PageTown @ITSolutions
                        last edited by Feb 1, 2016, 9:24 PM

                        @ITSolutions

                        Yes.

                        1 Reply Last reply Reply Quote 0
                        • S
                          Sebastian Roth Moderator
                          last edited by Feb 1, 2016, 9:32 PM

                          @PageTown So what error did you see when trying to chmod?? We need information to be able to help!

                          Web GUI issue? Please check apache error (debian/ubuntu: /var/log/apache2/error.log, centos/fedora/rhel: /var/log/httpd/error_log) and php-fpm log (/var/log/php*-fpm.log)

                          Please support FOG if you like it: https://wiki.fogproject.org/wiki/index.php/Support_FOG

                          P 1 Reply Last reply Feb 1, 2016, 10:08 PM Reply Quote 1
                          • P
                            PageTown @Sebastian Roth
                            last edited by Feb 1, 2016, 10:08 PM

                            @Sebastian-Roth

                            There was no message when I ran the chmod command. It looked to me like it took it, but I am still getting the same error that is in the screen shot I posted when I try to pull an image.

                            W 1 Reply Last reply Feb 1, 2016, 11:20 PM Reply Quote 0
                            • W
                              Wayne Workman @PageTown
                              last edited by Feb 1, 2016, 11:20 PM

                              @PageTown There has to be something wrong somewhere. Can you take more pictures of the upload process? A lot of information is displayed during the upload and that would help us solve this. Also, can you give us a screen shot of your storage node settings area? What is your FOG Server’s IP address?

                              Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG!
                              Daily Clean Installation Results:
                              https://fogtesting.fogproject.us/
                              FOG Reporting:
                              https://fog-external-reporting-results.fogproject.us/

                              1 Reply Last reply Reply Quote 0
                              • S
                                Sebastian Roth Moderator
                                last edited by Feb 2, 2016, 10:21 AM

                                @PageTown The path /media/BFD sounds a bit like this is an external drive mounted into that path. What filesystem is on that drive? Run mount | grep media to check and post the output here in the forums.

                                Web GUI issue? Please check apache error (debian/ubuntu: /var/log/apache2/error.log, centos/fedora/rhel: /var/log/httpd/error_log) and php-fpm log (/var/log/php*-fpm.log)

                                Please support FOG if you like it: https://wiki.fogproject.org/wiki/index.php/Support_FOG

                                P 1 Reply Last reply Feb 2, 2016, 2:26 PM Reply Quote 0
                                • P
                                  PageTown @Sebastian Roth
                                  last edited by Feb 2, 2016, 2:26 PM

                                  @Sebastian-Roth

                                  I have Ubuntu and Fog installed on a 120GB SSD. I am trying to save my images to a separate 1TB HDD drive. The 1TB drive is an internal drive, connected to the mother board via SATA.

                                  The filesystem is NTFS. See screenshot.

                                  The result of running the mount | grep was : /dev/sdb1 on /media/BFD type fuseblk (rw, nosuld,nodev,allow_other,default_permissions,blksize=4096)0_1454423215415_Screenshot from 2016-02-02 08_18_07.png

                                  I 1 Reply Last reply Feb 2, 2016, 3:51 PM Reply Quote 0
                                  • S
                                    Sebastian Roth Moderator
                                    last edited by Feb 2, 2016, 3:49 PM

                                    I am not sure if NFS on a NTFS partition is a good idea? Anyone ever tried this? I haven’t so far. Permission issue might be because of this but I am not sure.

                                    Web GUI issue? Please check apache error (debian/ubuntu: /var/log/apache2/error.log, centos/fedora/rhel: /var/log/httpd/error_log) and php-fpm log (/var/log/php*-fpm.log)

                                    Please support FOG if you like it: https://wiki.fogproject.org/wiki/index.php/Support_FOG

                                    P W 2 Replies Last reply Feb 2, 2016, 3:55 PM Reply Quote 0
                                    • I
                                      ITSolutions Testers @PageTown
                                      last edited by Feb 2, 2016, 3:51 PM

                                      @PageTown You don’t want to use NTFS on an NFS share. It is best if you reformat the drive to Ext4 and then go back through the steps outlined by @Wayne-Workman

                                      1 Reply Last reply Reply Quote 1
                                      • P
                                        pugnacious @Sebastian Roth
                                        last edited by Feb 2, 2016, 3:55 PM

                                        @Sebastian-Roth I never got it to work at all. I ended up swapping to a different solution.

                                        1 Reply Last reply Reply Quote 0
                                        • P
                                          PageTown @Wayne Workman
                                          last edited by PageTown Feb 2, 2016, 11:17 AM Feb 2, 2016, 5:14 PM

                                          @Wayne-Workman

                                          Ok, I am up and running! I was following your instructions regarding the exports file and creating the mntcheck files and went into my BFD drive to look at the /images and /images/dev folder when I right clicked on a folder and noticed that the path was not BFD but BFD_. I renamed the path in exports and in storage management and it started pulling an image from my test machine.

                                          I feel foolish that it was something so simple, but I don’t recall naming the drive with an underscore. The only place the additional underscore even shows up is when you right click on a file or folder on it and look at the path.

                                          Thanks everyone for your time and patience!

                                          1 Reply Last reply Reply Quote 2
                                          • 1
                                          • 2
                                          • 2 / 2
                                          2 / 2
                                          • First post
                                            16/28
                                            Last post

                                          152

                                          Online

                                          12.1k

                                          Users

                                          17.3k

                                          Topics

                                          155.3k

                                          Posts
                                          Copyright © 2012-2024 FOG Project