public marks

PUBLIC MARKS with tags server & web

2020

Best Linux server distros

by kanzor
Here are some of the best Linux server distros available for system administrators and experienced users.

2018

2015

2012

2011

3.4 million page views per day, 92 M per month, one server and Drupal

by holyver (via)
In this talk, Khalid of 2bits.com, Inc., Inc will talk about a how to scale a Drupal web site with the following statistics. 3.4 million pages per day peak 92 million page views per month 189,650 page views per hour peak 840,000 visits on peak day 22.96 million visits per month 52,747 visits per hour peak So far, this is the highest traffic a Drupal site gets that we heard of. What is amazing is that this web site runs on a single mid range server ...

PHP: rfc:builtinwebserver [PHP Wiki]

by Xavier Lacot
A RFC for a web server built inside PHP

2010

How can I check the password of the IUSR and IWAM local accounts on a machine?

by brianwaustin (via)
Windows IT Pro For Admins SuperSite For Tech Enthusiasts SQL Server Mag For DBAs DevProConnections For Developers SharePointPro Connections For IT & Dev Windows IT Pro, we're in IT with you About Advertise Subscribe Follow Us RSS Why Join My Account Register Sign In Search InstantDoc ID GO Browse By: Author | Issue * Home * news o Paul Thurrott's WinInfo News * blogs o Active Directory GPO and Identity o Active Directory Troubleshooting Tips and Tricks o Business Technology Perspectives o exchange and outlook o fearless security o hyperbole embellishment sys admin o IT Research Perspectives o Michael Otey o networking and hardware o Office and SharePoint o PowerShell with a Purpose o scripting o security o security matters o virtualization o Virtualization Pro Tips o Windows Automation o Windows OS and Deployment * FAQs o Exchange and Outlook Tips &Techniques o John Savill's FAQs o PowerShell FAQs o Virtualization FAQs o Windows Gatekeeper FAQs o FAQ Submittal Form * products & reviews o awards central o buyers guides o reviews * newsletters * Events o Conferences & Workshops o eLearning Seminars o Virtual Events o web seminars * community o Follow Us o Forums o User Group Central * resources o ebooks o essential guides o podcasts o tip guides o trials & downloads o videos & more o web seminars o white papers * international o europe * more o network monitoring management o hp virtualization o google apps cloud based infrastructure o MVP-system o Windows 7 o HP Intel Microsoft Unified Communications o VMware Desktop Virtualization with VMware View o Business services made simple + IT as a service made simple + IT as a Service Blog o doing windows 7 right o VMware Virtualizing Business-Critical Applications o VMware Virtualizing Exchange Polland Article o VMware Virtualizing Oracle Polland Article o VMware Virtualizing SAP Polland Article o Cloud Twitterview Paul Thurrott Sean Deuby Nov19 o Essentials Series Downloads * Subscribe Home » Passwords » How can I check the password of the IUSR and IWAM local accounts on a machine?

Server Side JavaScript

by astrochoupe
Javascript utilisé il y a quelques années par Netscape comme langage côté serveur.

node.js

by Xavier Lacot & 6 others
node.js allows the use of javacript on the server side, in a fresh and elegant way

2009

Tornado Web Server Documentation

by greut

Tornado comes with limited support for WSGI. However, since WSGI does not support non-blocking requests, you cannot use any of the asynchronous/non-blocking features of Tornado in your application if you choose to use WSGI instead of Tornado's HTTP server. Some of the features that are not available in WSGI applications: @tornado.web.asynchronous, the httpclient module, and the auth module.

in other words: WSGI sucks

2008

Server2Go - Self configurable WAMPP Stack

by camel
Server2Go is a Webserver that runs out of the box without any installation and on write protected media. This means that web applications based on Server2Go can be used directly from cdrom, a usb stick or from any folder on a hard disk without the hassle of configuring Apache, PHP or MySQL. Server2Go allows you to create a standalone working web site or PHP application on a CD-ROM. There are many examples of its possible useses such as catalogue software, calculation programmes, image campaigns (CMS-based), computer based training lessons or other applicatons. Most PHP-Software such as the content management system Joomla or the computer based training software Moodle can be used from CD-ROM with the help of Server2Go. Server2Go was developed in the first instance for use on CD-ROM but there is no problem in using it from other drives too. Using a web browser, a user can run php programs as well as view html files on the CD-ROM. He only needs to insert a CD with Server2Go. The server software starts automatically and a browser is opened with the Website of the CD-ROM. Server2Go was built in the first place to replace other CD-ROM webservers such as WampOnCD or Microweb that lacked some important features or are not being actively developed. Main Features * Free! No royalties * Complete WAMPP Server-Stack * Runs directly from CD-ROM, USB Stick or Hard disk without installation * Full featured webserver (based on apache) * PHP 5.x support with many extensions installed (e.g. gd) * Supports SQLite databases * Runs on all versions of Windows from Win 98 and above, MAC OSX support is coming * Support for MySQL 5 Databases * Supports many PHP extensions (GD-Lib, PDO...) by default * Support for Perl 5.8

Tentakel to execute commands on multiple Linux or UNIX Servers

by camel
Many times, you want to execute a command not only on one server, but also on several servers. For example, find out * Version of kernel * Version of Apache web server * Update static html or images files on all web servers via rsync * Find out user information, server information, memory usage etc * Security/patch checking tentakel I have already covered how to execute commands on multiple Linux or UNIX servers via shell script. The disadvantage of script is commands do not run in parallel on all servers. However, several tools exist to automate this procedure in parallel. With the help of tool called tentakel, you run distributed command execution. It is a program for executing the same command on many hosts in parallel using ssh (it supports other methods too). Main advantage is you can create several sets of servers according requirements. For example webserver group, mail server group, home servers group etc. The command is executed in parallel on all servers in this group (time saving). By default, every result is printed to stdout (screen). The output format can be defined for each group.

Virtualmin - About

by camel
Virtualmin is a uniquely powerful and flexible web server administration tool. It is unmatched in features and ease of use. Based on Webmin, it offers a wide array of productivity-enhancing tools for hosting providers, web developers, web designers, and end users.

Linux.com :: Using free software for HTTP load testing

by camel & 1 other (via)
A good way to see how your Web applications and server will behave under high load is by testing them with a simulated load. We tested several free software tools that do such testing to see which work best for what kinds of sites. If you leave out the load-testing packages that are no longer maintained, non-free, or fail the installation process in some obscure way, you are left with five candidates: curl-loader, httperf, Siege, Tsung, and Apache JMeter.

Running Vhosts Under Separate UIDs/GIDs With Apache2 mpm-peruser On Debian Etch | HowtoForge - Linux Howtos and Tutorials

by camel & 1 other (via)
This article explains how you can install and configure apache2-mpm-peruser on a Debian Etch server. apache2-mpm-peruser is an MPM (Multi-Processing Module) for the Apache 2 web server, very similar to apache2-mpm-itk, but faster (almost as fast as apache2-mpm-prefork). mpm-peruser allows you to run each of your vhosts under a separate UID and GID - in short, the scripts and configuration files for one vhost no longer have to be readable for all the other vhosts. It is based on metuxmpm, a working implementation of the perchild MPM. The result is a sane and secure web server environment for your users, without kludges like PHP's safe_mode.

How To Set Up A Loadbalanced High-Availability Apache Cluster Based On Ubuntu 8.04 LTS | HowtoForge - Linux Howtos and Tutorials

by camel
This tutorial shows how to set up a two-node Apache web server cluster that provides high-availability. In front of the Apache cluster we create a load balancer that splits up incoming requests between the two Apache nodes. Because we do not want the load balancer to become another "Single Point Of Failure", we must provide high-availability for the load balancer, too. Therefore our load balancer will in fact consist out of two load balancer nodes that monitor each other using heartbeat, and if one load balancer fails, the other takes over silently.

PUBLIC TAGS related to tag server

benchmarker +   cross +   free +   gpl +   license +   open +   platform +   software +   source +   tester +  

Active users

kanzor
last mark : 09/10/2020 12:48

bamthomas
last mark : 19/01/2018 12:38

ghis
last mark : 11/01/2016 15:18

oseres
last mark : 29/08/2012 05:16

holyver
last mark : 12/03/2011 13:40

Xavier Lacot
last mark : 03/03/2011 14:52

brianwaustin
last mark : 14/12/2010 17:32

babgond
last mark : 21/07/2010 15:36

piouPiouM
last mark : 26/04/2010 13:13

astrochoupe
last mark : 12/03/2010 16:09

delavigne
last mark : 06/03/2010 23:00

greut
last mark : 11/09/2009 06:50

kemar
last mark : 10/07/2009 08:27

naudjf
last mark : 14/03/2009 11:36

vrossign
last mark : 22/01/2009 12:11

jean-gael
last mark : 09/12/2008 09:09

camel
last mark : 03/12/2008 09:01