Magento 2 Admin login ProblemMagento 2 Admin Login ErrorMagento2 admin after login redirect back to admin...

categorizing a variable turns it from insignificant to significant

"Oh no!" in Latin

Unfrosted light bulb

What is it called when someone votes for an option that's not their first choice?

Relations between homogeneous polynomials

Writing in a Christian voice

What is this high flying aircraft over Pennsylvania?

Why can't I get pgrep output right to variable on bash script?

PTIJ: Which Dr. Seuss books should one obtain?

Highest stage count that are used one right after the other?

Are all namekians brothers?

What is the purpose of using a decision tree?

Do people actually use the word "kaputt" in conversation?

Asserting that Atheism and Theism are both faith based positions

Is there a distance limit for minecart tracks?

Calculate Pi using Monte Carlo

Air travel with refrigerated insulin

How can a new country break out from a developed country without war?

Make a Bowl of Alphabet Soup

Not hide and seek

Taking the numerator and the denominator

Would this string work as string?

Capacitor electron flow

Did I make a mistake by ccing email to boss to others?



Magento 2 Admin login Problem


Magento 2 Admin Login ErrorMagento2 admin after login redirect back to admin login?Imported products show up in backend but not on front endMagento 2 - Adding 2 (or more) configurable products to cart with custom options causes Integrity constraint violationMagento 2 Insert data to table that contain foreign key error SQLSTATE[23000]: Integrity constraint violationIntegrity constraint violation error when saving product (google experiments on)Magento 2: Creating product with custom OptionsMagento v2.1.7 admin login errorData Migration From Magento 1.9.1 to 2.1.9Random integrity constraint errors saving orders in Magento 2.1 after payment













3















I am able to login to the admin control panel the first time and when I logout and login again it get this message:




There has been an error processing your request
SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry '0' for key 'PRIMARY', query was: INSERT INTO `admin_user_session` (`session_id`, `user_id`, `status`, `ip`) VALUES (?, ?, ?, ?)




But this works again when I get the empty ADMIN_USER_SESSION table in PHPMyAdmin.










share|improve this question





























    3















    I am able to login to the admin control panel the first time and when I logout and login again it get this message:




    There has been an error processing your request
    SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry '0' for key 'PRIMARY', query was: INSERT INTO `admin_user_session` (`session_id`, `user_id`, `status`, `ip`) VALUES (?, ?, ?, ?)




    But this works again when I get the empty ADMIN_USER_SESSION table in PHPMyAdmin.










    share|improve this question



























      3












      3








      3








      I am able to login to the admin control panel the first time and when I logout and login again it get this message:




      There has been an error processing your request
      SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry '0' for key 'PRIMARY', query was: INSERT INTO `admin_user_session` (`session_id`, `user_id`, `status`, `ip`) VALUES (?, ?, ?, ?)




      But this works again when I get the empty ADMIN_USER_SESSION table in PHPMyAdmin.










      share|improve this question
















      I am able to login to the admin control panel the first time and when I logout and login again it get this message:




      There has been an error processing your request
      SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry '0' for key 'PRIMARY', query was: INSERT INTO `admin_user_session` (`session_id`, `user_id`, `status`, `ip`) VALUES (?, ?, ?, ?)




      But this works again when I get the empty ADMIN_USER_SESSION table in PHPMyAdmin.







      magento-2.1






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited 5 mins ago









      Teja Bhagavan Kollepara

      3,00641949




      3,00641949










      asked Dec 5 '17 at 0:06









      VenkateshaVenkatesha

      545




      545






















          3 Answers
          3






          active

          oldest

          votes


















          0














          MAKE SURE YOU HAVE A DB BACKUP



          You can verify that your admin_user_session table has the primary key set to auto-increment with this query:



          SELECT `AUTO_INCREMENT` FROM  INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA 'magento_db' AND TABLE_NAME = 'admin_user_session';


          If you see that auto-increment is turned off, then you can fix it with this query:



          ALTER TABLE 'admin_user_session' MODIFY COLUMN 'session_id' INT NOT NULL AUTO_INCREMENT;


          However, if you need to do that, that is a good indication that either your DB import failed or you have some custom functionality with admin sessions that is blocking the auto-increment functionality.






          share|improve this answer































            0














            Run below query your issue get resolved.



            ALTER TABLE `admin_user_session` MODIFY COLUMN 'session_id' INT AUTO_INCREMENT;





            share|improve this answer































              0














              CODE USED:



              SELECT AUTO_INCREMENT FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA 'magento_db' AND TABLE_NAME = 'admin_user_session' LIMIT 0, 25
              MySQL said: Documentation



              ERROR CODE:



              #1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''magento_db' AND TABLE_NAME = 'admin_user_session' LIMIT 0, 25' at line 1




              And when i tried to ALTER:





              CODE USED:
              ALTER TABLE 'admin_user_session' MODIFY COLUMN 'session_id' INT NOT NULL AUTO_INCREMENT;



              ERROR CODE:



              #1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''admin_user_session' MODIFY COLUMN 'session_id' INT NOT NULL AUTO_INCREMENT' at line 1





              share|improve this answer

























                Your Answer








                StackExchange.ready(function() {
                var channelOptions = {
                tags: "".split(" "),
                id: "479"
                };
                initTagRenderer("".split(" "), "".split(" "), channelOptions);

                StackExchange.using("externalEditor", function() {
                // Have to fire editor after snippets, if snippets enabled
                if (StackExchange.settings.snippets.snippetsEnabled) {
                StackExchange.using("snippets", function() {
                createEditor();
                });
                }
                else {
                createEditor();
                }
                });

                function createEditor() {
                StackExchange.prepareEditor({
                heartbeatType: 'answer',
                autoActivateHeartbeat: false,
                convertImagesToLinks: false,
                noModals: true,
                showLowRepImageUploadWarning: true,
                reputationToPostImages: null,
                bindNavPrevention: true,
                postfix: "",
                imageUploader: {
                brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
                contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
                allowUrls: true
                },
                onDemand: true,
                discardSelector: ".discard-answer"
                ,immediatelyShowMarkdownHelp:true
                });


                }
                });














                draft saved

                draft discarded


















                StackExchange.ready(
                function () {
                StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f204412%2fmagento-2-admin-login-problem%23new-answer', 'question_page');
                }
                );

                Post as a guest















                Required, but never shown

























                3 Answers
                3






                active

                oldest

                votes








                3 Answers
                3






                active

                oldest

                votes









                active

                oldest

                votes






                active

                oldest

                votes









                0














                MAKE SURE YOU HAVE A DB BACKUP



                You can verify that your admin_user_session table has the primary key set to auto-increment with this query:



                SELECT `AUTO_INCREMENT` FROM  INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA 'magento_db' AND TABLE_NAME = 'admin_user_session';


                If you see that auto-increment is turned off, then you can fix it with this query:



                ALTER TABLE 'admin_user_session' MODIFY COLUMN 'session_id' INT NOT NULL AUTO_INCREMENT;


                However, if you need to do that, that is a good indication that either your DB import failed or you have some custom functionality with admin sessions that is blocking the auto-increment functionality.






                share|improve this answer




























                  0














                  MAKE SURE YOU HAVE A DB BACKUP



                  You can verify that your admin_user_session table has the primary key set to auto-increment with this query:



                  SELECT `AUTO_INCREMENT` FROM  INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA 'magento_db' AND TABLE_NAME = 'admin_user_session';


                  If you see that auto-increment is turned off, then you can fix it with this query:



                  ALTER TABLE 'admin_user_session' MODIFY COLUMN 'session_id' INT NOT NULL AUTO_INCREMENT;


                  However, if you need to do that, that is a good indication that either your DB import failed or you have some custom functionality with admin sessions that is blocking the auto-increment functionality.






                  share|improve this answer


























                    0












                    0








                    0







                    MAKE SURE YOU HAVE A DB BACKUP



                    You can verify that your admin_user_session table has the primary key set to auto-increment with this query:



                    SELECT `AUTO_INCREMENT` FROM  INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA 'magento_db' AND TABLE_NAME = 'admin_user_session';


                    If you see that auto-increment is turned off, then you can fix it with this query:



                    ALTER TABLE 'admin_user_session' MODIFY COLUMN 'session_id' INT NOT NULL AUTO_INCREMENT;


                    However, if you need to do that, that is a good indication that either your DB import failed or you have some custom functionality with admin sessions that is blocking the auto-increment functionality.






                    share|improve this answer













                    MAKE SURE YOU HAVE A DB BACKUP



                    You can verify that your admin_user_session table has the primary key set to auto-increment with this query:



                    SELECT `AUTO_INCREMENT` FROM  INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA 'magento_db' AND TABLE_NAME = 'admin_user_session';


                    If you see that auto-increment is turned off, then you can fix it with this query:



                    ALTER TABLE 'admin_user_session' MODIFY COLUMN 'session_id' INT NOT NULL AUTO_INCREMENT;


                    However, if you need to do that, that is a good indication that either your DB import failed or you have some custom functionality with admin sessions that is blocking the auto-increment functionality.







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered Dec 5 '17 at 0:53









                    HaydenFromITHaydenFromIT

                    362




                    362

























                        0














                        Run below query your issue get resolved.



                        ALTER TABLE `admin_user_session` MODIFY COLUMN 'session_id' INT AUTO_INCREMENT;





                        share|improve this answer




























                          0














                          Run below query your issue get resolved.



                          ALTER TABLE `admin_user_session` MODIFY COLUMN 'session_id' INT AUTO_INCREMENT;





                          share|improve this answer


























                            0












                            0








                            0







                            Run below query your issue get resolved.



                            ALTER TABLE `admin_user_session` MODIFY COLUMN 'session_id' INT AUTO_INCREMENT;





                            share|improve this answer













                            Run below query your issue get resolved.



                            ALTER TABLE `admin_user_session` MODIFY COLUMN 'session_id' INT AUTO_INCREMENT;






                            share|improve this answer












                            share|improve this answer



                            share|improve this answer










                            answered Sep 19 '18 at 14:02









                            Prashant ValandaPrashant Valanda

                            9,82412355




                            9,82412355























                                0














                                CODE USED:



                                SELECT AUTO_INCREMENT FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA 'magento_db' AND TABLE_NAME = 'admin_user_session' LIMIT 0, 25
                                MySQL said: Documentation



                                ERROR CODE:



                                #1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''magento_db' AND TABLE_NAME = 'admin_user_session' LIMIT 0, 25' at line 1




                                And when i tried to ALTER:





                                CODE USED:
                                ALTER TABLE 'admin_user_session' MODIFY COLUMN 'session_id' INT NOT NULL AUTO_INCREMENT;



                                ERROR CODE:



                                #1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''admin_user_session' MODIFY COLUMN 'session_id' INT NOT NULL AUTO_INCREMENT' at line 1





                                share|improve this answer






























                                  0














                                  CODE USED:



                                  SELECT AUTO_INCREMENT FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA 'magento_db' AND TABLE_NAME = 'admin_user_session' LIMIT 0, 25
                                  MySQL said: Documentation



                                  ERROR CODE:



                                  #1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''magento_db' AND TABLE_NAME = 'admin_user_session' LIMIT 0, 25' at line 1




                                  And when i tried to ALTER:





                                  CODE USED:
                                  ALTER TABLE 'admin_user_session' MODIFY COLUMN 'session_id' INT NOT NULL AUTO_INCREMENT;



                                  ERROR CODE:



                                  #1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''admin_user_session' MODIFY COLUMN 'session_id' INT NOT NULL AUTO_INCREMENT' at line 1





                                  share|improve this answer




























                                    0












                                    0








                                    0







                                    CODE USED:



                                    SELECT AUTO_INCREMENT FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA 'magento_db' AND TABLE_NAME = 'admin_user_session' LIMIT 0, 25
                                    MySQL said: Documentation



                                    ERROR CODE:



                                    #1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''magento_db' AND TABLE_NAME = 'admin_user_session' LIMIT 0, 25' at line 1




                                    And when i tried to ALTER:





                                    CODE USED:
                                    ALTER TABLE 'admin_user_session' MODIFY COLUMN 'session_id' INT NOT NULL AUTO_INCREMENT;



                                    ERROR CODE:



                                    #1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''admin_user_session' MODIFY COLUMN 'session_id' INT NOT NULL AUTO_INCREMENT' at line 1





                                    share|improve this answer















                                    CODE USED:



                                    SELECT AUTO_INCREMENT FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA 'magento_db' AND TABLE_NAME = 'admin_user_session' LIMIT 0, 25
                                    MySQL said: Documentation



                                    ERROR CODE:



                                    #1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''magento_db' AND TABLE_NAME = 'admin_user_session' LIMIT 0, 25' at line 1




                                    And when i tried to ALTER:





                                    CODE USED:
                                    ALTER TABLE 'admin_user_session' MODIFY COLUMN 'session_id' INT NOT NULL AUTO_INCREMENT;



                                    ERROR CODE:



                                    #1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''admin_user_session' MODIFY COLUMN 'session_id' INT NOT NULL AUTO_INCREMENT' at line 1






                                    share|improve this answer














                                    share|improve this answer



                                    share|improve this answer








                                    edited 5 mins ago









                                    Teja Bhagavan Kollepara

                                    3,00641949




                                    3,00641949










                                    answered Dec 7 '17 at 5:31









                                    VenkateshaVenkatesha

                                    545




                                    545






























                                        draft saved

                                        draft discarded




















































                                        Thanks for contributing an answer to Magento Stack Exchange!


                                        • Please be sure to answer the question. Provide details and share your research!

                                        But avoid



                                        • Asking for help, clarification, or responding to other answers.

                                        • Making statements based on opinion; back them up with references or personal experience.


                                        To learn more, see our tips on writing great answers.




                                        draft saved


                                        draft discarded














                                        StackExchange.ready(
                                        function () {
                                        StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f204412%2fmagento-2-admin-login-problem%23new-answer', 'question_page');
                                        }
                                        );

                                        Post as a guest















                                        Required, but never shown





















































                                        Required, but never shown














                                        Required, but never shown












                                        Required, but never shown







                                        Required, but never shown

































                                        Required, but never shown














                                        Required, but never shown












                                        Required, but never shown







                                        Required, but never shown







                                        Popular posts from this blog

                                        “%fieldName is a required field.”, in Magento2 REST API Call for GET Method Type The Next...

                                        How to change City field to a dropdown in Checkout step Magento 2Magento 2 : How to change UI field(s)...

                                        夢乃愛華...