Step by step on Installing Monkey webserver with Munin on debain wheezy along with the user group creating with www-user ?
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Join our DigitalOcean community of over a million developers for free! Get help and share knowledge in Q&A, subscribe to topics of interest, and get courses and tools that will help you grow as a developer and scale your project or business.
FYI:
If you need any assistance with procedures to get this running properly do not hesitate to contact us.
Eduardo Monkey Project
<p>Monkey webserver is not available as a package in the Debian repository, you must compile it from source. You can do so with the following commands:</p> <pre>apt-get install build-essential wget http://monkey-project.com/releases/1.5/monkey-1.5.0.tar.gz tar zxfv monkey-1.5.0.tar.gz cd monkey-1.5.0 ./configure --prefix=/usr/local make make install</pre> <p>Now you can run the server simply with the command:</p> <pre>monkey</pre> <p>You should see the default page if you go to http://your.ip.address:2001</p> <p>The project has very complete documentation at http://monkey-project.com/documentation/1.5/</p>