bug: migration en échec après la récupération d'une bdd depuis une autre machine (mais peut-être pas lié ?)
PhilippeAccorsi opened this issue · 1 comments
PhilippeAccorsi commented
Actuellement
J'ai récupéré ma bdd (cf issue #930 ), qui marche en local correctement, pour la mettre sur une machine plus proche d'une prod (cf issue #929 ).
Mon souci maintenant c'est que j'ai cette erreur au démarrage :
2024/10/29 01:17:49 [notice] 9#9: using the "epoll" event method
2024/10/29 01:17:49 [notice] 9#9: nginx/1.24.0
2024/10/29 01:17:49 [notice] 9#9: OS: Linux 6.1.0-25-amd64
2024/10/29 01:17:49 [notice] 9#9: getrlimit(RLIMIT_NOFILE): 1048576:1048576
2024/10/29 01:17:49 [notice] 9#9: start worker processes
2024/10/29 01:17:49 [notice] 9#9: start worker process 12
2024/10/29 01:17:49 [notice] 9#9: start worker process 13
INFO Running migrations.
2024_10_28_223549_add_ldap_columns_to_users_table .............. 3.44ms FAIL
Illuminate\Database\QueryException
SQLSTATE[HY000]: General error: 1 duplicate column name: guid (Connection: sqlite, SQL: alter table "users" add column "guid" varchar)
at vendor/laravel/framework/src/Illuminate/Database/Connection.php:825
821▕ $this->getName(), $query, $this->prepareBindings($bindings), $e
822▕ );
823▕ }
824▕
➜ 825▕ throw new QueryException(
826▕ $this->getName(), $query, $this->prepareBindings($bindings), $e
827▕ );
828▕ }
829▕ }
+9 vendor frames
10 database/migrations/2024_10_28_223549_add_ldap_columns_to_users_table.php:19
Illuminate\Support\Facades\Facade::__callStatic("table")
+25 vendor frames
36 artisan:35
Illuminate\Foundation\Console\Kernel::handle(Object(Symfony\Component\Console\Input\ArgvInput), Object(Symfony\Component\Console\Output\ConsoleOutput))
2024-10-29 01:17:49,692 WARN exited: migrate (exit status 0; not expected)
2024-10-29 01:17:50,693 INFO gave up: migrate entered FATAL state, too many start retries too quickly
2024-10-29 01:17:50,694 INFO success: nginx entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2024-10-29 01:17:50,694 INFO success: php entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
[29-Oct-2024 01:17:51] NOTICE: [pool www] 'user' directive is ignored when FPM is not running as root
[29-Oct-2024 01:17:51] NOTICE: [pool www] 'group' directive is ignored when FPM is not running as root
[29-Oct-2024 01:17:51] NOTICE: fpm is running, pid 10
[29-Oct-2024 01:17:51] NOTICE: ready to handle connections
Je ne sais pas si cela à un lien avec les manip effectué ou si c'est juste un bug dans un fix de migration récent (j'ai peut-être pas la même version du repo entre mes essais en local et mon server de "presque prod" :)
dbarzin commented
Ce fichier de migration est généré par la commande php artisan vendor:publish --all
, il crée le fichier de migration afin d'intégrer LDAP. Si cette migration a déjà été effectuée précédemment, tu peux simplement supprimer ce fichier.