• Recent
    • Unsolved
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login
    1. Home
    2. RoweAdmin
    R
    • Profile
    • Following 0
    • Followers 0
    • Topics 0
    • Posts 2
    • Best 1
    • Controversial 0
    • Groups 0

    RoweAdmin

    @RoweAdmin

    1
    Reputation
    225
    Profile views
    2
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    RoweAdmin Unfollow Follow

    Best posts made by RoweAdmin

    • RE: Problem trying to update from 1.2.0 to 1.3.0

      @Wayne-Workman

      Some things I found trying to follow the wiki -> at least on a fresh Ubuntu 16.04.1 server.

      Mounting should read: (got error “bash: x.x.x.x:/images/test.txt: No such file or directory”)

      mkdir /new 
      mount x.x.x.x:/images/dev /new
      

      Export DB should read: (kept getting error “mysqldump: unknown option ‘-D’”

      #No password.
      mysqldump -B fog > /new/fogdb.sql
      
      #Password with root user.
      mysqldump -B fog -u root -p > /new/fogdb.sql
      
      #No password, localhost.
      mysqldump -B fog -h localhost > /new/fogdb.sql
      
      #No password, local loopback.
      mysqldump -B fog -h 127.0.0.1 > /new/fogdb.sql
      
      #Password with localhost.
      mysqldump -B fog -h localhost -u root -p > /new/fogdb.sql
      
      #Password with local loopback.
      mysqldump -B fog -h 127.0.0.1 -u root -p > /new/fogdb.sql
      

      Export Images should be: (got error: “no command ‘copy’ found”)

      cp -r /images/* /new
      

      This might help if people are getting similar errors…

      posted in FOG Problems
      R
      RoweAdmin

    Latest posts made by RoweAdmin

    • RE: Problem trying to update from 1.2.0 to 1.3.0

      @Wayne-Workman

      Some things I found trying to follow the wiki -> at least on a fresh Ubuntu 16.04.1 server.

      Mounting should read: (got error “bash: x.x.x.x:/images/test.txt: No such file or directory”)

      mkdir /new 
      mount x.x.x.x:/images/dev /new
      

      Export DB should read: (kept getting error “mysqldump: unknown option ‘-D’”

      #No password.
      mysqldump -B fog > /new/fogdb.sql
      
      #Password with root user.
      mysqldump -B fog -u root -p > /new/fogdb.sql
      
      #No password, localhost.
      mysqldump -B fog -h localhost > /new/fogdb.sql
      
      #No password, local loopback.
      mysqldump -B fog -h 127.0.0.1 > /new/fogdb.sql
      
      #Password with localhost.
      mysqldump -B fog -h localhost -u root -p > /new/fogdb.sql
      
      #Password with local loopback.
      mysqldump -B fog -h 127.0.0.1 -u root -p > /new/fogdb.sql
      

      Export Images should be: (got error: “no command ‘copy’ found”)

      cp -r /images/* /new
      

      This might help if people are getting similar errors…

      posted in FOG Problems
      R
      RoweAdmin
    • RE: FOG Multicasting Please Wait Issue

      I made the mistake of thinking there was a problem when only 1 client was connected and stuck on the Please Wait screen. After starting the second client, everything worked great.

      We are seeing speeds of 2Gb/s and more through an old Linksys/Cisco 16 port gigabit switch with 11 clients.

      posted in FOG Problems
      R
      RoweAdmin