Always keep socat aliveWhat's the difference between socat and netcat?haproxy + stunnel + keep-alive?TCP...

Calculate Levenshtein distance between two strings in Python

Need help identifying/translating a plaque in Tangier, Morocco

How to make payment on the internet without leaving a money trail?

Is there a way to make member function NOT callable from constructor?

"listening to me about as much as you're listening to this pole here"

Is domain driven design an anti-SQL pattern?

Manga about a female worker who got dragged into another world together with this high school girl and she was just told she's not needed anymore

When blogging recipes, how can I support both readers who want the narrative/journey and ones who want the printer-friendly recipe?

Is there a familial term for apples and pears?

Doomsday-clock for my fantasy planet

Add an angle to a sphere

Pristine Bit Checking

Symmetry in quantum mechanics

What is GPS' 19 year rollover and does it present a cybersecurity issue?

aging parents with no investments

OA final episode explanation

Email Account under attack (really) - anything I can do?

Why do we use polarized capacitors?

Why doesn't a const reference extend the life of a temporary object passed via a function?

How would photo IDs work for shapeshifters?

Is Social Media Science Fiction?

Can I find out the caloric content of bread by dehydrating it?

How to create a consistent feel for character names in a fantasy setting?

How did the USSR manage to innovate in an environment characterized by government censorship and high bureaucracy?



Always keep socat alive


What's the difference between socat and netcat?haproxy + stunnel + keep-alive?TCP Connection Keep-Alive directionsocat: Show incoming connectionsHow do i use socat as a proxy server?Using socat to exec php cliSimulate tcp disconnect using socatsocat Resource temporarily unavailablesocat CREATE returning Bad file descriptormdadm marks hdd faulty even though it's in pristine health?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}







3















I have a socat running nicely, executing my command when a connection comes in with the arguments provided. However, the issue I am having is that the socket is at EOF and the next time a connection comes in, the process takes 3 seconds to spin back up. The process will stay up forever, so it's socat thinking there is an EOF, at least that is my understanding.



My command is: socat -v -s -d -d tcp-listen:2600,reuseaddr,fork exec:"/usr/bin/cec-client $CEC_CLIENT_ARGS"



Relevant log lines:



2014/12/31 22:41:04 socat[4746] N socket 1 (fd 4) is at EOF
2014/12/31 22:41:05 socat[4746] N exiting with status 0


I have tried ignoreeof on both ends, to no effect. I have also tried setting timeouts, both -t and -T










share|improve this question














bumped to the homepage by Community 34 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.






















    3















    I have a socat running nicely, executing my command when a connection comes in with the arguments provided. However, the issue I am having is that the socket is at EOF and the next time a connection comes in, the process takes 3 seconds to spin back up. The process will stay up forever, so it's socat thinking there is an EOF, at least that is my understanding.



    My command is: socat -v -s -d -d tcp-listen:2600,reuseaddr,fork exec:"/usr/bin/cec-client $CEC_CLIENT_ARGS"



    Relevant log lines:



    2014/12/31 22:41:04 socat[4746] N socket 1 (fd 4) is at EOF
    2014/12/31 22:41:05 socat[4746] N exiting with status 0


    I have tried ignoreeof on both ends, to no effect. I have also tried setting timeouts, both -t and -T










    share|improve this question














    bumped to the homepage by Community 34 mins ago


    This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.


















      3












      3








      3








      I have a socat running nicely, executing my command when a connection comes in with the arguments provided. However, the issue I am having is that the socket is at EOF and the next time a connection comes in, the process takes 3 seconds to spin back up. The process will stay up forever, so it's socat thinking there is an EOF, at least that is my understanding.



      My command is: socat -v -s -d -d tcp-listen:2600,reuseaddr,fork exec:"/usr/bin/cec-client $CEC_CLIENT_ARGS"



      Relevant log lines:



      2014/12/31 22:41:04 socat[4746] N socket 1 (fd 4) is at EOF
      2014/12/31 22:41:05 socat[4746] N exiting with status 0


      I have tried ignoreeof on both ends, to no effect. I have also tried setting timeouts, both -t and -T










      share|improve this question














      I have a socat running nicely, executing my command when a connection comes in with the arguments provided. However, the issue I am having is that the socket is at EOF and the next time a connection comes in, the process takes 3 seconds to spin back up. The process will stay up forever, so it's socat thinking there is an EOF, at least that is my understanding.



      My command is: socat -v -s -d -d tcp-listen:2600,reuseaddr,fork exec:"/usr/bin/cec-client $CEC_CLIENT_ARGS"



      Relevant log lines:



      2014/12/31 22:41:04 socat[4746] N socket 1 (fd 4) is at EOF
      2014/12/31 22:41:05 socat[4746] N exiting with status 0


      I have tried ignoreeof on both ends, to no effect. I have also tried setting timeouts, both -t and -T







      linux tcp socat






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Jan 1 '15 at 7:21









      Robbie TrenchenyRobbie Trencheny

      265




      265





      bumped to the homepage by Community 34 mins ago


      This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.







      bumped to the homepage by Community 34 mins ago


      This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
























          1 Answer
          1






          active

          oldest

          votes


















          0














          If you're using a LISTEN command like OPENSSL-LISTEN, TCP-LISTEN, etc., the fork option will spin off connections to a child process so that socat can continue receiving.



          Example:



          socat - OPENSSL-LISTEN:443,method=TLS1.2,verify=0,cert=cert.pem,key=key.pem,fork


          Thanks to: https://unix.stackexchange.com/a/283289/15954






          share|improve this answer
























            Your Answer








            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "2"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f655715%2falways-keep-socat-alive%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            If you're using a LISTEN command like OPENSSL-LISTEN, TCP-LISTEN, etc., the fork option will spin off connections to a child process so that socat can continue receiving.



            Example:



            socat - OPENSSL-LISTEN:443,method=TLS1.2,verify=0,cert=cert.pem,key=key.pem,fork


            Thanks to: https://unix.stackexchange.com/a/283289/15954






            share|improve this answer




























              0














              If you're using a LISTEN command like OPENSSL-LISTEN, TCP-LISTEN, etc., the fork option will spin off connections to a child process so that socat can continue receiving.



              Example:



              socat - OPENSSL-LISTEN:443,method=TLS1.2,verify=0,cert=cert.pem,key=key.pem,fork


              Thanks to: https://unix.stackexchange.com/a/283289/15954






              share|improve this answer


























                0












                0








                0







                If you're using a LISTEN command like OPENSSL-LISTEN, TCP-LISTEN, etc., the fork option will spin off connections to a child process so that socat can continue receiving.



                Example:



                socat - OPENSSL-LISTEN:443,method=TLS1.2,verify=0,cert=cert.pem,key=key.pem,fork


                Thanks to: https://unix.stackexchange.com/a/283289/15954






                share|improve this answer













                If you're using a LISTEN command like OPENSSL-LISTEN, TCP-LISTEN, etc., the fork option will spin off connections to a child process so that socat can continue receiving.



                Example:



                socat - OPENSSL-LISTEN:443,method=TLS1.2,verify=0,cert=cert.pem,key=key.pem,fork


                Thanks to: https://unix.stackexchange.com/a/283289/15954







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 8 '18 at 18:50









                jtpereydajtpereyda

                1013




                1013






























                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Server Fault!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f655715%2falways-keep-socat-alive%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    117736 Шеррод Примітки | Див. також | Посилання | Навігаційне...

                    As a Security Precaution, the user account has been locked The Next CEO of Stack OverflowMS...

                    Маріан Котлеба Зміст Життєпис | Політичні погляди |...