I try to create my own web server with this tutorial (http://www.udoo.org/tutorial/udoo-web-server/) I tried about five times, but it's still shows up error massages (Another link here:https://mega.nz/#!ptxniQTI!CLnTAK9QVh7L_xXLfXvSlDhoKIaDu-TjvrsknbJma-A) And I tried to read the error and there's nothing inside How can I solve this problem?
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
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?