Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. Installation and Deployment
  4. libmimerapi.so => not found
Forum Updated to NodeBB v4.3 + New Features

libmimerapi.so => not found

Scheduled Pinned Locked Moved Unsolved Installation and Deployment
4 Posts 4 Posters 1.3k Views
  • 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.
  • T Offline
    T Offline
    TheFlyingMooseMan
    wrote on last edited by
    #1

    Ubuntu 20.04
    Qt 6.6.0

    $ ldd ~/Qt/6.6.0/gcc_64/plugins/sqldrivers/libqsqlmimer.so |grep 'not found'
    	libmimerapi.so => not found
    $
    

    Where/how do install this missing library?

    Any help/pointers are appreciated!

    Roy

    Christian EhrlicherC F 2 Replies Last reply
    0
    • T TheFlyingMooseMan

      Ubuntu 20.04
      Qt 6.6.0

      $ ldd ~/Qt/6.6.0/gcc_64/plugins/sqldrivers/libqsqlmimer.so |grep 'not found'
      	libmimerapi.so => not found
      $
      

      Where/how do install this missing library?

      Any help/pointers are appreciated!

      Roy

      Christian EhrlicherC Offline
      Christian EhrlicherC Offline
      Christian Ehrlicher
      Lifetime Qt Champion
      wrote on last edited by
      #2

      This lib was forgotten during deployment. If you really need the Mimer SQL plugin then you have to download it by yourself from https://www.mimer.com/ . If you don't need this plugn then you can ignore or remove it.

      Qt Online Installer direct download: https://download.qt.io/official_releases/online_installers/
      Visit the Qt Academy at https://academy.qt.io/catalog

      1 Reply Last reply
      0
      • T TheFlyingMooseMan

        Ubuntu 20.04
        Qt 6.6.0

        $ ldd ~/Qt/6.6.0/gcc_64/plugins/sqldrivers/libqsqlmimer.so |grep 'not found'
        	libmimerapi.so => not found
        $
        

        Where/how do install this missing library?

        Any help/pointers are appreciated!

        Roy

        F Offline
        F Offline
        Fralund
        wrote on last edited by
        #3

        @TheFlyingMooseMan
        The actual database client is not distributed by Qt, just the QtSql plugin. It's the same for OCI, MySQL, and PostgreSQL. The client for the Mimer SQL database can be found at https://developer.mimer.com

        1 Reply Last reply
        0
        • V Offline
          V Offline
          Valkin
          wrote on last edited by
          #4

          I was having the same error with missing libmimerapi.so, I tried to install the package from mimer but that also did not work. What eventually ended up making this work was adding the argument:

          -exclude-libs=libqsqlmimer
          

          so in total my linuxdepoloyqt command was

          linuxdeployqt-continuous-x86_64.AppImage <my binary> -unsupported-allow-new-glibc -qmake=~/Qt/6.6.1/gcc_64/bin/qmake -exclude-libs=libqsqlmimer
          

          and that worked for me. And running my app image in a new vm with no previous libraries removed the error of not being able to connect to sql databases (although I am not sure if that is the same issue you had here)

          1 Reply Last reply
          0

          • Login

          • Login or register to search.
          • First post
            Last post
          0
          • Categories
          • Recent
          • Tags
          • Popular
          • Users
          • Groups
          • Search
          • Get Qt Extensions
          • Unsolved