Udoo Neo full and web server...

Discussion in 'UDOO NEO' started by Swity910, Dec 6, 2015.

  1. Swity910

    Swity910 New Member

    Joined:
    Dec 5, 2015
    Messages:
    9
    Likes Received:
    1
    Last edited: Dec 6, 2015
  2. ddewaele

    ddewaele Member

    Joined:
    Dec 2, 2014
    Messages:
    48
    Likes Received:
    11
    That article was written before the UDOO Neo came out.

    The UDOO Neo already comes with a NodeJS based webserver (udoo-web-conf) to run the webconsole that you see when you goto http://<neo_ip>. This server is also running on port 80, the same port as the apache2 that you are trying to start. Hence the conflict and error on startup.

    You can either stop that webconsole
    Code:
    sudo service udoo-web-conf stop
    Or you can configure apache to run on a different port
    Code:
    sudo vi /etc/apache2/httpd.conf
    Look for a "Listen" line and put a different port there, for example
    Code:
    Listen 8000
     
    Swity910 likes this.
  3. Swity910

    Swity910 New Member

    Joined:
    Dec 5, 2015
    Messages:
    9
    Likes Received:
    1
    Thank you very much!!
    The problem is solved now!!
    :):)
     
  4. sivatagipingvin

    sivatagipingvin New Member

    Joined:
    Dec 29, 2015
    Messages:
    2
    Likes Received:
    0
    Hy!
    I have a problem. "Localhost" Udoo Neo first ... works fine, but I don't find apache2 folder in my /etc folder.
    Where is www folder? How can I create own webserver?
     
  5. waltervl

    waltervl UDOOer

    Joined:
    Dec 12, 2015
    Messages:
    2,314
    Likes Received:
    580
  6. sivatagipingvin

    sivatagipingvin New Member

    Joined:
    Dec 29, 2015
    Messages:
    2
    Likes Received:
    0

Share This Page