unix-socket Questions
3
I'm currently interesting in UNIX system.
For IPC(Interprocess Communication), UNIX uses a file named socket. I understand it works like server-client model, write-end and read-end uses socket file...
Clyde asked 20/3, 2022 at 6:38
1
I'm trying to find a way to use the developer tools in one of the Android browsers, e.g. Chrome and Firefox. They appear to not be shipped with the builds, to avoid cluttering them with functionali...
Isoprene asked 4/3, 2018 at 13:50
2
I am doing a study about Unix domain socket. Especially about how does it work. I googled many times with many keywords but the results are all about API, system calls, how to use it, examples ... ...
Condorcet asked 17/2, 2013 at 8:50
6
Solved
I was developing my application originally in Laravel 4.2 but have since decided to move it to the 5.0 version so that it covers a lot more changes and strengths that 5.0 has over 4.2.
I am trying...
Firebrand asked 27/3, 2015 at 16:24
3
Solved
I'm experimenting with Unix sockets using Python. I want to create a server that creates and binds to a socket, awaits for commands and sends a response.
The client would connect to the socket, se...
Unnamed asked 16/2, 2017 at 1:23
2
First, yes this is related to this stack overflow question, but I'm having a slightly different set of circumstances and my post there is not getting an answer.
So, on my Dell desktop workstation,...
Brandabrandais asked 2/8, 2012 at 15:44
4
Solved
Is there a way to use Unix Domain sockets with Java NIO?
I want to use NIO so that I can use Selectors on it in a single thread.
I had a look at junixsocket but it only seems to support normal Soc...
Vegetal asked 8/1, 2012 at 23:18
6
Solved
I have a server application that creates a UNIX Domain Socket in a specific path with a name and bind()s to it.
I need to delete the socket only when I close/stop the application intentionally, f...
Ukrainian asked 19/1, 2016 at 9:36
1
I need to forward all traffic from specified port to a Unix Domain Socket in Apache:
In sites-enabled/000-default.conf I have defined a VirtualHost:
<VirtualHost *:8091>
ProxyRequests Off
...
Sarsaparilla asked 9/7, 2018 at 10:26
3
Solved
I'm writing a Unix domain socket server for Linux.
A peculiarity of Unix domain sockets I quickly found out is that, while creating a listening Unix socket creates the matching filesystem entry, c...
Scalawag asked 13/9, 2011 at 17:25
3
Solved
Reading a Unix Domain Socket file using Python is similar to an ordinary TCP socket:
>>> import socket
>>> import sys
>>>
>>> server_address = '/tmp/tbsocket1' ...
Hendeca asked 28/11, 2014 at 20:46
8
Solved
I realize that since UNIX sockets are platform-specific, there has to be some non-Java code involved. Specifically, we're interested in using JDBC to connect to a MySQL instance which only ha...
Josey asked 4/10, 2008 at 16:18
2
My GRPC service is only accessible to applications on the local machine.
I assume it would perform faster if the clients would connect over Unix domain socket, rather then localhost:port
I'm tyri...
Afebrile asked 14/1, 2019 at 10:38
3
I have a uwsgi server running for unix domain socket
[uwsgi]
...
socket = /var/run/someuwsgi.sock
socket = localhost:9987
...
The mod_proxy_uwsgi is installed
In apache config has that line:
P...
Roma asked 9/1, 2014 at 12:3
2
Solved
I have commad-line tool, which sends broadcast and wait result.
Server code (error handling omitted):
int makeAddr(const char* name, struct sockaddr_un* pAddr, socklen_t* pSockLen)
{
int nameLen...
Lysine asked 26/6, 2015 at 8:26
4
Solved
I see these threads UNIX socket implementation for Java? and http://forums.sun.com/thread.jspa?threadID=713266.
The second link says that Java already supports UNIX Domain Socket. If that's true ...
Inkle asked 4/11, 2010 at 17:31
2
I have a server application which received requests and forwards them on a Unix Domain Socket. This works perfectly under reasonable usage but when I am doing some load tests with a few thousand re...
Gorget asked 15/4, 2012 at 16:17
3
Solved
I am trying to create a Docker container with a custom D-Bus bus running inside.
I configured my Dockerfile as follow:
FROM ubuntu:16.04
COPY myCustomDbus.conf /etc/dbus-1/
RUN apt-get update &am...
Mccallum asked 20/3, 2017 at 7:46
5
I am new to socket programming and I am trying to understand the operation of htons(). I've read a few tutorials on the Internet like this and this one for instance. But I couldn't understand what ...
Wherewith asked 6/10, 2013 at 10:21
4
Solved
On Ubuntu 16.04 LTS whenever trying using docker login command the following warring message will be show :
docker login
Warning: failed to get default registry endpoint from daemon (Got permissi...
Cloy asked 13/9, 2017 at 16:22
1
Solved
In .NET Core I can send raw HTTP over a unix-domain socket, but I would like to use the HTTP handling classes in the library instead of hacking together my own HTTP handling.
Here is my current wo...
Gaona asked 29/11, 2018 at 20:35
5
Solved
I've a root User on the MariaDB on Ubuntu 16.04.
As default the root user is authenticated by the unix_socket authentication plugin.
I can switch the authentication method to password method by ...
Kessler asked 25/1, 2017 at 7:44
0
Using OpenEthereum, which is the json rpc call allowing to do it?
I found the parity_pubsub module but I ve no idea of the parameter for getting not yet confirmed transactions.
I also found https:/...
Heap asked 1/12, 2020 at 17:30
4
Any of you with experience with PostgREST and Cloud SQL ?
I have my SQL instance ready with open access (0.0.0.0/0) and I can access it with local PostGREST using the Cloud proxy app.
Now I wan...
Ladd asked 5/3, 2020 at 11:40
1
Solved
While it is relatively easy to connect to an java.net.InetSocketAddress using TCP or UDP in akka, there seems to be no equivalent for SocketAddress and Unix-sockets in the API.
For my current proj...
Swanner asked 6/11, 2014 at 8:12
1 Next >
© 2022 - 2025 — McMap. All rights reserved.