Node.js websocket error “Error: listen EADDRNOTAVAIL Error: listen EADDRNOTAVAIL”Can't launch glassfish on ec2 - can't open portNode.js is not accessible from external IPs on UbuntuHow do you install Node.JS on CentOS?Set up websocket server on Amazon Linux AMI using Node.jsNode.js WebServer on Ubuntu 12.04 not visible externally from the Internet (external IP)Node.js SSL Certificate ErrorUnable to communicate with pacemaker host while authorisingPort does not nping in Centos 7openVPN and myhttpd on port 433Stuck at setting up full proxy with HAProxy

Is there an idiom that means that you are in a very strong negotiation position in a negotiation?

csname in newenviroment

Department head said that group project may be rejected. How to mitigate?

How to become an Editorial board member?

Why do testers need root cause analysis?

Why is 'additive' EQ more difficult to use than 'subtractive'?

size of pointers and architecture

Shell builtin `printf` line limit?

What does it mean when みたいな is at the end of a sentence?

How do you earn the reader's trust?

How many wires should be in a new thermostat cable?

If I arrive in the UK, and then head to mainland Europe, does my Schengen visa 90 day limit start when I arrived in the UK, or mainland Europe?

What was the primary motivation for a historical figure like Xenophon to create an extensive collection of written material?

What is this dime sized black bug with white on the segments near Loveland Colorodao?

Must every right-inverse of a linear transformation be a linear transformation?

How did the Allies achieve air superiority on Sicily?

How can I reduce the size of matrix?

Nunc est bibendum: gerund or gerundive?

Is there a word for pant sleeves?

Can someone provide me the list of SOQL exceptions?

Variable does not Exist: CaseTrigger

Keeping the dodos out of the field

What is the required burn to keep a satellite at a Lagrangian point?

What is the winged creature on the back of the Mordenkainen's Tome of Foes book?



Node.js websocket error “Error: listen EADDRNOTAVAIL Error: listen EADDRNOTAVAIL”


Can't launch glassfish on ec2 - can't open portNode.js is not accessible from external IPs on UbuntuHow do you install Node.JS on CentOS?Set up websocket server on Amazon Linux AMI using Node.jsNode.js WebServer on Ubuntu 12.04 not visible externally from the Internet (external IP)Node.js SSL Certificate ErrorUnable to communicate with pacemaker host while authorisingPort does not nping in Centos 7openVPN and myhttpd on port 433Stuck at setting up full proxy with HAProxy






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








1















Application work fine on localhost .but when its connect to server it getting error.
I connect server through port 22



But my app connecting server port 80.



This is the error



 Error: listen EADDRNOTAVAIL Error: listen EADDRNOTAVAIL
at errnoException (net.js:904:11)
at Server._listen2 (net.js:1023:19)
at listen (net.js:1064:10)
at net.js:1146:9
at dns.js:72:18
at process._tickCallback (node.js:419:13)
at Function.Module.runMain (module.js:499:11)
at startup (node.js:119:16)
at node.js:906:3


i run netstat -tulpn | grep 22



Result:



 tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 683/sshd
tcp6 0 0 :::22 :::* LISTEN 683/sshd


but i run netstat -tulpn | grep 80



Nothing Display.



Any Help.is this server fault?



running netstat -nlt



 Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State
tcp 0 0 127.0.0.1:27017 0.0.0.0:* LISTEN
tcp 0 0 127.0.0.1:5901 0.0.0.0:* LISTEN
tcp 0 0 127.0.0.1:5902 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:6001 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:6002 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN
tcp 0 0 127.0.0.1:631 0.0.0.0:* LISTEN
tcp6 0 0 :::22 :::* LISTEN
tcp6 0 0 ::1:631 :::* LISTEN


Running netstat -anp | grep :80



 tcp 1 0 162.243.145.226:60728 91.189.94.25:80 CLOSE_WAIT 1726/ubuntu-geoip-p
tcp 1 0 162.243.145.226:47842 74.125.239.148:80 CLOSE_WAIT 8104/epiphany-brows
tcp 1 0 162.243.145.226:60727 91.189.94.25:80 CLOSE_WAIT 1417/ubuntu-geoip-p
tcp 1 0 162.243.145.226:58818 198.41.30.199:80 CLOSE_WAIT 8104/epiphany-brows


This is source



source-link










share|improve this question






























    1















    Application work fine on localhost .but when its connect to server it getting error.
    I connect server through port 22



    But my app connecting server port 80.



    This is the error



     Error: listen EADDRNOTAVAIL Error: listen EADDRNOTAVAIL
    at errnoException (net.js:904:11)
    at Server._listen2 (net.js:1023:19)
    at listen (net.js:1064:10)
    at net.js:1146:9
    at dns.js:72:18
    at process._tickCallback (node.js:419:13)
    at Function.Module.runMain (module.js:499:11)
    at startup (node.js:119:16)
    at node.js:906:3


    i run netstat -tulpn | grep 22



    Result:



     tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 683/sshd
    tcp6 0 0 :::22 :::* LISTEN 683/sshd


    but i run netstat -tulpn | grep 80



    Nothing Display.



    Any Help.is this server fault?



    running netstat -nlt



     Active Internet connections (only servers)
    Proto Recv-Q Send-Q Local Address Foreign Address State
    tcp 0 0 127.0.0.1:27017 0.0.0.0:* LISTEN
    tcp 0 0 127.0.0.1:5901 0.0.0.0:* LISTEN
    tcp 0 0 127.0.0.1:5902 0.0.0.0:* LISTEN
    tcp 0 0 0.0.0.0:6001 0.0.0.0:* LISTEN
    tcp 0 0 0.0.0.0:6002 0.0.0.0:* LISTEN
    tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN
    tcp 0 0 127.0.0.1:631 0.0.0.0:* LISTEN
    tcp6 0 0 :::22 :::* LISTEN
    tcp6 0 0 ::1:631 :::* LISTEN


    Running netstat -anp | grep :80



     tcp 1 0 162.243.145.226:60728 91.189.94.25:80 CLOSE_WAIT 1726/ubuntu-geoip-p
    tcp 1 0 162.243.145.226:47842 74.125.239.148:80 CLOSE_WAIT 8104/epiphany-brows
    tcp 1 0 162.243.145.226:60727 91.189.94.25:80 CLOSE_WAIT 1417/ubuntu-geoip-p
    tcp 1 0 162.243.145.226:58818 198.41.30.199:80 CLOSE_WAIT 8104/epiphany-brows


    This is source



    source-link










    share|improve this question


























      1












      1








      1








      Application work fine on localhost .but when its connect to server it getting error.
      I connect server through port 22



      But my app connecting server port 80.



      This is the error



       Error: listen EADDRNOTAVAIL Error: listen EADDRNOTAVAIL
      at errnoException (net.js:904:11)
      at Server._listen2 (net.js:1023:19)
      at listen (net.js:1064:10)
      at net.js:1146:9
      at dns.js:72:18
      at process._tickCallback (node.js:419:13)
      at Function.Module.runMain (module.js:499:11)
      at startup (node.js:119:16)
      at node.js:906:3


      i run netstat -tulpn | grep 22



      Result:



       tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 683/sshd
      tcp6 0 0 :::22 :::* LISTEN 683/sshd


      but i run netstat -tulpn | grep 80



      Nothing Display.



      Any Help.is this server fault?



      running netstat -nlt



       Active Internet connections (only servers)
      Proto Recv-Q Send-Q Local Address Foreign Address State
      tcp 0 0 127.0.0.1:27017 0.0.0.0:* LISTEN
      tcp 0 0 127.0.0.1:5901 0.0.0.0:* LISTEN
      tcp 0 0 127.0.0.1:5902 0.0.0.0:* LISTEN
      tcp 0 0 0.0.0.0:6001 0.0.0.0:* LISTEN
      tcp 0 0 0.0.0.0:6002 0.0.0.0:* LISTEN
      tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN
      tcp 0 0 127.0.0.1:631 0.0.0.0:* LISTEN
      tcp6 0 0 :::22 :::* LISTEN
      tcp6 0 0 ::1:631 :::* LISTEN


      Running netstat -anp | grep :80



       tcp 1 0 162.243.145.226:60728 91.189.94.25:80 CLOSE_WAIT 1726/ubuntu-geoip-p
      tcp 1 0 162.243.145.226:47842 74.125.239.148:80 CLOSE_WAIT 8104/epiphany-brows
      tcp 1 0 162.243.145.226:60727 91.189.94.25:80 CLOSE_WAIT 1417/ubuntu-geoip-p
      tcp 1 0 162.243.145.226:58818 198.41.30.199:80 CLOSE_WAIT 8104/epiphany-brows


      This is source



      source-link










      share|improve this question
















      Application work fine on localhost .but when its connect to server it getting error.
      I connect server through port 22



      But my app connecting server port 80.



      This is the error



       Error: listen EADDRNOTAVAIL Error: listen EADDRNOTAVAIL
      at errnoException (net.js:904:11)
      at Server._listen2 (net.js:1023:19)
      at listen (net.js:1064:10)
      at net.js:1146:9
      at dns.js:72:18
      at process._tickCallback (node.js:419:13)
      at Function.Module.runMain (module.js:499:11)
      at startup (node.js:119:16)
      at node.js:906:3


      i run netstat -tulpn | grep 22



      Result:



       tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 683/sshd
      tcp6 0 0 :::22 :::* LISTEN 683/sshd


      but i run netstat -tulpn | grep 80



      Nothing Display.



      Any Help.is this server fault?



      running netstat -nlt



       Active Internet connections (only servers)
      Proto Recv-Q Send-Q Local Address Foreign Address State
      tcp 0 0 127.0.0.1:27017 0.0.0.0:* LISTEN
      tcp 0 0 127.0.0.1:5901 0.0.0.0:* LISTEN
      tcp 0 0 127.0.0.1:5902 0.0.0.0:* LISTEN
      tcp 0 0 0.0.0.0:6001 0.0.0.0:* LISTEN
      tcp 0 0 0.0.0.0:6002 0.0.0.0:* LISTEN
      tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN
      tcp 0 0 127.0.0.1:631 0.0.0.0:* LISTEN
      tcp6 0 0 :::22 :::* LISTEN
      tcp6 0 0 ::1:631 :::* LISTEN


      Running netstat -anp | grep :80



       tcp 1 0 162.243.145.226:60728 91.189.94.25:80 CLOSE_WAIT 1726/ubuntu-geoip-p
      tcp 1 0 162.243.145.226:47842 74.125.239.148:80 CLOSE_WAIT 8104/epiphany-brows
      tcp 1 0 162.243.145.226:60727 91.189.94.25:80 CLOSE_WAIT 1417/ubuntu-geoip-p
      tcp 1 0 162.243.145.226:58818 198.41.30.199:80 CLOSE_WAIT 8104/epiphany-brows


      This is source



      source-link







      linux ubuntu port ubuntu-12.04 node.js






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Oct 9 '14 at 18:44









      Dave M

      4,37982428




      4,37982428










      asked Oct 9 '14 at 18:38









      samsam

      10613




      10613




















          2 Answers
          2






          active

          oldest

          votes


















          0














          Are you running the program as root?



          If you are not running as root, you cannot bind any program to ports bellow 1024. They are considered privileged ports, and only root can use them.



          If you want to run as root, don't. Running as root can create problems if someone exploits your program and gets a shell, and discovers it's a root shell.



          Run as an unprivileged user, and change the port from 80 to something above 1024.






          share|improve this answer























          • ok.then i use port as 3000.But still getting error.only want i change port in a App?

            – sam
            Oct 9 '14 at 18:48











          • I don't know your application, so you will have to discover on the configuration options or files where to change the port.

            – ThoriumBR
            Oct 9 '14 at 18:50











          • yes.in App i change the port. still getting this error.in server want i do any configuration for port 3000?

            – sam
            Oct 9 '14 at 18:52











          • Any help please !!!

            – sam
            Oct 9 '14 at 18:55











          • If you can run the application with a debug log setting, you can pinpoint exactly where is the problem. Otherwise nobody can really help you.

            – ThoriumBR
            Oct 9 '14 at 18:58


















          0














          From man 7 ip



          ERRORS
          ...

          EADDRNOTAVAIL
          A nonexistent interface was requested or the requested source
          address was not local.


          You've probably mistyped the listen IP address to bind to in the config.






          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%2f634842%2fnode-js-websocket-error-error-listen-eaddrnotavail-error-listen-eaddrnotavail%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            Are you running the program as root?



            If you are not running as root, you cannot bind any program to ports bellow 1024. They are considered privileged ports, and only root can use them.



            If you want to run as root, don't. Running as root can create problems if someone exploits your program and gets a shell, and discovers it's a root shell.



            Run as an unprivileged user, and change the port from 80 to something above 1024.






            share|improve this answer























            • ok.then i use port as 3000.But still getting error.only want i change port in a App?

              – sam
              Oct 9 '14 at 18:48











            • I don't know your application, so you will have to discover on the configuration options or files where to change the port.

              – ThoriumBR
              Oct 9 '14 at 18:50











            • yes.in App i change the port. still getting this error.in server want i do any configuration for port 3000?

              – sam
              Oct 9 '14 at 18:52











            • Any help please !!!

              – sam
              Oct 9 '14 at 18:55











            • If you can run the application with a debug log setting, you can pinpoint exactly where is the problem. Otherwise nobody can really help you.

              – ThoriumBR
              Oct 9 '14 at 18:58















            0














            Are you running the program as root?



            If you are not running as root, you cannot bind any program to ports bellow 1024. They are considered privileged ports, and only root can use them.



            If you want to run as root, don't. Running as root can create problems if someone exploits your program and gets a shell, and discovers it's a root shell.



            Run as an unprivileged user, and change the port from 80 to something above 1024.






            share|improve this answer























            • ok.then i use port as 3000.But still getting error.only want i change port in a App?

              – sam
              Oct 9 '14 at 18:48











            • I don't know your application, so you will have to discover on the configuration options or files where to change the port.

              – ThoriumBR
              Oct 9 '14 at 18:50











            • yes.in App i change the port. still getting this error.in server want i do any configuration for port 3000?

              – sam
              Oct 9 '14 at 18:52











            • Any help please !!!

              – sam
              Oct 9 '14 at 18:55











            • If you can run the application with a debug log setting, you can pinpoint exactly where is the problem. Otherwise nobody can really help you.

              – ThoriumBR
              Oct 9 '14 at 18:58













            0












            0








            0







            Are you running the program as root?



            If you are not running as root, you cannot bind any program to ports bellow 1024. They are considered privileged ports, and only root can use them.



            If you want to run as root, don't. Running as root can create problems if someone exploits your program and gets a shell, and discovers it's a root shell.



            Run as an unprivileged user, and change the port from 80 to something above 1024.






            share|improve this answer













            Are you running the program as root?



            If you are not running as root, you cannot bind any program to ports bellow 1024. They are considered privileged ports, and only root can use them.



            If you want to run as root, don't. Running as root can create problems if someone exploits your program and gets a shell, and discovers it's a root shell.



            Run as an unprivileged user, and change the port from 80 to something above 1024.







            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Oct 9 '14 at 18:45









            ThoriumBRThoriumBR

            4,85622033




            4,85622033












            • ok.then i use port as 3000.But still getting error.only want i change port in a App?

              – sam
              Oct 9 '14 at 18:48











            • I don't know your application, so you will have to discover on the configuration options or files where to change the port.

              – ThoriumBR
              Oct 9 '14 at 18:50











            • yes.in App i change the port. still getting this error.in server want i do any configuration for port 3000?

              – sam
              Oct 9 '14 at 18:52











            • Any help please !!!

              – sam
              Oct 9 '14 at 18:55











            • If you can run the application with a debug log setting, you can pinpoint exactly where is the problem. Otherwise nobody can really help you.

              – ThoriumBR
              Oct 9 '14 at 18:58

















            • ok.then i use port as 3000.But still getting error.only want i change port in a App?

              – sam
              Oct 9 '14 at 18:48











            • I don't know your application, so you will have to discover on the configuration options or files where to change the port.

              – ThoriumBR
              Oct 9 '14 at 18:50











            • yes.in App i change the port. still getting this error.in server want i do any configuration for port 3000?

              – sam
              Oct 9 '14 at 18:52











            • Any help please !!!

              – sam
              Oct 9 '14 at 18:55











            • If you can run the application with a debug log setting, you can pinpoint exactly where is the problem. Otherwise nobody can really help you.

              – ThoriumBR
              Oct 9 '14 at 18:58
















            ok.then i use port as 3000.But still getting error.only want i change port in a App?

            – sam
            Oct 9 '14 at 18:48





            ok.then i use port as 3000.But still getting error.only want i change port in a App?

            – sam
            Oct 9 '14 at 18:48













            I don't know your application, so you will have to discover on the configuration options or files where to change the port.

            – ThoriumBR
            Oct 9 '14 at 18:50





            I don't know your application, so you will have to discover on the configuration options or files where to change the port.

            – ThoriumBR
            Oct 9 '14 at 18:50













            yes.in App i change the port. still getting this error.in server want i do any configuration for port 3000?

            – sam
            Oct 9 '14 at 18:52





            yes.in App i change the port. still getting this error.in server want i do any configuration for port 3000?

            – sam
            Oct 9 '14 at 18:52













            Any help please !!!

            – sam
            Oct 9 '14 at 18:55





            Any help please !!!

            – sam
            Oct 9 '14 at 18:55













            If you can run the application with a debug log setting, you can pinpoint exactly where is the problem. Otherwise nobody can really help you.

            – ThoriumBR
            Oct 9 '14 at 18:58





            If you can run the application with a debug log setting, you can pinpoint exactly where is the problem. Otherwise nobody can really help you.

            – ThoriumBR
            Oct 9 '14 at 18:58













            0














            From man 7 ip



            ERRORS
            ...

            EADDRNOTAVAIL
            A nonexistent interface was requested or the requested source
            address was not local.


            You've probably mistyped the listen IP address to bind to in the config.






            share|improve this answer



























              0














              From man 7 ip



              ERRORS
              ...

              EADDRNOTAVAIL
              A nonexistent interface was requested or the requested source
              address was not local.


              You've probably mistyped the listen IP address to bind to in the config.






              share|improve this answer

























                0












                0








                0







                From man 7 ip



                ERRORS
                ...

                EADDRNOTAVAIL
                A nonexistent interface was requested or the requested source
                address was not local.


                You've probably mistyped the listen IP address to bind to in the config.






                share|improve this answer













                From man 7 ip



                ERRORS
                ...

                EADDRNOTAVAIL
                A nonexistent interface was requested or the requested source
                address was not local.


                You've probably mistyped the listen IP address to bind to in the config.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered May 8 at 13:03









                Matthew IfeMatthew Ife

                20.7k24663




                20.7k24663



























                    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%2f634842%2fnode-js-websocket-error-error-listen-eaddrnotavail-error-listen-eaddrnotavail%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

                    Club Baloncesto Breogán Índice Historia | Pavillón | Nome | O Breogán na cultura popular | Xogadores | Adestradores | Presidentes | Palmarés | Historial | Líderes | Notas | Véxase tamén | Menú de navegacióncbbreogan.galCadroGuía oficial da ACB 2009-10, páxina 201Guía oficial ACB 1992, páxina 183. Editorial DB.É de 6.500 espectadores sentados axeitándose á última normativa"Estudiantes Junior, entre as mellores canteiras"o orixinalHemeroteca El Mundo Deportivo, 16 setembro de 1970, páxina 12Historia do BreogánAlfredo Pérez, o último canoneiroHistoria C.B. BreogánHemeroteca de El Mundo DeportivoJimmy Wright, norteamericano do Breogán deixará Lugo por ameazas de morteResultados de Breogán en 1986-87Resultados de Breogán en 1990-91Ficha de Velimir Perasović en acb.comResultados de Breogán en 1994-95Breogán arrasa al Barça. "El Mundo Deportivo", 27 de setembro de 1999, páxina 58CB Breogán - FC BarcelonaA FEB invita a participar nunha nova Liga EuropeaCharlie Bell na prensa estatalMáximos anotadores 2005Tempada 2005-06 : Tódolos Xogadores da Xornada""Non quero pensar nunha man negra, mais pregúntome que está a pasar""o orixinalRaúl López, orgulloso dos xogadores, presume da boa saúde económica do BreogánJulio González confirma que cesa como presidente del BreogánHomenaxe a Lisardo GómezA tempada do rexurdimento celesteEntrevista a Lisardo GómezEl COB dinamita el Pazo para forzar el quinto (69-73)Cafés Candelas, patrocinador del CB Breogán"Suso Lázare, novo presidente do Breogán"o orixinalCafés Candelas Breogán firma el mayor triunfo de la historiaEl Breogán realizará 17 homenajes por su cincuenta aniversario"O Breogán honra ao seu fundador e primeiro presidente"o orixinalMiguel Giao recibiu a homenaxe do PazoHomenaxe aos primeiros gladiadores celestesO home que nos amosa como ver o Breo co corazónTita Franco será homenaxeada polos #50anosdeBreoJulio Vila recibirá unha homenaxe in memoriam polos #50anosdeBreo"O Breogán homenaxeará aos seus aboados máis veteráns"Pechada ovación a «Capi» Sanmartín e Ricardo «Corazón de González»Homenaxe por décadas de informaciónPaco García volve ao Pazo con motivo do 50 aniversario"Resultados y clasificaciones""O Cafés Candelas Breogán, campión da Copa Princesa""O Cafés Candelas Breogán, equipo ACB"C.B. Breogán"Proxecto social"o orixinal"Centros asociados"o orixinalFicha en imdb.comMario Camus trata la recuperación del amor en 'La vieja música', su última película"Páxina web oficial""Club Baloncesto Breogán""C. B. Breogán S.A.D."eehttp://www.fegaba.com

                    Vilaño, A Laracha Índice Patrimonio | Lugares e parroquias | Véxase tamén | Menú de navegación43°14′52″N 8°36′03″O / 43.24775, -8.60070

                    Cegueira Índice Epidemioloxía | Deficiencia visual | Tipos de cegueira | Principais causas de cegueira | Tratamento | Técnicas de adaptación e axudas | Vida dos cegos | Primeiros auxilios | Crenzas respecto das persoas cegas | Crenzas das persoas cegas | O neno deficiente visual | Aspectos psicolóxicos da cegueira | Notas | Véxase tamén | Menú de navegación54.054.154.436928256blindnessDicionario da Real Academia GalegaPortal das Palabras"International Standards: Visual Standards — Aspects and Ranges of Vision Loss with Emphasis on Population Surveys.""Visual impairment and blindness""Presentan un plan para previr a cegueira"o orixinalACCDV Associació Catalana de Cecs i Disminuïts Visuals - PMFTrachoma"Effect of gene therapy on visual function in Leber's congenital amaurosis"1844137110.1056/NEJMoa0802268Cans guía - os mellores amigos dos cegosArquivadoEscola de cans guía para cegos en Mortágua, PortugalArquivado"Tecnología para ciegos y deficientes visuales. Recopilación de recursos gratuitos en la Red""Colorino""‘COL.diesis’, escuchar los sonidos del color""COL.diesis: Transforming Colour into Melody and Implementing the Result in a Colour Sensor Device"o orixinal"Sistema de desarrollo de sinestesia color-sonido para invidentes utilizando un protocolo de audio""Enseñanza táctil - geometría y color. Juegos didácticos para niños ciegos y videntes""Sistema Constanz"L'ocupació laboral dels cecs a l'Estat espanyol està pràcticament equiparada a la de les persones amb visió, entrevista amb Pedro ZuritaONCE (Organización Nacional de Cegos de España)Prevención da cegueiraDescrición de deficiencias visuais (Disc@pnet)Braillín, un boneco atractivo para calquera neno, con ou sen discapacidade, que permite familiarizarse co sistema de escritura e lectura brailleAxudas Técnicas36838ID00897494007150-90057129528256DOID:1432HP:0000618D001766C10.597.751.941.162C97109C0155020