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

    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
    • 1 / 1