similar to: Installing on Mojave, with Homebrew and mysql

Displaying 20 results from an estimated 1000 matches similar to: "Installing on Mojave, with Homebrew and mysql"

2001 Sep 26
2
installing RMySQL
Hi, I have struggled to re-implement the RMySQL package after upgrading from SuSe 6.3 to 7.2 and from R 1.2.1 to R 1.3.1, to no avail It compiles happily but when loading the package I get the following error > library(RMySQL) Error in dyn.load(x, as.logical(local), as.logical(now)) : unable to load shared library "/home/jniesch/R_HOME/lib/R/library/RMySQL/libs/RMySQL.so":
2018 Nov 24
1
Mac Mojave Server
Is there any information on using dovecot on Mojave? I have been using Mac OS Server for a few years and looking for the preferred way to move to Mojave since dovecot and postfix admin support has been dropped by Apple.
2003 Oct 08
0
Compiling Samba3.0.0 on Solaris2.6
Hi, I've been trying to compile up Samba with active-directory support. I've got Solaris2.6, gcc, openldap-2.1.22 and MIT kerberos5 1.3.1 ldap and kerberos are all compiled up happily. Running ./configure --with-ads on Samba configures things OK, and the result is: Using libraries: LIBS = -lsec -lgen -lresolv -lsocket -lnsl KRB5_LIBS = -L/usr/local/lib -lgssapi_krb5 -lkrb5
2018 Jul 03
0
Found the problem. Solved
sudo ln -s /usr/local/Cellar/mysql/5.6.25/lib/libmysqlclient.18.dylib /usr/local/lib/libmysqlclient.18.dylib shown by error Jul 3 09:46:08 zeus dovecot[2223]: imap-login: Disconnected (disconnected before auth was ready, waited 24 secs): user=<>, rip=127.0.0.1, lip=127.0.0.1, TLS: Disconnected, session=<ImCRVxRw5AB/AAAB> Jul 3 09:46:14 zeus dovecot[2223]: auth: Error: dyld: Library
2018 Feb 17
2
Problem installing libxml2 under Homebrew
i am trying to install xml2 from CRAN, and it is throwing an error that it cannot find the libxml2 library configuration. The thing is that pkg-config seems to be set up correctly: $ echo $PKG_CONFIG_PATH :/usr/local/opt/libxml2/lib/pkgconfig:/usr/local/opt/libxml2/lib/pkgconfig $ pkg-config --cflags --libs libxml-2.0 -I/usr/local/Cellar/libxml2/2.9.7/include/libxml2
2011 Sep 08
1
Centos6: missing link for mysqlclient
Hallo, I am installing snort from source. Besides of a lot of additional libraries, I needed a link ln -vfs /usr/lib64/mysql/libmysqlclient.so.16 /usr/lib64/libmysqlclient.so Are there reasons not to install with yum install mysql-devel ? I have found many discussions to add this link in context of installing from source, nor only for snort. Best regards Helmut -------------- next
2006 Sep 28
0
[BUG(let)] Dovecot does not recognize threaded/reentrant mysql libs
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 hi, i build mysql (currently v5.0.22) on OSX 10.4.7 w/ threading enabled. i.e., i build the reentrant libs: libmysqlclient_r.dylib rather than the 'usual': libmysqlclient.dylib currently, to make Dovecot 'play nice' and recognize the reentrant libs, I: perl -pi -e
2005 Oct 25
2
SOLARIS 9 INSTALL PROBLEMS
I downloaded SAMBA VERSION: 3.0.20b to my sun sol 9 server and below is the error I got after running ./configure. root@cpkfs1# ./configure SAMBA VERSION: 3.0.20b checking for -fPIE... checking for gcc... no checking for cc... cc checking for C compiler default output file name... configure: error: C compiler cannot create executables See `config.log' for more details. This is the details
2007 Nov 22
1
Installation problem of SAMBA 3.0.23a on HP-UX 11.23
To whom it concern, There was no problem at all with the installation of the Depot. Before running the ./configure command I'm setting the following variables like this (as it's mentionned in the README file) : export CFLAGS="-O -DWITH_SYSLOG -DGUEST_ACCOUNT=\\\"smbnull\\\"" export CPPFLAGS="-I/opt/iexpress/openldap/include" export
2007 Nov 25
0
_net_auth2: creds_server_check failed Error
Hi All I am trying to add my NAS server to the domain but i getthing this error. "_net_auth2: creds_server_check failed. Rejecting auth request from client NAS1 machine account NAS1$" It used to be working fine till a recent reboot of the NAS machine. I am using SAMBA + LDAP and i have also tried to removing and adding the machine still no luck. openldap-2.3.27-5 nss_ldap-253-3
2005 Aug 05
3
Compile trouble with mysql
Hello! I tried to compile the latest 1.0-test (79) with mysql support, but there is the following error: ... /usr/local/mysql/lib/libmysqlclient.a(sha1.o)(.text+0x5c): In function `sha1_result': : multiple definition of `sha1_result' ../lib/liblib.a(sha1.o)(.text+0x830):/usr/local/src/dovecot/dovecot-1.0-test79/src/lib/sha1.c:233: first defined here ... So 'sha1_result' is
2010 Apr 18
0
Something about Homebrew install ruby
I installed the ruby1.8.7 by macports. Yesterday, I updated the ruby into 1.9.1 by homebrew. But when I show the version (ruby -v),It still is 1.8.7. So I use brew link ruby,and replace the /opt/local/bin/ruby by /usr/local/Cellar/ ruby/1.9.1-p378/bin/ruby. It works. But command "ri" is not work yet. Is there any way to use the ruby installed by homebrew? ,sorry for my english
2012 Oct 11
3
dovecot cores
Hi dovecot-community, i have set up a new dovecot server - everything is self-compiled and with newest versions. dovecot daemon dies every night: Bugreport Mail - dovecot cores with sig11 my dovecot daemon cores every night - no message in log file. Please help. It runs in an OpenVZ container - therefore reiserfs is reported as filesystem. root at glen ~]# cat /etc/dovecot/dovecot.conf #
2019 Sep 10
2
Calling a LAPACK subroutine from R
Hello R-helpers! I am trying to call a LAPACK subroutine directly from my R code using .Fortran(), but R cannot find the symbol name. How can I register/load the appropriate library? > ### AR(1) Precision matrix > n <- 4L > phi <- 0.64 > AB <- matrix(0, 2, n) > AB[1, ] <- c(1, rep(1 + phi^2, n-2), 1) > AB[2, -n] <- -phi > round(AB, 3) [,1] [,2] [,3]
2019 Sep 10
2
Calling a LAPACK subroutine from R
Hello R-helpers! I am trying to call a LAPACK subroutine directly from my R code using .Fortran(), but R cannot find the symbol name. How can I register/load the appropriate library? > ### AR(1) Precision matrix > n <- 4L > phi <- 0.64 > AB <- matrix(0, 2, n) > AB[1, ] <- c(1, rep(1 + phi^2, n-2), 1) > AB[2, -n] <- -phi > round(AB, 3) [,1] [,2] [,3]
2018 Oct 11
0
macOS Mojave: setgroups(501) failed: Too many extra groups
On 11.10.2018 09:28, Heiko W. Rupp wrote: > Hello, > > I have recently upgraded to macOS 10.14 (Mojave) and am running into > an issue where one use can no longer log into dovecot via imap. Log shows > > Oct 11 08:10:27 imap(hwr)<12659><YpC/0+133+EAAAAAAAAAAAAAAAAAAAAB>: > Fatal: setgroups(501) failed: Too many extra groups > > and indeed, the user is in 17
2018 Oct 11
1
macOS Mojave: setgroups(501) failed: Too many extra groups
On Thu, Oct 11, 2018 at 10:55:39AM +0300, Aki Tuomi wrote: > Maybe. Have to see when we can implement it though. It could probably > leverage the min/max_gid setting. Actually that was a great hint. Setting last_valid_gid = 100 in the config and restarting helped. Having a filter-list instead of fixed upper/lower bounds would be more flexible. I guess though that in reality most
2007 Jan 20
3
libmysqlclient not found, while compiling PowerDNS
Hi Everyone, I am trying to build the PowerDNS rpm from the source rpms powerdns-2.9.20-3.MIND.src.rpm, it requires opendbx-devel which I am trying to build from the instructions at (http://www.linuxnetworks.de/opendbx/download/index.html) I have subscribe to centosplus for packages like mysql5 and php5. I have the following MySQL packages installed [root at charlie ~]# rpm -qa | grep mysql
2018 Oct 11
3
macOS Mojave: setgroups(501) failed: Too many extra groups
Hello, I have recently upgraded to macOS 10.14 (Mojave) and am running into an issue where one use can no longer log into dovecot via imap. Log shows Oct 11 08:10:27 imap(hwr)<12659><YpC/0+133+EAAAAAAAAAAAAAAAAAAAAB>: Fatal: setgroups(501) failed: Too many extra groups and indeed, the user is in 17 groups, which is more than NGROUPS_MAX (16). Another user with << 16 groups
2019 Jul 22
0
Re: Missing hivex.h error when compiling on macOS 10.14 (Mojave)
Hi Tim, On Sunday, 21 July 2019 18:31:58 CEST Tim Perfitt wrote: > I am attempting to compile Hivex (v1.3.18) and am getting a "handle.c:47:10: fatal error: 'hivex.h' file not found" error. I see that hivex.h is not included in the source and I suspect it is created during the configure phase. Full build log below. Any ideas of how this file is created and why it wasn't