MATLAB: How to specify what libraries the License Manager binaries will use

After downloading the FlexNet License Manager binaries from http://www.mathworks.com/support/install/license_manager_files.html I moved the binaries and libraries around to accommodate my current directory structure.
However, after doing so, I am unable to start the Network License Manager and receive the following error:
MLM: /usr/lib/libstdc++.so.6: version `GLIBCXX_3.4.15' not found (required by MLM)
(lmgrd) MLM exited with status 1 signal = 17
(lmgrd) Since this is an unknown status, license server
(lmgrd) manager (lmgrd) will attempt to re-start the vendor daemon.

Best Answer

This error will occur if the provided libraries or the Network License Manager binaries are not present in their default location. When you download just the Network License Manager binaries and libraries from http://www.mathworks.com/support/install/license_manager_files.html they are packaged in a particular way that allows them to utilize each other. If these directories are moved around then the Network License Manager binaries will not be able to automatically locate the necessary libraries.
To resolve this issue, please create the following environment variable: LD_LIBRARY_PATH
This environment variable will contain the location of the libraries that the MATLAB vendor daemon is required to use. After doing so, you can start the Network License Manager in reference to that environment variable:
setenv LD_LIBRARY_PATH {path_to_libraries};{flex path}/lmgrd -c license.dat -l logfile
Example:
setenv LD_LIBRARY_PATH /Libraries/MathWorks;/usr/local/MATLAB/R2014a/etc/glnxa64/lmgrd -c ./license.dat -l ./logfile.txt
You will have to use the above command to start license manager every time.