How can I find out information about a service?Doing nmap on a networkfedora can't find mysql servicemysql USER unclear about what can be dropped?Find service by network activityHow can I find where a program is installed or run from?How can I make a service to run on port 80 in Linux? (Details)How to tell stateful vs stateless firewall with nmap ACK scanstarting a service results in error 'Service hold-off time over' - can't find python pathtelnet to an host/port works while no service on this host listening on this portCan not Display Service in Service List

What materials can be used to make a humanoid skin warm?

In the late 1940’s to early 1950’s what technology was available that could melt a LOT of ice?

PTIJ: Why does only a Shor Tam ask at the Seder, and not a Shor Mu'ad?

Is this Paypal Github SDK reference really a dangerous site?

Why do phishing e-mails use faked e-mail addresses instead of the real one?

Professor forcing me to attend a conference, I can't afford even with 50% funding

What is the generally accepted pronunciation of “topoi”?

What is this diamond of every day?

How many characters using PHB rules does it take to be able to have access to any PHB spell at the start of an adventuring day?

How exactly does an Ethernet collision happen in the cable, since nodes use different circuits for Tx and Rx?

Why is there an extra space when I type "ls" in the Desktop directory?

Is it possible to find 2014 distinct positive integers whose sum is divisible by each of them?

Is it possible that a question has only two answers?

Trig Subsitution When There's No Square Root

Can we track matter through time by looking at different depths in space?

How can I manipulate the output of Information?

For which categories of spectra is there an explicit description of the fibrant objects via lifting properties?

Why does Solve lock up when trying to solve the quadratic equation with large integers?

Called into a meeting and told we are being made redundant (laid off) and "not to share outside". Can I tell my partner?

Does "Until when" sound natural for native speakers?

Which classes are needed to have access to every spell in the PHB?

Why is gluten-free baking possible?

Does an unused member variable take up memory?

How do spaceships determine each other's mass in space?



How can I find out information about a service?


Doing nmap on a networkfedora can't find mysql servicemysql USER unclear about what can be dropped?Find service by network activityHow can I find where a program is installed or run from?How can I make a service to run on port 80 in Linux? (Details)How to tell stateful vs stateless firewall with nmap ACK scanstarting a service results in error 'Service hold-off time over' - can't find python pathtelnet to an host/port works while no service on this host listening on this portCan not Display Service in Service List













1















$ nmap -p0-65535 192.168.0.142

Starting Nmap 7.60 ( https://nmap.org ) at 2019-03-10 17:53 EDT
Nmap scan report for ocean (192.168.0.142)
Host is up (0.000031s latency).
Not shown: 65531 closed ports
PORT STATE SERVICE
22/tcp open ssh
80/tcp open http
111/tcp open rpcbind
3306/tcp open mysql
33060/tcp open mysqlx

Nmap done: 1 IP address (1 host up) scanned in 11.06 seconds


What is service mysqlx?



Why is it not mapped in /etc/services?



$ cat /etc/services | grep mysql
mysql 3306/tcp
mysql 3306/udp
mysql-proxy 6446/tcp # MySQL Proxy
mysql-proxy 6446/udp


Why is it not part of the command for the process?



$ ps -A | grep mysqlx


Is it possible that nmap can report misleading information? Do you find out the services running on the local machine not by nmap?



Thanks.










share|improve this question




























    1















    $ nmap -p0-65535 192.168.0.142

    Starting Nmap 7.60 ( https://nmap.org ) at 2019-03-10 17:53 EDT
    Nmap scan report for ocean (192.168.0.142)
    Host is up (0.000031s latency).
    Not shown: 65531 closed ports
    PORT STATE SERVICE
    22/tcp open ssh
    80/tcp open http
    111/tcp open rpcbind
    3306/tcp open mysql
    33060/tcp open mysqlx

    Nmap done: 1 IP address (1 host up) scanned in 11.06 seconds


    What is service mysqlx?



    Why is it not mapped in /etc/services?



    $ cat /etc/services | grep mysql
    mysql 3306/tcp
    mysql 3306/udp
    mysql-proxy 6446/tcp # MySQL Proxy
    mysql-proxy 6446/udp


    Why is it not part of the command for the process?



    $ ps -A | grep mysqlx


    Is it possible that nmap can report misleading information? Do you find out the services running on the local machine not by nmap?



    Thanks.










    share|improve this question


























      1












      1








      1








      $ nmap -p0-65535 192.168.0.142

      Starting Nmap 7.60 ( https://nmap.org ) at 2019-03-10 17:53 EDT
      Nmap scan report for ocean (192.168.0.142)
      Host is up (0.000031s latency).
      Not shown: 65531 closed ports
      PORT STATE SERVICE
      22/tcp open ssh
      80/tcp open http
      111/tcp open rpcbind
      3306/tcp open mysql
      33060/tcp open mysqlx

      Nmap done: 1 IP address (1 host up) scanned in 11.06 seconds


      What is service mysqlx?



      Why is it not mapped in /etc/services?



      $ cat /etc/services | grep mysql
      mysql 3306/tcp
      mysql 3306/udp
      mysql-proxy 6446/tcp # MySQL Proxy
      mysql-proxy 6446/udp


      Why is it not part of the command for the process?



      $ ps -A | grep mysqlx


      Is it possible that nmap can report misleading information? Do you find out the services running on the local machine not by nmap?



      Thanks.










      share|improve this question
















      $ nmap -p0-65535 192.168.0.142

      Starting Nmap 7.60 ( https://nmap.org ) at 2019-03-10 17:53 EDT
      Nmap scan report for ocean (192.168.0.142)
      Host is up (0.000031s latency).
      Not shown: 65531 closed ports
      PORT STATE SERVICE
      22/tcp open ssh
      80/tcp open http
      111/tcp open rpcbind
      3306/tcp open mysql
      33060/tcp open mysqlx

      Nmap done: 1 IP address (1 host up) scanned in 11.06 seconds


      What is service mysqlx?



      Why is it not mapped in /etc/services?



      $ cat /etc/services | grep mysql
      mysql 3306/tcp
      mysql 3306/udp
      mysql-proxy 6446/tcp # MySQL Proxy
      mysql-proxy 6446/udp


      Why is it not part of the command for the process?



      $ ps -A | grep mysqlx


      Is it possible that nmap can report misleading information? Do you find out the services running on the local machine not by nmap?



      Thanks.







      mysql services nmap






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited 5 hours ago







      Tim

















      asked 5 hours ago









      TimTim

      27.6k78264477




      27.6k78264477




















          1 Answer
          1






          active

          oldest

          votes


















          3














          The mysqlx service on port 33060 is the MySQL X DevAPI service.



          nmap does not use /etc/services, it uses its own database of services.



          Note that anything listening on port 33060 will be reported as the mysqlx service, and that the name of a service does not necessarily have to be part of the name of the command providing the service (both exim and postfix may provide an smtp service, for example).



          To see what's listening on port 33060 on the local machine, you may use, on a Linux system,



          sudo lsof -i :33060


          or



          sudo fuser -v 33060/tcp





          share|improve this answer

























          • Thanks. does fuser 33060/tcp works the same as sudo lsof -i :33060?

            – Tim
            4 hours ago












          • @Tim Not quite, I think you would need sudo fuser -v 33060/tcp to get any interesting information.

            – Kusalananda
            4 hours ago











          Your Answer








          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "106"
          ;
          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: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          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%2funix.stackexchange.com%2fquestions%2f505538%2fhow-can-i-find-out-information-about-a-service%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









          3














          The mysqlx service on port 33060 is the MySQL X DevAPI service.



          nmap does not use /etc/services, it uses its own database of services.



          Note that anything listening on port 33060 will be reported as the mysqlx service, and that the name of a service does not necessarily have to be part of the name of the command providing the service (both exim and postfix may provide an smtp service, for example).



          To see what's listening on port 33060 on the local machine, you may use, on a Linux system,



          sudo lsof -i :33060


          or



          sudo fuser -v 33060/tcp





          share|improve this answer

























          • Thanks. does fuser 33060/tcp works the same as sudo lsof -i :33060?

            – Tim
            4 hours ago












          • @Tim Not quite, I think you would need sudo fuser -v 33060/tcp to get any interesting information.

            – Kusalananda
            4 hours ago
















          3














          The mysqlx service on port 33060 is the MySQL X DevAPI service.



          nmap does not use /etc/services, it uses its own database of services.



          Note that anything listening on port 33060 will be reported as the mysqlx service, and that the name of a service does not necessarily have to be part of the name of the command providing the service (both exim and postfix may provide an smtp service, for example).



          To see what's listening on port 33060 on the local machine, you may use, on a Linux system,



          sudo lsof -i :33060


          or



          sudo fuser -v 33060/tcp





          share|improve this answer

























          • Thanks. does fuser 33060/tcp works the same as sudo lsof -i :33060?

            – Tim
            4 hours ago












          • @Tim Not quite, I think you would need sudo fuser -v 33060/tcp to get any interesting information.

            – Kusalananda
            4 hours ago














          3












          3








          3







          The mysqlx service on port 33060 is the MySQL X DevAPI service.



          nmap does not use /etc/services, it uses its own database of services.



          Note that anything listening on port 33060 will be reported as the mysqlx service, and that the name of a service does not necessarily have to be part of the name of the command providing the service (both exim and postfix may provide an smtp service, for example).



          To see what's listening on port 33060 on the local machine, you may use, on a Linux system,



          sudo lsof -i :33060


          or



          sudo fuser -v 33060/tcp





          share|improve this answer















          The mysqlx service on port 33060 is the MySQL X DevAPI service.



          nmap does not use /etc/services, it uses its own database of services.



          Note that anything listening on port 33060 will be reported as the mysqlx service, and that the name of a service does not necessarily have to be part of the name of the command providing the service (both exim and postfix may provide an smtp service, for example).



          To see what's listening on port 33060 on the local machine, you may use, on a Linux system,



          sudo lsof -i :33060


          or



          sudo fuser -v 33060/tcp






          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited 4 hours ago

























          answered 5 hours ago









          KusalanandaKusalananda

          135k17255418




          135k17255418












          • Thanks. does fuser 33060/tcp works the same as sudo lsof -i :33060?

            – Tim
            4 hours ago












          • @Tim Not quite, I think you would need sudo fuser -v 33060/tcp to get any interesting information.

            – Kusalananda
            4 hours ago


















          • Thanks. does fuser 33060/tcp works the same as sudo lsof -i :33060?

            – Tim
            4 hours ago












          • @Tim Not quite, I think you would need sudo fuser -v 33060/tcp to get any interesting information.

            – Kusalananda
            4 hours ago

















          Thanks. does fuser 33060/tcp works the same as sudo lsof -i :33060?

          – Tim
          4 hours ago






          Thanks. does fuser 33060/tcp works the same as sudo lsof -i :33060?

          – Tim
          4 hours ago














          @Tim Not quite, I think you would need sudo fuser -v 33060/tcp to get any interesting information.

          – Kusalananda
          4 hours ago






          @Tim Not quite, I think you would need sudo fuser -v 33060/tcp to get any interesting information.

          – Kusalananda
          4 hours ago


















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Unix & Linux Stack Exchange!


          • 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%2funix.stackexchange.com%2fquestions%2f505538%2fhow-can-i-find-out-information-about-a-service%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

          Möglingen Índice Localización Historia Demografía Referencias Enlaces externos Menú de navegación48°53′18″N 9°07′45″E / 48.888333333333, 9.129166666666748°53′18″N 9°07′45″E / 48.888333333333, 9.1291666666667Sitio web oficial Mapa de Möglingen«Gemeinden in Deutschland nach Fläche, Bevölkerung und Postleitzahl am 30.09.2016»Möglingen

          Virtualbox - Configuration error: Querying “UUID” failed (VERR_CFGM_VALUE_NOT_FOUND)“VERR_SUPLIB_WORLD_WRITABLE” error when trying to installing OS in virtualboxVirtual Box Kernel errorFailed to open a seesion for the virtual machineFailed to open a session for the virtual machineUbuntu 14.04 LTS Virtualbox errorcan't use VM VirtualBoxusing virtualboxI can't run Linux-64 Bit on VirtualBoxUnable to insert the virtual optical disk (VBoxguestaddition) in virtual machine for ubuntu server in win 10VirtuaBox in Ubuntu 18.04 Issues with Win10.ISO Installation

          Antonio De Lisio Carrera Referencias Menú de navegación«Caracas: evolución relacional multipleja»«Cuando los gobiernos subestiman a las localidades: L a Iniciativa para la Integración de la Infraestructura Regional Suramericana (IIRSA) en la frontera Colombo-Venezolana»«Maestría en Planificación Integral del Ambiente»«La Metrópoli Caraqueña: Expansión Simplificadora o Articulación Diversificante»«La Metrópoli Caraqueña: Expansión Simplificadora o Articulación Diversificante»«Conózcanos»«Caracas: evolución relacional multipleja»«La Metrópoli Caraqueña: Expansión Simplificadora o Articulación Diversificante»