Jump to content

mihaamiharu

Members
  • Posts

    24
  • Joined

  • Last visited

Community Answers

  1. mihaamiharu's post in Can't Start ./athena-start was marked as the answer   
    Solved


    --- This problem caused by  ----
    My server have GLIBCXX version 19 on /usr/lib64/
    even tough i have GLIBCXX version 25 on /usr/local/lib64/
    So i need to compile newer version of gcc to my default gcc (not local) /lib64/libstdc++.so.6 version to 25.
     
     
    // Here's how i do it.
    #Change directory to local/lib64
    cd /usr/local/lib64
     
    #Copy newest libstdcc version to /usr/lib64
    cp libstdc++.so.6.0.25 /usr/lib64/
     
    #Change directory to /usr/lib64/
    cd /usr/lib64/
     
    #moving old libstdc++ running on my server.
    mv libstdc++.so.6 libstdc++.so.6.OLD
     
    #Setting newest GLIBCXX version to running
    ln -sf libstdc++.so.6.0.25 libstdc++.so.6
     
     
     
×
×
  • Create New...