-
Hello all, I am having troubles with a new install of Snipe-IT on an Ubuntu server. I am 100% new to this and Data bases in general. I was tasked with setting it up and now migrating from the current running on a Windows Server 2012 machine. Current: Moving to: I am encountering an error when logging in after the setup and migration completed. Illuminate\Database\QueryException I have looked through the most common issues and tried the list of php commands outlined composer dump-autoload No luck Tried re-migrating and clearing config Knowing nothing about SQL, I feel I am in over my head on how to work this out. Thank you, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
I was able to resolve this on my own. There was a permissions issue with that specific table and adding the following resolved that |
Beta Was this translation helpful? Give feedback.
-
AWESOME! Thanks for letting us know! |
Beta Was this translation helpful? Give feedback.
I was able to resolve this on my own. There was a permissions issue with that specific table and adding the following resolved that
GRANT ALL PRIVILEGES ON name.* TO 'name'@'localhost';
FLUSH PRIVILEGES;
Had a couple more migration issue that I was able to resolve easily