This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Can't open PureMessage Manage Quarantine

Hi,

I have problem with puremessage manage quarantine and reporting.

When I open manage quarantine, below error message appear:

An error occurred when querying the quarantine: 

Can't call method "prepare" on unblessed reference at /opt/pmx/lib/site_perl/5.8.7/PureMessage/MessageStore/pmdb/MessageSet.pm line 215. 

Any body have experience dealing with this problem? really appreciate your help.

Best Regards

:18023


This thread was automatically locked due to age.
Parents
  • Ah,

    OK, the LD_LIBRARY is missing from your environment settings. I would check the file .pmx_sh_vars and make sure that the following lines are listed.

    if test -z "${LD_LIBRARY_PATH:-}"; then
        LD_LIBRARY_PATH="/opt/pmx/lib"
    else
        LD_LIBRARY_PATH="/opt/pmx/lib:$LD_LIBRARY_PATH"
    fi

    if test -z "${LD_32_LIBRARY_PATH:-}"; then
        LD_32_LIBRARY_PATH="/opt/pmx/lib"
    else
        LD_32_LIBRARY_PATH="/opt/pmx/lib:$LD_32_LIBRARY_PATH"
    fi

    I see that LD_32_LIBRARY_PATH is set in you environment but not LD_LIBRARY_PATH.  You could manually test it by setting the value at the shell to see if the database will start.

    $ export LD_LIBRARY_PATH=/opt/pmx/lib

    $ pmx-database start

    -Jason

    :35583
Reply
  • Ah,

    OK, the LD_LIBRARY is missing from your environment settings. I would check the file .pmx_sh_vars and make sure that the following lines are listed.

    if test -z "${LD_LIBRARY_PATH:-}"; then
        LD_LIBRARY_PATH="/opt/pmx/lib"
    else
        LD_LIBRARY_PATH="/opt/pmx/lib:$LD_LIBRARY_PATH"
    fi

    if test -z "${LD_32_LIBRARY_PATH:-}"; then
        LD_32_LIBRARY_PATH="/opt/pmx/lib"
    else
        LD_32_LIBRARY_PATH="/opt/pmx/lib:$LD_32_LIBRARY_PATH"
    fi

    I see that LD_32_LIBRARY_PATH is set in you environment but not LD_LIBRARY_PATH.  You could manually test it by setting the value at the shell to see if the database will start.

    $ export LD_LIBRARY_PATH=/opt/pmx/lib

    $ pmx-database start

    -Jason

    :35583
Children
No Data