Home > centos error > centos error while loading shared libraries libmysqlclient.so.15

Centos Error While Loading Shared Libraries Libmysqlclient.so.15

a DA server, recently updated mysql to version 5.1, you'll still need your old libmysqlclient.so files from mysql 5.0. This would be the error you're seeing:[root@server directadmin]# service directadmin restart Stopping DirectAdmin: [FAILED] Starting DirectAdmin: /usr/local/directadmin/directadmin: error while loading shared libraries: libmysqlclient.so.15: cannot open shared object file: No such file or directory [FAILED]To resolve the issue, simply grab the old libmysqlclient.so.15 file from our server. Example, for CentOS 5 - 64-bit, run:wget -O /usr/lib64/libmysqlclient.so.15 http://files.directadmin.com/services/es_5.0_64/libmysqlclient.so.15 chmod 755 /usr/lib64/libmysqlclient.so.15 ldconfig On non-64-bit systems, the file would go into /usr/lib/libmysqlclient.so.15 Similar reported issue on Debian 5 64-bit, type:wget -O /usr/local/mysql/lib/libmysqlclient.so.16 http://files.directadmin.com/services/debian_5.0_64/libmysqlclient.so.16 chmod 755 /usr/local/mysql/lib/libmysqlclient.so.16 ldconfig Debian 6, if you update to 5.5.11 from 5.5.9, they've changed the libmysqlclient.so.16 to libmysqlclient.so.18, so it just needs a relink. If you run thiscd /usr/local/directadmin ./directadmin oand get this error./directadmin: error while loading shared libraries: libmysqlclient.so.16: cannot open shared object file: No such file or directorythen run this:cd /usr/local/mysql/lib ln -s libmysqlclient.so.18 libmysqlclient.so.16 ldconfigSome reported cases of the link to 18 not working, so the 16 version has been made available. Type:cd /usr/local/mysql/lib rm -f libmysqlclient.so.16 #in case you've already tried the above linking method wget http://files.directadmin.com/services/debian_6.0/libmysqlclient.so.16 chmod 755 libmysqlclient.so.16 ldconfig Related Helpfiles ./install.sh: line 225: ./directadmin: cannot execute binary file Which OS am I using?

here for a quick overview of the site Help Center Detailed answers to any questions you might have Meta Discuss the workings and policies of this site About Us Learn more about Stack Overflow the company Business Learn more about hiring developers or posting ads with us Stack Overflow Questions Jobs Documentation Tags Users Badges Ask Question x Dismiss Join the Stack Overflow Community Stack Overflow is a community of 4.7 million programmers, just like you, helping each other. Join them; it https://help.directadmin.com/item.php?id=236 only takes a minute: Sign up libmysqlclient.so.15: cannot open shared object file: No such file or directory up vote 0 down vote favorite All Rails applications are working just fine until today. I am not sure, if someone changes the settings on this machine. However does anyone knows what could be the quick fix for this? Thank you, Details: Centos http://stackoverflow.com/questions/10529401/libmysqlclient-so-15-cannot-open-shared-object-file-no-such-file-or-directory 5.5 Apache Passenger Rails 3.0.x MySql 5.0.77 Error details: http://cl.ly/3w1l0Q2l002e1t1B2L3x ruby-on-rails linux apache centos passenger share|improve this question edited May 10 '12 at 8:13 asked May 10 '12 at 7:36 Lee 500621 Ubuntu: stackoverflow.com/questions/8456300/… –kenorb Mar 7 '14 at 18:04 add a comment| 2 Answers 2 active oldest votes up vote 6 down vote accepted Okay this saves the day. wget -O /usr/lib64/libmysqlclient.so.15 http://files.directadmin.com/services/es_5.0_64/libmysqlclient.so.15 chmod 755 /usr/lib64/libmysqlclient.so.15 ldconfig share|improve this answer edited Dec 4 '14 at 9:10 Cyril N. 14.8k1772136 answered May 11 '12 at 12:03 Lee 500621 add a comment| up vote 0 down vote You can try to find the right package by the following command: $ sudo yum whatprovides libmysqlclient.so.15 libmysqlclient15-5.0.95-5.w5.i386 libmysqlclient15-devel-5.0.95-5.w5.i386 cpanel-mysql-libs-5.0.96-1.cp1136.i386 : The shared libraries required for MySQL clients then: $ sudo yum reinstall WHATEVER_THE_PACKAGE_NAME_IS You may double check the package name by doing yum search package_name. If not found, you may try to fix your yum repositories e.g. by configuring Webtatic Yum Repository. To set up the repository, install the webtatic-release RPM: Webtatic EL6 for CentOS/RHEL 6: rpm -Uvh http://mirror.webtatic.com/yum/el6/latest.rpm We

Community Podcasts MySQL.com Downloads Documentation Section Menu: MySQL Forums :: Install & Repo :: error while loading shared libraries: http://forums.mysql.com/read.php?11,56170 libmysqlclient.so New Topic Advanced Search error while loading shared libraries: libmysqlclient.so Posted by: Yohann Dumais () Date: November 23, 2005 10:03AM Hi, I am migrating our http://www.cnblogs.com/emanlee/p/3509080.html web site from a SCO to a Redhat server and I'm having trouble with the mysql server. After installin apache, I did the following to install centos error mysql groupadd mysql useradd -g mysql mysql (untared mysql-5.0.16.tar.gz in /tmp) cd mysql-5.0.16 ./configure -prefix=/usr/local/mysql -localstatedir=/usr/local/mysql/data -disable-maintainer-mode -with-mysqld-user=mysql -enable-large-files-without-debug make make install cp support-files/my-medium.cnf /etc/my.cnf cd /usr/local/mysql bin/mysql_install_db --user=mysql chown -R root . chown -R mysql data chgrp -R mysql . bin/mysqld_safe --user=mysql & Now it is running: ps -ef | grep centos error while mysql root 19582 1 0 Nov22 ? 00:00:00 /bin/sh bin/mysqld_safe --user=mysql mysql 19606 19582 0 Nov22 ? 00:00:28 /usr/local/mysql/libexec/mysqld --basedir=/usr/local/mysql --datadir=/usr/local/mysql/data --user=mysql --pid-file=/usr/local/mysql/data/BLRMTL01.pid --skip-locking --port=3306 --socket=/tmp/mysql.sock root 787 32608 0 11:00 pts/1 00:00:00 grep mysql But if I do anything, for example /usr/local/mysql# bin/mysqladmin -version bin/mysqladmin: error while loading shared libraries: libmysqlclient.so.15: cannot open shared object file: No such file or directory What bugs me, is that I do have this shared library : locate libmysqlclient /usr/local/mysql/lib/mysql/libmysqlclient.so.15.0.0 /usr/local/mysql/lib/mysql/libmysqlclient.so.15 /usr/local/mysql/lib/mysql/libmysqlclient.so /usr/local/mysql/lib/mysql/libmysqlclient.la /usr/local/mysql/lib/mysql/libmysqlclient.a I am thinking that something's wrong with my configure, I'm stomped. Any help greatly appreciated. Navigate:Previous Message•Next Message Options:Reply•Quote Subject Written By Posted error while loading shared libraries: libmysqlclient.so Yohann Dumais 11/23/2005 10:03AM Re: error while loading shared libraries: libmysqlclient.so Yohann Dumais 11/23/2005 12:37PM Re: error while loading shared libraries: libmysqlclient.so Faisal M 09/14/2007 11:23PM Re: error while loading shared libraries: libmysqlclient.so ryan bui 12/08/2007 06:49PM Re: error while loading shared libraries: libmysqlclient.

shared libraries: libmysqlclient.so.15: cannot open shared object file: No such file or directory 解决方法:1.下载 libmysqlclient.so.15 或是拷贝 libmysqlclient.so.15 到 /usr/lib (32位) 、/usr/lib64 (64位) 以64位centos为例: 下载地址 http://files.directadmin.com/services/es_5.0_64/libmysqlclient.so.15 #cd /usr/lib64#wget http://files.directadmin.com/services/es_5.0_64/libmysqlclient.so.15 2.给libmysqlclient.so.15加x权限#chmod 755 /usr/lib64/libmysqlclient.so.15 3.重新载入ldconfig#ldconfig posted @ 2014-01-07 16:10 emanlee 阅读(...) 评论(...) 编辑 收藏 刷新评论刷新页面返回顶部 Copyright ©2016 emanlee

 

Related content

centos error x11 support required for gui compilation

Centos Error X Support Required For Gui Compilation p PMhey out there i'm an ab absolute newbie with linux and ubuntu so i apologise for my lack of knowlege been trying to install Mplayer didnt relatedl work through synaptic so was trying through terminal using instructions from http www oldskoolphreak com tfiles hack ubuntu txt problem is when i get to configure --enable-gui i get Error X support required for GUI compilation can anyone help me fix this many thanks Peter January th AMyou probably have to instal the x window dev files sudo apt-get install x-window-system-dev or install the

centos error while loading shared libraries libc.so.6

Centos Error While Loading Shared Libraries Libc so p during installation Issues related to software problems Post Reply Print view Search relatedl Advanced search posts bull Page of pennstate Posts Joined Libc so error during installation Quote Postby pennstate raquo I am a first-time user of centOS and have not used Linux for a few years so I hope someone may be able to help me troubleshoot the following error Please enter installation directory opt netcool rm error while loading shared libraries libc so cannot open shared object file No such file or directorycat error while loading shared libraries libc

centos error 11 unrecognized device string

Centos Error Unrecognized Device String p Member Registered - - Posts GRUB Error Unrecognized relatedl Device String This just popped out of nowhere i tried reinstalling GRUB with a livecd but that didn't work This is on a fresh install from last night This morning just rebooted and BAM The Windows option still works though rolleyes Heres my menu lst Arch Linuxtitle Arch Linuxroot hd kernel boot vmlinuz root dev disk by-uuid a d -bf b- dfe-a d- c b c roinitrd boot kernel img Arch Linuxtitle Arch Linux Fallbackroot hd kernel boot vmlinuz root dev disk by-uuid a d

centos error problem with internal logger update logfile = /var/log/clamav/freshclam.log

Centos Error Problem With Internal Logger Update Logfile var log clamav freshclam log p Get Kubuntu Get Xubuntu Get Lubuntu Get UbuntuStudio Get Mythbuntu Get Edubuntu Get Ubuntu-GNOME Get UbuntuKylin Ubuntu Code of Conduct Ubuntu Wiki Community Wiki Other Support relatedl Launchpad Answers Ubuntu IRC Support AskUbuntu Official Documentation User Documentation Social Media Facebook Twitter Useful Links Distrowatch Bugs Ubuntu PPAs Ubuntu Web Upd Ubuntu OMG Ubuntu Ubuntu Insights Planet Ubuntu Activity Page Please read before SSO login Advanced Search Forum The Ubuntu Forum Community Ubuntu Official Flavours Support General Help SOLVED freshclam not updating due to permission issue Having

centos error inserting coretemp no such device

Centos Error Inserting Coretemp No Such Device p LM Sensors on Cent OS How To Get And Install The Coretemp Module purehate March Insights Comments relatedl Tweet If you have been following my progress over the last few days you will know that after a complete rebuild of the tools server and a change of the operating system I have been working hard to get all our temp monitoring back online The server previously ran Gentoo Linux which although is still my favorite distro is just not suited for a production server environment So we decided to go with Cent

centos error missing dependency /usr/bin/rebuild-security-providers

Centos Error Missing Dependency usr bin rebuild-security-providers p errors General support questions including new installations Post Reply Print view Search Advanced search posts Next oldwierdal Posts relatedl Joined Location Yuma Arizona resolving update errors Quote Postby oldwierdal raquo Sometimes we humans seem to have great difficulty believing what the machines we invented are telling us For example our dandy yum update program in CentOS told me there were conflicts with OpenOffice and with java- -gcj-compat I recall early on in my adventures with Linux and Fedora Core and later with CentOS suffering from brain-freeze when I would get error messages

centos error cannot create sourcedir /usr/src/redhat/sources

Centos Error Cannot Create Sourcedir usr src redhat sources table id toc tbody tr td div id toctitle Contents div ul li a href Cpio Md Sum Mismatch a li ul td tr tbody table p HCL Search Reviews Search ISOs Go to Page LinuxQuestions org Forums Linux Forums Linux - Distributions Red Hat rpm error cannot create sourcedir User Name relatedl Remember Me Password Red Hat This forum is for the discussion p h id Cpio Md Sum Mismatch p of Red Hat Linux Notices Welcome to LinuxQuestions org a friendly and active Linux Community You are rpm-build currently

centos error while loading shared libraries libssl.so.4

Centos Error While Loading Shared Libraries Libssl so p it isn't installed -- Issues related to software problems Post Reply Print view Search Advanced relatedl search posts bull Page of jbruyet Posts Joined SSL is installed but it isn't installed -- Quote Postby jbruyet raquo Hey all I'm working on getting my Nagios server working but I've hit a wall -- there is isn't an ssl install Here's what I'm seeing I couldn't get NRPE to work so I ran it locally and this error popped up check nrpe error while loading shared libraries libssl so cannot open shared object

centos error zm requires gnutls/openssl.h

Centos Error Zm Requires Gnutls openssl h p available for Linux especially if you need to relatedl capture images and or video from multiple cameras both remote and local It offers a huge set of features that just aren't available in other pieces of free software Getting it to compile on Centos bit however is a bit of a chore There is some information in the ZoneMinder wiki on compiling and installing ZoneMinder on Centos but these instructions are incomplete and will not work After helping a coworker get it up and running and finding little information out there for

centos error while loading shared libraries libuno_sal so 3

Centos Error While Loading Shared Libraries Libuno sal So p not found Issues related to software problems Post Reply Print view Search Advanced search posts bull Page relatedl of Jhingman Posts Joined libXm so libc so not found Quote Postby Jhingman raquo the issue I'm having is the libraries in the subject libXm so and libc so aren't found by the system when trying to run a particular program We have it set up so that certain apps are installed to a server and when a user wants to use a particular app they call a shell script which in

centos error downloading treeinfo file

Centos Error Downloading Treeinfo File p Version Target VersionFixed in VersionSummary Install fails when Updates repository is added to install DescriptionWhen running an install with an updates repository included the install fails usually during the MAKEDEV package installation relatedl The install UI reports A fatal error has occurred when reading the installation media Installation cannot continue Exit Installer Steps To ReproduceAdditional InformationThis occurs when doing an NFS install of Centos where the Updates repository is either on NFS or HTTP If I remove the updates repository from the install it works as expected If I add in the EPEL repository

centos error problem with internal logger updatelogfile = /var/log/clamav/freshclam.log

Centos Error Problem With Internal Logger Updatelogfile var log clamav freshclam log p raquo Print Pages Author Topic SOLVED CLAMAV update problem Read times Members and relatedl Guests are viewing this topic brinsleyparagao Newbie Posts SOLVED CLAMAV update problem on August AM I make a new server and install clamav and extras but in restart service i see this error log Stopping Clam AntiVirus Daemon OK Starting Clam AntiVirus Daemon LibClamAV Warning LibClamAV Warning The virus database is older than days LibClamAV Warning Please update it as soon as possible LibClamAV Warning OK So i try make a update on

centos error 25 disk read error

Centos Error Disk Read Error p Search HCL Search Reviews Search ISOs Go to Page LinuxQuestions org Forums Linux Forums Linux - Newbie After installation I get Error Disk read error relatedl Press any key to continue User Name Remember Me Password Linux - Newbie This Linux forum is for members that are new to Linux Just starting out and have a question If it is not in the man pages or the how-to's this is the place Notices Welcome to LinuxQuestions org a friendly and active Linux Community You are currently viewing LQ as a guest By joining our

centos error mdadm exited with status 127

Centos Error Mdadm Exited With Status p installation exits with mdadm error then grub freezes at loading stage General support questions Post Reply Print relatedl view Search Advanced search posts Next vvvvv Posts Joined SOLVED CentOS installation exits with mdadm error then grub freezes at loading stage Quote Postby vvvvv raquo Hi I made a clean reinstall from CentOS to CentOS I'm installing from external usb dvd drive My current partitioning sda - sda - GB md RAID - sda - GB md RAID sdb - sdb - GB md RAID - sdb - GB md RAID RAID devices -

centos error while loading shared libraries libgio-2.0.so.0

Centos Error While Loading Shared Libraries Libgio- so p General support questions including new installations Post Reply Print view Search Advanced search posts Next relatedl vinturi Posts Joined libglib- so problem Quote Postby vinturi raquo After I restart my PC following message is being displayed and GUI is not coming up How to get rid of this problem usr bin rhgb-client error while loading shared libraries libglib- so Cannot open shared object file No such file or directory --Thanks in advance Top pschaff Retired Moderator Posts Joined Location Tidewater Virginia North America Contact Contact pschaff Website Re libglib- so problem

centos error while loading shared libraries libperl.so

Centos Error While Loading Shared Libraries Libperl so p libperl so General support relatedl questions including new installations Post Reply Print view Search Advanced search posts bull Page of dlindh Posts Joined Spamassassin error libperl so Quote Postby dlindh raquo Hi Just noticed that my spamassassin stopped scanning mail for me root msca ld so conf d service spamassassin startStarting spamd usr bin perl error while loading shared libraries libperl so cannot open shared object file No such file or directory FAILED Just running perl looks fine root msca ld so conf d perl -vThis is perl v built for

centos error while loading shared libraries libssl.so.0.9.8

Centos Error While Loading Shared Libraries Libssl so p it isn't installed -- Issues related to relatedl software problems Post Reply Print view Search Advanced search posts bull Page of jbruyet Posts Joined SSL is installed but it isn't installed -- Quote Postby jbruyet raquo Hey all I'm working on getting my Nagios server working but I've hit a wall -- there is isn't an ssl install Here's what I'm seeing I couldn't get NRPE to work so I ran it locally and this error popped up check nrpe error while loading shared libraries libssl so cannot open shared object