• Recent
    • Tags
    • Popular
    • Register
    • Login

    Please Note This forum exists for community support for the Mango product family and the Radix IoT Platform. Although Radix IoT employees participate in this forum from time to time, there is no guarantee of a response to anything posted here, nor can Radix IoT, LLC guarantee the accuracy of any information expressed or conveyed. Specific project questions from customers with active support contracts are asked to send requests to support@radixiot.com.

    Radix IoT Website Mango 3 Documentation Website Mango 4 Documentation Website Mango 5 Documentation Website

    Problem updating windows mango server

    Mango Automation Installation
    2
    17
    5.1k
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • phildunlapP
      phildunlap
      last edited by

      How bizarre. I don't see the errors from the first post in the log you just attached. Did you restore a backup and then run the commands I included? If so, I suspect you skipped Upgrade 9 to 10 (not in your log) and only did the upgrade for 10 to 11, then tried 11 to 12. If I am mistaken, please share your Upgrade9.log file.

      Your procedure looks fine, but you can't skip Upgrade 9. It would be considerably more painful to try to perform Upgrade 9 from the command line (unless your existing user permission settings are not very important to you, then you can run the commands in the mysql portion of https://github.com/infiniteautomation/ma-core-public/blob/2.7.x/Core/src/com/serotonin/m2m2/db/upgrade/Upgrade9.java

      But I would encourage you to,

      1. restore from a backup,
      2. place Core zip in Mango/ directory
      3. place module zips in Mango/web/modules
      4. start Mango with ma-start.bat
      5. IFF Mango fails in upgrade 10 with the 'templates table exists' SQL error, run the commands I gave you
      1 Reply Last reply Reply Quote 0
      • H
        hornetgr
        last edited by

        Hi again,

        The new script is not running at all!

        we used the old script (ma-start) and it stopped at the upgrade 10 we did the commands and then again stops with an error.

        the logs attached

        0_1479399223522_ma (1).log

        1 Reply Last reply Reply Quote 0
        • H
          hornetgr
          last edited by

          we forgot to mention that all the upgrade logs are null

          1 Reply Last reply Reply Quote 0
          • H
            hornetgr
            last edited by

            And also we have another question.

            Why we need the new scripts, its seems that the old ma-start is doing the same thing.
            In all the other cases we used the new scripts and the did the same thing.

            Sorry for the multi threads but i cannot find the edit button

            1 Reply Last reply Reply Quote 0
            • phildunlapP
              phildunlap
              last edited by phildunlap

              Edit is in the gear icon in the bottom left of your post.

              The scripts in the Mango/bin directory may have been updated. You can compare versions of the script on our Github, if you like: https://github.com/infiniteautomation/ma-core-public/blob/2.7.x/Core/scripts/ma-start.bat . I believe at some point there was an issue with how the update was being performed on Windows.

              I suspect a lot of the SQL problems we're having are a result of doing the upgrades so many times. And, you're restoring from a MySQL dump, yes? Those typically begin with a bunch of DROP TABLE IF EXISTS `tableName`; statements, so it's not dropping the tables made by previous attempts at running because they're unknown at the time of the dump! I'll raise the idea of including the DROP TABLE IF EXISTS in future versions, but it does seem like something else would have to have gone wrong and we shouldn't presume the table ought be purged. So, in addition to potentially circumventing upgrade 10 if it fails from a clean restore, you may need to

              DROP TABLE templates;
              DROP TABLE jsonData;
              

              before running the upgrades. Consider also renaming the files in your Mango/classes/ directory, log4j.xml --> normal-log4j.xml, debug-log4j.xml --> log4j.xml to enable debug logging. If you are letting the script unzip the upgrade (if it isn't just unzipped by now), though, you may wish to place it in your Mango/overrides/properties directory as log4j.xml, and skip renaming it.

              1 Reply Last reply Reply Quote 0
              • phildunlapP
                phildunlap
                last edited by

                You could also try just setting your database schema version to 12, since it seems like everything has already seemed run to some extent. Upgrade 11 is only two statements:

                CREATE TABLE jsonData (id int not null auto_increment,xid varchar(50) not null, name varchar(255) not null, readPermission varchar(255), editPermission varchar(255), data longtext, primary key (id))engine=InnoDB;
                ALTER TABLE jsonData ADD CONSTRAINT jsonDataUn1 UNIQUE (xid);
                

                so consider

                UPDATE systemSettings SET settingvalue='12' WHERE settingname='databaseSchemaVersion';
                

                if

                SHOW CREATE TABLE jsonData;
                

                looks alright.

                1 Reply Last reply Reply Quote 0
                • H
                  hornetgr
                  last edited by

                  About the edit button , so silly of me , thanks.

                  Well after each unsuccessful upgrade attempt we always perform a clean install of mango, (we delete everything and copy from another location). We also restore from a database SQL dump that is exported before doing anything.

                  You send us much information and work for tomorrow. We will keep you informed.

                  1 Reply Last reply Reply Quote 0
                  • H
                    hornetgr
                    last edited by hornetgr

                    Hi Phil,
                    well we settle for now at 2.6.0 version ( well its a start!) and we are going to try to upgrade to 2.7.12 next week..

                    No luck from 2.5.2 to 2.7.12 it is impossible with our setup. Numerous errors in MySQL as you predicted.
                    We also had many errors in 2.6.0 from a free bacnet datasource, that we deleted and after that 2.6 is working.

                    I am send you the ma log from early morning trials.

                    0_1479488668091_ma (2).log

                    1 Reply Last reply Reply Quote 0
                    • H
                      hornetgr
                      last edited by hornetgr

                      Hi Phil

                      As we are clearly unsuccesful to upgrade to 2,7 versions ,we are at the proccess to upgrade to the latest 2.8.4. (i remind you that we are at 2.6 version)

                      Is this possible ?

                      Also do we have to delete tables from our MySQL schema or you have implemented to the latest version the solution to the problems that we encounter. You have advise us to drop some tables in the prvious atempts.

                      Thx
                      .

                      1 Reply Last reply Reply Quote 0
                      • phildunlapP
                        phildunlap
                        last edited by

                        The database would undergo the same updates it would if it were upgrading to 2.7.

                        No the upgrades have not been updated to drop the tables, it slipped my mind to get "DROP IF EXISTS" into the mysql upgrade scripts, so you may have to drop the tables the upgrades create, or restore your MySQL dump into a new MySQL database.

                        1 Reply Last reply Reply Quote 0
                        • First post
                          Last post