similar to: astweb cdr's mysql.sock problem

Displaying 20 results from an estimated 200 matches similar to: "astweb cdr's mysql.sock problem"

2005 Feb 07
2
Pro biz Asterisk
Dear All, . After installing, testing and like many other I found that Asterisk is reliable and a great Open source telephony solutions for a professional use. I would like to create a business with *, offering it as a IP PBX solution to customer, as a server, whatever with some Digium HW and SIP phone, .. etc. Asking for something that might have been asked. What are the implications for
2009 Jan 06
1
Problems getting 1.6 to run with user asterisk and group asterisk
I've built SVN-trunk-r167180 and try to start it with: asterisk -f -C /etc/asterisk/asterisk.conf which results in: Unable to open pid file '/var/run/asterisk.pid': Permission denied Unable to bind socket to /var/run/asterisk.ctl: Permission denied However, /etc/asterisk/asterisk.conf has: astrundir => /var/run/asterisk runuser = asterisk rungroup = asterisk The directory,
2004 Jan 21
0
Asterisk Management Interface... Do you want one?
Hi All, I realize there has been much talk about Asterisk web interfaces in the past, and there are even a few created such as vmail.cgi and Astweb. However, coming from the perspective of trying to convince upper management of a large multinational company to convert its entire phone system over to Asterisk, the question keeps coming up... Is it easy to manage, configure, and monitor in
2005 Jan 11
0
RE: Asterisk-Users Digest, Vol 6, Issue 142
Does any one knows of an Windows based SIP video phone???... Thanks... -----Original Message----- From: asterisk-users-bounces@lists.digium.com [mailto:asterisk-users-bounces@lists.digium.com] On Behalf Of asterisk-users-request@lists.digium.com Sent: Tuesday, January 11, 2005 9:27 AM To: asterisk-users@lists.digium.com Subject: Asterisk-Users Digest, Vol 6, Issue 142 Send Asterisk-Users mailing
2005 Jan 10
2
Vmail.cgi - "Hrm, can't seem to open /var/spool/asterisk/voicemail ....
Hello everybody, I was trying to install a web interface to my Voice Mail, Vmail.cgi I can log on it, list messages, but no play with the following error msg; "Hrm, can't seem to open /var/spool/asterisk/voicemail/default/234/INBOX/msg0001.WAV" Remark: playing the message msg0001.WAV directly OK Any smart guy up there could help ? Thanks, --------------------------------- Do
2006 Aug 12
1
Getting mysql.sock error
Sort of a noob question: I keep getting the following error: No such file or directory - /tmp/mysql.sock RAILS_ROOT: ./script/../config/../ from the downloaded code for Agile''s depot app. Could someone point me in the right direction? J
2012 Nov 06
1
Failed to bind socket to '/var/run/libvirt/libvirt-sock': Permission denied
Hi all, When I start self-built libvirtd by "libvirtd -d -l -f libvirtd.conf", it shows that error : virNetSocketNewListenUNIX:346 : Failed to bind socket to '/var/run/libvirt/libvirt-sock': Permission denied I have removed some requested comments in libvirtd.conf. The key settings are shown as below: listen_tcp = 1 tcp_port = "16509"
2011 Mar 14
0
Can't connect to local MySQL server through socket '/tmp/mysql.sock'
I went through the hivelogic tut http://hivelogic.com/articles/compiling-mysql-on-snow-leopard And all went well until mysql -uroot when I get the Can''t connect to local MySQL server through socket ''/tmp/mysql.sock'' error. In Console.app I see the mysql is start and stopping with tmp/mysql.sock Permission denied. I changed the permissions according to Hivelogic, so
2014 Mar 04
1
libvirt-sock No such file or directory
Hi, When I run the following command *~/kvm/virt-manager $ virsh -c qemu:///system list* i get the following errors. Please help me out with this issue. error: failed to connect to the hypervisor error: Failed to connect socket to '/usr/local/var/run/libvirt/libvirt-sock': No such file or directory' Thank you Ram PhD student Dept of EECS UMich
2014 Jul 30
0
missing libvirt-sock and libvirt-bin after compile libvirt 1.2.6
Good morning there, I compiled and installed libvirt latest version 1.2.6, previously I have apt-get install libvirt-bin, which should be virsh --version: 0.9.8. after apt-get purge libvirt-bin, I compile the libvirt 1.2.6 and installed it, when configure, I did: ./configure --prefix=/usr --localstatedir=/var --sysconfdir=/etc --with-esx=yes I have compiled qemu and installed too, and make a
2015 Mar 01
1
Failed to connect socket to '/usr/local/libvirt/var/run/libvirt/libvirt-sock
With respect to your thread started Tue, 30 Oct 2012, please guide me if you were able to solve the error. link to the thread. https://www.redhat.com/archives/libvirt-users/2012-October/msg00139.html Thanks!
2007 Jan 16
0
patch to enable ssh use sock fd 3,4
Hi all I was thinking maybe other ppl need this small hack :) So ssh supports ProxyCommand which use a separate proccess for in/out chans to remote sshd. But sometimes this extra proc is not desired but ssh should use a specific socket (in below patch is fd 3 and 4) for same thing.. For example a reverse ssh connection where sshd connects back to ssh(which is executed by a a script that binds to
2005 Aug 07
1
mysql sock location
Hi; In case your * and mysql are running on the same machine, and you get error "Failed to connect to mysql database server ..." when using Asterisk with Mysql database, check the location of mysql.sock not /tmp/mysql.sock, but /var/lib/mysql/mysql.sock Regards Kun
2006 May 08
1
[nativecode=Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (111)]
Hello, I have an error when installing AMP, when I do ./install_amp --debug, it show me : Connecting to database..FAILED [DEBUG] [nativecode=Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (111)] ** mysql://user:pass@localhost/asteriskamp Try running ./install_amp --username=user --password=pass (using your own user and pass) [FATAL] Cannot connect
2018 Jun 21
1
[PATCH net] vhost_net: validate sock before trying to put its fd
Sock will be NULL if we pass -1 to vhost_net_set_backend(), but when we meet errors during ubuf allocation, the code does not check for NULL before calling sockfd_put(), this will lead NULL dereferencing. Fixing by checking sock pointer before. Fixes: bab632d69ee4 ("vhost: vhost TX zero-copy support") Reported-by: Dan Carpenter <dan.carpenter at oracle.com> Signed-off-by: Jason
2018 Sep 06
0
[PATCH net-next 01/11] net: sock: introduce SOCK_XDP
This patch introduces a new sock flag - SOCK_XDP. This will be used for notifying the upper layer that XDP program is attached on the lower socket, and requires for extra headroom. TUN will be the first user. Signed-off-by: Jason Wang <jasowang at redhat.com> --- drivers/net/tun.c | 19 +++++++++++++++++++ include/net/sock.h | 1 + 2 files changed, 20 insertions(+) diff --git
2019 Nov 08
1
[PATCH] vsock/virtio: fix sock refcnt holding during the shutdown
The "42f5cda5eaf4" commit rightly set SOCK_DONE on peer shutdown, but there is an issue if we receive the SHUTDOWN(RDWR) while the virtio_transport_close_timeout() is scheduled. In this case, when the timeout fires, the SOCK_DONE is already set and the virtio_transport_close_timeout() will not call virtio_transport_reset() and virtio_transport_do_close(). This causes that both sockets
2019 Jan 18
0
*-sock created as part of normal daemon startup?
As noted in another thread, I've not had success with homebrew/Mac OSX's libvirt install. On Ubuntu and CentOS virtual machines, installing "libvirt-daemon" and friends, I end up with various "-sock" files in /var/run/libvirt. This seems sensible. After installing on MacOS X with homebrew ls /usr/local/var/run/libvirt hostdevmgr lockd qemu storage so perhaps it
2015 May 21
0
Centos 6.6 Can't connect to local MySQL server through socket /var/lib/MySQL/MySQL.sock (error 2002)‏
------------ Original Message ------------ > Date: Thursday, May 21, 2015 09:43:24 PM +0100 > From: Graham Wilman <gwillman at hotmail.co.uk> > > Hi > > Total newby to centos I am currently assisting a community radio > station set up in the Uk we are using a server based system for > our playout software, unfortunately at the moment one of our > client servers
2015 May 21
0
Centos 6.6 Can't connect to local MySQL server through socket /var/lib/MySQL/MySQL.sock (error 2002)‏
Graham Wilman wrote: > Hi > > Total newby to centos I am currently assisting a community radio station > set up in the Uk we are using a server based system for our playout > software, unfortunately at the moment one of our client servers is > experience the above error I came across the error on our main server a > few weeks ago and found the solution just by reinstalling