From: hongbotian Date: Mon, 30 Nov 2015 07:58:25 +0000 (-0500) Subject: bottleneck testcase based on rubbos X-Git-Tag: brahmaputra.1.0~78 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?p=bottlenecks.git;a=commitdiff_plain;h=b6d3d6e668b793220f2d3af1bc3e828553dc3fe6 bottleneck testcase based on rubbos JIRA: BOTTLENECK-31 Change-Id: I35b1bcdca28c4e06e316143cc895b4cdf689d0d3 Signed-off-by: hongbotian --- diff --git a/rubbos/rubbos_scripts/1-1-1/1-1-1.xml b/rubbos/rubbos_scripts/1-1-1/1-1-1.xml new file mode 100644 index 00000000..07a64362 --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/1-1-1.xml @@ -0,0 +1,350 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + node1 + + + + + + + node2 + + + + + + + + + node3 + + + + + + + + + node4 + + + + + + + + + node5 + + + + + + + + + node6 + + + + + + + + + node7 + + + + + + + + + + + node8 + + + + + + + + + + + + + + node9 + + + + + + + + + + + + + diff --git a/rubbos/rubbos_scripts/1-1-1/apache_conf/httpd.conf b/rubbos/rubbos_scripts/1-1-1/apache_conf/httpd.conf new file mode 100644 index 00000000..fe3be7b9 --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/apache_conf/httpd.conf @@ -0,0 +1,1076 @@ + +# +# Based upon the NCSA server configuration files originally by Rob McCool. +# +# This is the main Apache server configuration file. It contains the +# configuration directives that give the server its instructions. +# See for detailed information about +# the directives. +# +# Do NOT simply read the instructions in here without understanding +# what they do. They're here only as hints or reminders. If you are unsure +# consult the online docs. You have been warned. +# +# The configuration directives are grouped into three basic sections: +# 1. Directives that control the operation of the Apache server process as a +# whole (the 'global environment'). +# 2. Directives that define the parameters of the 'main' or 'default' server, +# which responds to requests that aren't handled by a virtual host. +# These directives also provide default values for the settings +# of all virtual hosts. +# 3. Settings for virtual hosts, which allow Web requests to be sent to +# different IP addresses or hostnames and have them handled by the +# same Apache server process. +# +# Configuration and logfile names: If the filenames you specify for many +# of the server's control files begin with "/" (or "drive:/" for Win32), the +# server will use that explicit path. If the filenames do *not* begin +# with "/", the value of ServerRoot is prepended -- so "logs/foo.log" +# with ServerRoot set to "/mnt/elba/rubbos/apache2" will be interpreted by the +# server as "/mnt/elba/rubbos/apache2/logs/foo.log". +# + +### Section 1: Global Environment +# +# The directives in this section affect the overall operation of Apache, +# such as the number of concurrent requests it can handle or where it +# can find its configuration files. +# + +# +# ServerRoot: The top of the directory tree under which the server's +# configuration, error, and log files are kept. +# +# NOTE! If you intend to place this on an NFS (or otherwise network) +# mounted filesystem then please read the LockFile documentation (available +# at ); +# you will save yourself a lot of trouble. +# +# Do NOT add a slash at the end of the directory path. +# +#ServerRoot "/mnt/elba/rubbos/apache2" +ServerRoot "/bottlenecks/rubbos/app/apache2" + +# +# The accept serialization lock file MUST BE STORED ON A LOCAL DISK. +# + + +#LockFile logs/accept.lock + + + +# +# ScoreBoardFile: File used to store internal server process information. +# If unspecified (the default), the scoreboard will be stored in an +# anonymous shared memory segment, and will be unavailable to third-party +# applications. +# If specified, ensure that no two invocations of Apache share the same +# scoreboard file. The scoreboard file MUST BE STORED ON A LOCAL DISK. +# + + +#ScoreBoardFile logs/apache_runtime_status + + + + +# +# PidFile: The file in which the server should record its process +# identification number when it starts. +# + +PidFile logs/httpd.pid + + +# +# Timeout: The number of seconds before receives and sends time out. +# +Timeout 5 + +# +# KeepAlive: Whether or not to allow persistent connections (more than +# one request per connection). Set to "Off" to deactivate. +# +#KeepAlive On +KeepAlive Off + +# +# MaxKeepAliveRequests: The maximum number of requests to allow +# during a persistent connection. Set to 0 to allow an unlimited amount. +# We recommend you leave this number high, for maximum performance. +# +MaxKeepAliveRequests 100 + +# +# KeepAliveTimeout: Number of seconds to wait for the next request from the +# same client on the same connection. +# +KeepAliveTimeout 15 + +## +## Server-Pool Size Regulation (MPM specific) +## + +# prefork MPM +# StartServers: number of server processes to start +# MinSpareServers: minimum number of server processes which are kept spare +# MaxSpareServers: maximum number of server processes which are kept spare +# MaxClients: maximum number of server processes allowed to start +# MaxRequestsPerChild: maximum number of requests a server process serves + +StartServers 5 +MinSpareServers 5 +MaxSpareServers 10 +ServerLimit 4000 +MaxClients 4000 +MaxRequestsPerChild 0 + + +# worker MPM +# StartServers: initial number of server processes to start +# MaxClients: maximum number of simultaneous client connections +# MinSpareThreads: minimum number of worker threads which are kept spare +# MaxSpareThreads: maximum number of worker threads which are kept spare +# ThreadsPerChild: constant number of worker threads in each server process +# MaxRequestsPerChild: maximum number of requests a server process serves + +ServerLimit 200 +ThreadLimit 300 +StartServers 1 +MaxClients 300 +MinSpareThreads 5 +MaxSpareThreads 50 +ThreadsPerChild 150 +MaxRequestsPerChild 0 + + +# perchild MPM +# NumServers: constant number of server processes +# StartThreads: initial number of worker threads in each server process +# MinSpareThreads: minimum number of worker threads which are kept spare +# MaxSpareThreads: maximum number of worker threads which are kept spare +# MaxThreadsPerChild: maximum number of worker threads in each server process +# MaxRequestsPerChild: maximum number of connections per server process + +NumServers 5 +StartThreads 5 +MinSpareThreads 5 +MaxSpareThreads 10 +MaxThreadsPerChild 20 +MaxRequestsPerChild 0 + + +# WinNT MPM +# ThreadsPerChild: constant number of worker threads in the server process +# MaxRequestsPerChild: maximum number of requests a server process serves + +ThreadsPerChild 250 +MaxRequestsPerChild 0 + + +# BeOS MPM +# StartThreads: how many threads do we initially spawn? +# MaxClients: max number of threads we can have (1 thread == 1 client) +# MaxRequestsPerThread: maximum number of requests each thread will process + +StartThreads 10 +MaxClients 50 +MaxRequestsPerThread 10000 + + +# NetWare MPM +# ThreadStackSize: Stack size allocated for each worker thread +# StartThreads: Number of worker threads launched at server startup +# MinSpareThreads: Minimum number of idle threads, to handle request spikes +# MaxSpareThreads: Maximum number of idle threads +# MaxThreads: Maximum number of worker threads alive at the same time +# MaxRequestsPerChild: Maximum number of requests a thread serves. It is +# recommended that the default value of 0 be set for this +# directive on NetWare. This will allow the thread to +# continue to service requests indefinitely. + +ThreadStackSize 65536 +StartThreads 250 +MinSpareThreads 25 +MaxSpareThreads 250 +MaxThreads 1000 +MaxRequestsPerChild 0 +MaxMemFree 100 + + +# OS/2 MPM +# StartServers: Number of server processes to maintain +# MinSpareThreads: Minimum number of idle threads per process, +# to handle request spikes +# MaxSpareThreads: Maximum number of idle threads per process +# MaxRequestsPerChild: Maximum number of connections per server process + +StartServers 2 +MinSpareThreads 5 +MaxSpareThreads 10 +MaxRequestsPerChild 0 + + +# +# Listen: Allows you to bind Apache to specific IP addresses and/or +# ports, instead of the default. See also the +# directive. +# +# Change this to Listen on specific IP addresses as shown below to +# prevent Apache from glomming onto all bound IP addresses (0.0.0.0) +# +#Listen 12.34.56.78:80 + +Listen 8000 + +# +# Dynamic Shared Object (DSO) Support +# +# To be able to use the functionality of a module which was built as a DSO you +# have to place corresponding `LoadModule' lines at this location so the +# directives contained in it are actually available _before_ they are used. +# Statically compiled modules (those listed by `httpd -l') do not need +# to be loaded here. +# +# Example: +# LoadModule foo_module modules/mod_foo.so +# + +# +# ExtendedStatus controls whether Apache will generate "full" status +# information (ExtendedStatus On) or just basic information (ExtendedStatus +# Off) when the "server-status" handler is called. The default is Off. +# +#ExtendedStatus On + +### Section 2: 'Main' server configuration +# +# The directives in this section set up the values used by the 'main' +# server, which responds to any requests that aren't handled by a +# definition. These values also provide defaults for +# any containers you may define later in the file. +# +# All of these directives may appear inside containers, +# in which case these default settings will be overridden for the +# virtual host being defined. +# + + + +# +# If you wish httpd to run as a different user or group, you must run +# httpd as root initially and it will switch. +# +# User/Group: The name (or #number) of the user/group to run httpd as. +# . On SCO (ODT 3) use "User nouser" and "Group nogroup". +# . On HPUX you may not be able to use shared memory as nobody, and the +# suggested workaround is to create a user www and use that user. +# NOTE that some kernels refuse to setgid(Group) or semctl(IPC_SET) +# when the value of (unsigned)Group is above 60000; +# don't use Group #-1 on these systems! +# +User nobody +Group #-1 + + + +# +# ServerAdmin: Your address, where problems with the server should be +# e-mailed. This address appears on some server-generated pages, such +# as error documents. e.g. admin@your-domain.com +# +ServerAdmin you@example.com + +# +# ServerName gives the name and port that the server uses to identify itself. +# This can often be determined automatically, but we recommend you specify +# it explicitly to prevent problems during startup. +# +# If this is not set to valid DNS name for your host, server-generated +# redirections will not work. See also the UseCanonicalName directive. +# +# If your host doesn't have a registered DNS name, enter its IP address here. +# You will have to access it by its address anyway, and this will make +# redirections work in a sensible way. +# +#ServerName www.example.com:80 + +# +# UseCanonicalName: Determines how Apache constructs self-referencing +# URLs and the SERVER_NAME and SERVER_PORT variables. +# When set "Off", Apache will use the Hostname and Port supplied +# by the client. When set "On", Apache will use the value of the +# ServerName directive. +# +UseCanonicalName Off + +# +# DocumentRoot: The directory out of which you will serve your +# documents. By default, all requests are taken from this directory, but +# symbolic links and aliases may be used to point to other locations. +# +#DocumentRoot "/mnt/elba/rubbos/apache2/htdocs" +DocumentRoot "/bottlenecks/rubbos/app/apache2/htdocs" + +# +# Each directory to which Apache has access can be configured with respect +# to which services and features are allowed and/or disabled in that +# directory (and its subdirectories). +# +# First, we configure the "default" to be a very restrictive set of +# features. +# + + Options FollowSymLinks + AllowOverride None + + +# +# Note that from this point forward you must specifically allow +# particular features to be enabled - so if something's not working as +# you might expect, make sure that you have specifically enabled it +# below. +# + +# +# This should be changed to whatever you set DocumentRoot to. +# + + +# +# Possible values for the Options directive are "None", "All", +# or any combination of: +# Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews +# +# Note that "MultiViews" must be named *explicitly* --- "Options All" +# doesn't give it to you. +# +# The Options directive is both complicated and important. Please see +# http://httpd.apache.org/docs-2.0/mod/core.html#options +# for more information. +# + Options Indexes FollowSymLinks + +# +# AllowOverride controls what directives may be placed in .htaccess files. +# It can be "All", "None", or any combination of the keywords: +# Options FileInfo AuthConfig Limit +# + AllowOverride None + +# +# Controls who can get stuff from this server. +# + Order allow,deny + Allow from all + + + +# +# UserDir: The name of the directory that is appended onto a user's home +# directory if a ~user request is received. +# +UserDir public_html + +# +# Control access to UserDir directories. The following is an example +# for a site where these directories are restricted to read-only. +# +# +# AllowOverride FileInfo AuthConfig Limit Indexes +# Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec +# +# Order allow,deny +# Allow from all +# +# +# Order deny,allow +# Deny from all +# +# + +# +# DirectoryIndex: sets the file that Apache will serve if a directory +# is requested. +# +# The index.html.var file (a type-map) is used to deliver content- +# negotiated documents. The MultiViews Option can be used for the +# same purpose, but it is much slower. +# +DirectoryIndex index.html index.html.var + +# +# AccessFileName: The name of the file to look for in each directory +# for additional configuration directives. See also the AllowOverride +# directive. +# +AccessFileName .htaccess + +# +# The following lines prevent .htaccess and .htpasswd files from being +# viewed by Web clients. +# + + Order allow,deny + Deny from all + + +# +# TypesConfig describes where the mime.types file (or equivalent) is +# to be found. +# +TypesConfig conf/mime.types + +# +# DefaultType is the default MIME type the server will use for a document +# if it cannot otherwise determine one, such as from filename extensions. +# If your server contains mostly text or HTML documents, "text/plain" is +# a good value. If most of your content is binary, such as applications +# or images, you may want to use "application/octet-stream" instead to +# keep browsers from trying to display binary files as though they are +# text. +# +DefaultType text/plain + +# +# The mod_mime_magic module allows the server to use various hints from the +# contents of the file itself to determine its type. The MIMEMagicFile +# directive tells the module where the hint definitions are located. +# + + MIMEMagicFile conf/magic + + +# +# HostnameLookups: Log the names of clients or just their IP addresses +# e.g., www.apache.org (on) or 204.62.129.132 (off). +# The default is off because it'd be overall better for the net if people +# had to knowingly turn this feature on, since enabling it means that +# each client request will result in AT LEAST one lookup request to the +# nameserver. +# +HostnameLookups Off + +# +# EnableMMAP: Control whether memory-mapping is used to deliver +# files (assuming that the underlying OS supports it). +# The default is on; turn this off if you serve from NFS-mounted +# filesystems. On some systems, turning it off (regardless of +# filesystem) can improve performance; for details, please see +# http://httpd.apache.org/docs-2.0/mod/core.html#enablemmap +# +#EnableMMAP off + +# +# EnableSendfile: Control whether the sendfile kernel support is +# used to deliver files (assuming that the OS supports it). +# The default is on; turn this off if you serve from NFS-mounted +# filesystems. Please see +# http://httpd.apache.org/docs-2.0/mod/core.html#enablesendfile +# +#EnableSendfile off + +# +# ErrorLog: The location of the error log file. +# If you do not specify an ErrorLog directive within a +# container, error messages relating to that virtual host will be +# logged here. If you *do* define an error logfile for a +# container, that host's errors will be logged there and not here. +# +ErrorLog logs/error_log + +# +# LogLevel: Control the number of messages logged to the error_log. +# Possible values include: debug, info, notice, warn, error, crit, +# alert, emerg. +# +LogLevel warn + +# +# The following directives define some format nicknames for use with +# a CustomLog directive (see below). +# +LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined +LogFormat "%h %l %u %t \"%r\" %>s %b" common +LogFormat "%{Referer}i -> %U" referer +LogFormat "%{User-agent}i" agent + +# You need to enable mod_logio.c to use %I and %O +#LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio + +# +# The location and format of the access logfile (Common Logfile Format). +# If you do not define any access logfiles within a +# container, they will be logged here. Contrariwise, if you *do* +# define per- access logfiles, transactions will be +# logged therein and *not* in this file. +# +CustomLog logs/access_log common + +# +# If you would like to have agent and referer logfiles, uncomment the +# following directives. +# +#CustomLog logs/referer_log referer +#CustomLog logs/agent_log agent + +# +# If you prefer a single logfile with access, agent, and referer information +# (Combined Logfile Format) you can use the following directive. +# +#CustomLog logs/access_log combined + +# +# ServerTokens +# This directive configures what you return as the Server HTTP response +# Header. The default is 'Full' which sends information about the OS-Type +# and compiled in modules. +# Set to one of: Full | OS | Minor | Minimal | Major | Prod +# where Full conveys the most information, and Prod the least. +# +ServerTokens Full + +# +# Optionally add a line containing the server version and virtual host +# name to server-generated pages (internal error documents, FTP directory +# listings, mod_status and mod_info output etc., but not CGI generated +# documents or custom error documents). +# Set to "EMail" to also include a mailto: link to the ServerAdmin. +# Set to one of: On | Off | EMail +# +ServerSignature On + +# +# Aliases: Add here as many aliases as you need (with no limit). The format is +# Alias fakename realname +# +# Note that if you include a trailing / on fakename then the server will +# require it to be present in the URL. So "/icons" isn't aliased in this +# example, only "/icons/". If the fakename is slash-terminated, then the +# realname must also be slash terminated, and if the fakename omits the +# trailing slash, the realname must also omit it. +# +# We include the /icons/ alias for FancyIndexed directory listings. If you +# do not use FancyIndexing, you may comment this out. +# +Alias /icons/ "/bottlenecks/rubbos/app/apache2/icons/" + + + Options Indexes MultiViews + AllowOverride None + Order allow,deny + Allow from all + + +# +# This should be changed to the ServerRoot/manual/. The alias provides +# the manual, even if you choose to move your DocumentRoot. You may comment +# this out if you do not care for the documentation. +# +AliasMatch ^/manual(?:/(?:de|en|es|fr|ja|ko|ru))?(/.*)?$ "/bottlenecks/rubbos/app/apache2/manual$1" + + + Options Indexes + AllowOverride None + Order allow,deny + Allow from all + + + SetHandler type-map + + + SetEnvIf Request_URI ^/manual/(de|en|es|fr|ja|ko|ru)/ prefer-language=$1 + RedirectMatch 301 ^/manual(?:/(de|en|es|fr|ja|ko|ru)){2,}(/.*)?$ /manual/$1$2 + + +# +# ScriptAlias: This controls which directories contain server scripts. +# ScriptAliases are essentially the same as Aliases, except that +# documents in the realname directory are treated as applications and +# run by the server when requested rather than as documents sent to the client. +# The same rules about trailing "/" apply to ScriptAlias directives as to +# Alias. +# +ScriptAlias /cgi-bin/ "/bottlenecks/rubbos/app/apache2/cgi-bin/" + + +# +# Additional to mod_cgid.c settings, mod_cgid has Scriptsock +# for setting UNIX socket for communicating with cgid. +# +#Scriptsock logs/cgisock + + +# +# "/mnt/elba/rubbos/apache2/cgi-bin" should be changed to whatever your ScriptAliased +# CGI directory exists, if you have that configured. +# + + AllowOverride None + Options None + Order allow,deny + Allow from all + + +# +# Redirect allows you to tell clients about documents which used to exist in +# your server's namespace, but do not anymore. This allows you to tell the +# clients where to look for the relocated document. +# Example: +# Redirect permanent /foo http://www.example.com/bar + +# +# Directives controlling the display of server-generated directory listings. +# + +# +# IndexOptions: Controls the appearance of server-generated directory +# listings. +# +IndexOptions FancyIndexing VersionSort + +# +# AddIcon* directives tell the server which icon to show for different +# files or filename extensions. These are only displayed for +# FancyIndexed directories. +# +AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip + +AddIconByType (TXT,/icons/text.gif) text/* +AddIconByType (IMG,/icons/image2.gif) image/* +AddIconByType (SND,/icons/sound2.gif) audio/* +AddIconByType (VID,/icons/movie.gif) video/* + +AddIcon /icons/binary.gif .bin .exe +AddIcon /icons/binhex.gif .hqx +AddIcon /icons/tar.gif .tar +AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv +AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip +AddIcon /icons/a.gif .ps .ai .eps +AddIcon /icons/layout.gif .html .shtml .htm .pdf +AddIcon /icons/text.gif .txt +AddIcon /icons/c.gif .c +AddIcon /icons/p.gif .pl .py +AddIcon /icons/f.gif .for +AddIcon /icons/dvi.gif .dvi +AddIcon /icons/uuencoded.gif .uu +AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl +AddIcon /icons/tex.gif .tex +AddIcon /icons/bomb.gif core + +AddIcon /icons/back.gif .. +AddIcon /icons/hand.right.gif README +AddIcon /icons/folder.gif ^^DIRECTORY^^ +AddIcon /icons/blank.gif ^^BLANKICON^^ + +# +# DefaultIcon is which icon to show for files which do not have an icon +# explicitly set. +# +DefaultIcon /icons/unknown.gif + +# +# AddDescription allows you to place a short description after a file in +# server-generated indexes. These are only displayed for FancyIndexed +# directories. +# Format: AddDescription "description" filename +# +#AddDescription "GZIP compressed document" .gz +#AddDescription "tar archive" .tar +#AddDescription "GZIP compressed tar archive" .tgz + +# +# ReadmeName is the name of the README file the server will look for by +# default, and append to directory listings. +# +# HeaderName is the name of a file which should be prepended to +# directory indexes. +ReadmeName README.html +HeaderName HEADER.html + +# +# IndexIgnore is a set of filenames which directory indexing should ignore +# and not include in the listing. Shell-style wildcarding is permitted. +# +IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t + +# +# DefaultLanguage and AddLanguage allows you to specify the language of +# a document. You can then use content negotiation to give a browser a +# file in a language the user can understand. +# +# Specify a default language. This means that all data +# going out without a specific language tag (see below) will +# be marked with this one. You probably do NOT want to set +# this unless you are sure it is correct for all cases. +# +# * It is generally better to not mark a page as +# * being a certain language than marking it with the wrong +# * language! +# +# DefaultLanguage nl +# +# Note 1: The suffix does not have to be the same as the language +# keyword --- those with documents in Polish (whose net-standard +# language code is pl) may wish to use "AddLanguage pl .po" to +# avoid the ambiguity with the common suffix for perl scripts. +# +# Note 2: The example entries below illustrate that in some cases +# the two character 'Language' abbreviation is not identical to +# the two character 'Country' code for its country, +# E.g. 'Danmark/dk' versus 'Danish/da'. +# +# Note 3: In the case of 'ltz' we violate the RFC by using a three char +# specifier. There is 'work in progress' to fix this and get +# the reference data for rfc1766 cleaned up. +# +# Catalan (ca) - Croatian (hr) - Czech (cs) - Danish (da) - Dutch (nl) +# English (en) - Esperanto (eo) - Estonian (et) - French (fr) - German (de) +# Greek-Modern (el) - Hebrew (he) - Italian (it) - Japanese (ja) +# Korean (ko) - Luxembourgeois* (ltz) - Norwegian Nynorsk (nn) +# Norwegian (no) - Polish (pl) - Portugese (pt) +# Brazilian Portuguese (pt-BR) - Russian (ru) - Swedish (sv) +# Simplified Chinese (zh-CN) - Spanish (es) - Traditional Chinese (zh-TW) +# +AddLanguage ca .ca +AddLanguage cs .cz .cs +AddLanguage da .dk +AddLanguage de .de +AddLanguage el .el +AddLanguage en .en +AddLanguage eo .eo +AddLanguage es .es +AddLanguage et .et +AddLanguage fr .fr +AddLanguage he .he +AddLanguage hr .hr +AddLanguage it .it +AddLanguage ja .ja +AddLanguage ko .ko +AddLanguage ltz .ltz +AddLanguage nl .nl +AddLanguage nn .nn +AddLanguage no .no +AddLanguage pl .po +AddLanguage pt .pt +AddLanguage pt-BR .pt-br +AddLanguage ru .ru +AddLanguage sv .sv +AddLanguage zh-CN .zh-cn +AddLanguage zh-TW .zh-tw + +# +# LanguagePriority allows you to give precedence to some languages +# in case of a tie during content negotiation. +# +# Just list the languages in decreasing order of preference. We have +# more or less alphabetized them here. You probably want to change this. +# +LanguagePriority en ca cs da de el eo es et fr he hr it ja ko ltz nl nn no pl pt pt-BR ru sv zh-CN zh-TW + +# +# ForceLanguagePriority allows you to serve a result page rather than +# MULTIPLE CHOICES (Prefer) [in case of a tie] or NOT ACCEPTABLE (Fallback) +# [in case no accepted languages matched the available variants] +# +ForceLanguagePriority Prefer Fallback + +# +# Commonly used filename extensions to character sets. You probably +# want to avoid clashes with the language extensions, unless you +# are good at carefully testing your setup after each change. +# See http://www.iana.org/assignments/character-sets for the +# official list of charset names and their respective RFCs. +# +AddCharset ISO-8859-1 .iso8859-1 .latin1 +AddCharset ISO-8859-2 .iso8859-2 .latin2 .cen +AddCharset ISO-8859-3 .iso8859-3 .latin3 +AddCharset ISO-8859-4 .iso8859-4 .latin4 +AddCharset ISO-8859-5 .iso8859-5 .latin5 .cyr .iso-ru +AddCharset ISO-8859-6 .iso8859-6 .latin6 .arb +AddCharset ISO-8859-7 .iso8859-7 .latin7 .grk +AddCharset ISO-8859-8 .iso8859-8 .latin8 .heb +AddCharset ISO-8859-9 .iso8859-9 .latin9 .trk +AddCharset ISO-2022-JP .iso2022-jp .jis +AddCharset ISO-2022-KR .iso2022-kr .kis +AddCharset ISO-2022-CN .iso2022-cn .cis +AddCharset Big5 .Big5 .big5 +# For russian, more than one charset is used (depends on client, mostly): +AddCharset WINDOWS-1251 .cp-1251 .win-1251 +AddCharset CP866 .cp866 +AddCharset KOI8-r .koi8-r .koi8-ru +AddCharset KOI8-ru .koi8-uk .ua +AddCharset ISO-10646-UCS-2 .ucs2 +AddCharset ISO-10646-UCS-4 .ucs4 +AddCharset UTF-8 .utf8 + +# The set below does not map to a specific (iso) standard +# but works on a fairly wide range of browsers. Note that +# capitalization actually matters (it should not, but it +# does for some browsers). +# +# See http://www.iana.org/assignments/character-sets +# for a list of sorts. But browsers support few. +# +AddCharset GB2312 .gb2312 .gb +AddCharset utf-7 .utf7 +AddCharset utf-8 .utf8 +AddCharset big5 .big5 .b5 +AddCharset EUC-TW .euc-tw +AddCharset EUC-JP .euc-jp +AddCharset EUC-KR .euc-kr +AddCharset shift_jis .sjis + +# +# AddType allows you to add to or override the MIME configuration +# file mime.types for specific file types. +# +#AddType application/x-tar .tgz +# +# AddEncoding allows you to have certain browsers uncompress +# information on the fly. Note: Not all browsers support this. +# Despite the name similarity, the following Add* directives have nothing +# to do with the FancyIndexing customization directives above. +# +#AddEncoding x-compress .Z +#AddEncoding x-gzip .gz .tgz +# +# If the AddEncoding directives above are commented-out, then you +# probably should define those extensions to indicate media types: +# +AddType application/x-compress .Z +AddType application/x-gzip .gz .tgz + +# +# AddHandler allows you to map certain file extensions to "handlers": +# actions unrelated to filetype. These can be either built into the server +# or added with the Action directive (see below) +# +# To use CGI scripts outside of ScriptAliased directories: +# (You will also need to add "ExecCGI" to the "Options" directive.) +# +#AddHandler cgi-script .cgi + +# +# For files that include their own HTTP headers: +# +#AddHandler send-as-is asis + +# +# For server-parsed imagemap files: +# +#AddHandler imap-file map + +# +# For type maps (negotiated resources): +# (This is enabled by default to allow the Apache "It Worked" page +# to be distributed in multiple languages.) +# +AddHandler type-map var + +# +# Filters allow you to process content before it is sent to the client. +# +# To parse .shtml files for server-side includes (SSI): +# (You will also need to add "Includes" to the "Options" directive.) +# +#AddType text/html .shtml +#AddOutputFilter INCLUDES .shtml + +# +# Action lets you define media types that will execute a script whenever +# a matching file is called. This eliminates the need for repeated URL +# pathnames for oft-used CGI file processors. +# Format: Action media/type /cgi-script/location +# Format: Action handler-name /cgi-script/location +# + +# +# Customizable error responses come in three flavors: +# 1) plain text 2) local redirects 3) external redirects +# +# Some examples: +#ErrorDocument 500 "The server made a boo boo." +#ErrorDocument 404 /missing.html +#ErrorDocument 404 "/cgi-bin/missing_handler.pl" +#ErrorDocument 402 http://www.example.com/subscription_info.html +# + +# +# Putting this all together, we can internationalize error responses. +# +# We use Alias to redirect any /error/HTTP_.html.var response to +# our collection of by-error message multi-language collections. We use +# includes to substitute the appropriate text. +# +# You can modify the messages' appearance without changing any of the +# default HTTP_.html.var files by adding the line: +# +# Alias /error/include/ "/your/include/path/" +# +# which allows you to create your own set of files by starting with the +# /mnt/elba/rubbos/apache2/error/include/ files and copying them to /your/include/path/, +# even on a per-VirtualHost basis. The default include files will display +# your Apache version number and your ServerAdmin email address regardless +# of the setting of ServerSignature. +# +# The internationalized error documents require mod_alias, mod_include +# and mod_negotiation. To activate them, uncomment the following 30 lines. + +# Alias /error/ "/mnt/elba/rubbos/apache2/error/" +# +# +# AllowOverride None +# Options IncludesNoExec +# AddOutputFilter Includes html +# AddHandler type-map var +# Order allow,deny +# Allow from all +# LanguagePriority en cs de es fr it ja ko nl pl pt-br ro sv tr +# ForceLanguagePriority Prefer Fallback +# +# +# ErrorDocument 400 /error/HTTP_BAD_REQUEST.html.var +# ErrorDocument 401 /error/HTTP_UNAUTHORIZED.html.var +# ErrorDocument 403 /error/HTTP_FORBIDDEN.html.var +# ErrorDocument 404 /error/HTTP_NOT_FOUND.html.var +# ErrorDocument 405 /error/HTTP_METHOD_NOT_ALLOWED.html.var +# ErrorDocument 408 /error/HTTP_REQUEST_TIME_OUT.html.var +# ErrorDocument 410 /error/HTTP_GONE.html.var +# ErrorDocument 411 /error/HTTP_LENGTH_REQUIRED.html.var +# ErrorDocument 412 /error/HTTP_PRECONDITION_FAILED.html.var +# ErrorDocument 413 /error/HTTP_REQUEST_ENTITY_TOO_LARGE.html.var +# ErrorDocument 414 /error/HTTP_REQUEST_URI_TOO_LARGE.html.var +# ErrorDocument 415 /error/HTTP_UNSUPPORTED_MEDIA_TYPE.html.var +# ErrorDocument 500 /error/HTTP_INTERNAL_SERVER_ERROR.html.var +# ErrorDocument 501 /error/HTTP_NOT_IMPLEMENTED.html.var +# ErrorDocument 502 /error/HTTP_BAD_GATEWAY.html.var +# ErrorDocument 503 /error/HTTP_SERVICE_UNAVAILABLE.html.var +# ErrorDocument 506 /error/HTTP_VARIANT_ALSO_VARIES.html.var + + +# +# The following directives modify normal HTTP response behavior to +# handle known problems with browser implementations. +# +BrowserMatch "Mozilla/2" nokeepalive +BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0 +BrowserMatch "RealPlayer 4\.0" force-response-1.0 +BrowserMatch "Java/1\.0" force-response-1.0 +BrowserMatch "JDK/1\.0" force-response-1.0 + +# +# The following directive disables redirects on non-GET requests for +# a directory that does not include the trailing slash. This fixes a +# problem with Microsoft WebFolders which does not appropriately handle +# redirects for folders with DAV methods. +# Same deal with Apple's DAV filesystem and Gnome VFS support for DAV. +# +BrowserMatch "Microsoft Data Access Internet Publishing Provider" redirect-carefully +BrowserMatch "^WebDrive" redirect-carefully +BrowserMatch "^WebDAVFS/1.[012]" redirect-carefully +BrowserMatch "^gnome-vfs" redirect-carefully + +# +# Allow server status reports generated by mod_status, +# with the URL of http://servername/server-status +# Change the ".example.com" to match your domain to enable. +# +# +# SetHandler server-status +# Order deny,allow +# Deny from all +# Allow from .example.com +# + +# +# Allow remote server configuration reports, with the URL of +# http://servername/server-info (requires that mod_info.c be loaded). +# Change the ".example.com" to match your domain to enable. +# +# +# SetHandler server-info +# Order deny,allow +# Deny from all +# Allow from .example.com +# + + +# +# Bring in additional module-specific configurations +# + + Include conf/ssl.conf + + + +### Section 3: Virtual Hosts +# +# VirtualHost: If you want to maintain multiple domains/hostnames on your +# machine you can setup VirtualHost containers for them. Most configurations +# use only name-based virtual hosts so the server doesn't need to worry about +# IP addresses. This is indicated by the asterisks in the directives below. +# +# Please see the documentation at +# +# for further details before you try to setup virtual hosts. +# +# You may use the command line option '-S' to verify your virtual host +# configuration. + +# +# Use name-based virtual hosting. +# +#NameVirtualHost *:80 + +# +# VirtualHost example: +# Almost any Apache directive may go into a VirtualHost container. +# The first VirtualHost section is used for requests without a known +# server name. +# +# +# ServerAdmin webmaster@dummy-host.example.com +# DocumentRoot /www/docs/dummy-host.example.com +# ServerName dummy-host.example.com +# ErrorLog logs/dummy-host.example.com-error_log +# CustomLog logs/dummy-host.example.com-access_log common +# + + + +LoadModule jk_module "/bottlenecks/rubbos/app/apache2/modules/mod_jk.so" + +# Where to find workers.properties +JkWorkersFile /bottlenecks/rubbos/app/apache2/conf/workers.properties + +# Where to put jk logs +JkLogFile /bottlenecks/rubbos/app/apache2/logs/mod_jk.log + +# Set the jk log level [debug/error/info] +JkLogLevel info + +# Select the log format +JkLogStampFormat "[%a %b %d %H:%M:%S %Y] " + +# JkOptions indicate to send SSL KEY SIZE, +JkOptions +ForwardKeySize +ForwardURICompat -ForwardDirectories + +# JkRequestLogFormat set the request format +JkRequestLogFormat "%w %V %T" + +# Globally deny access to the WEB-INF directory + + AllowOverride None + deny from all + + + +JkMount /*/servlet/* worker1 +JkMount /*.jsp worker1 +#JkMount /rubbos worker1 +#JkMount /rubbos/* worker1 + + +ServerName localhost diff --git a/rubbos/rubbos_scripts/1-1-1/apache_conf/workers.properties b/rubbos/rubbos_scripts/1-1-1/apache_conf/workers.properties new file mode 100644 index 00000000..df4134bd --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/apache_conf/workers.properties @@ -0,0 +1,215 @@ + +# workers.properties - +# +# This file provides jk derived plugins with the needed information to +# connect to the different tomcat workers. Note that the distributed +# version of this file requires modification before it is usable by a +# plugin. +# +# As a general note, the characters $( and ) are used internally to define +# macros. Do not use them in your own configuration!!! +# +# Whenever you see a set of lines such as: +# x=value +# y=$(x)\something +# +# the final value for y will be value\something +# +# Normaly all you will need to do is un-comment and modify the first three +# properties, i.e. workers.tomcat_home, workers.java_home and ps. +# Most of the configuration is derived from these. +# +# When you are done updating workers.tomcat_home, workers.java_home and ps +# you should have 3 workers configured: +# +# - An ajp12 worker that connects to localhost:8007 +# - An ajp13 worker that connects to localhost:8009 +# - A jni inprocess worker. +# - A load balancer worker +# +# However by default the plugins will only use the ajp12 worker. To have +# the plugins use other workers you should modify the worker.list property. +# +# + +# OPTIONS ( very important for jni mode ) + +# +# workers.tomcat_home should point to the location where you +# installed tomcat. This is where you have your conf, webapps and lib +# directories. +# +#workers.tomcat_home=/mnt/elba/rubbos/apache-tomcat-5.5.17 +workers.tomcat_home=/bottlenecks/rubbos/app/apache-tomcat-5.5.17 + +# +# workers.java_home should point to your Java installation. Normally +# you should have a bin and lib directories beneath it. +# +#workers.java_home=/mnt/elba/rubbos/jdk1.6.0_27 +workers.java_home=/bottlenecks/rubbos/app/jdk1.6.0_27 + +# +# You should configure your environment slash... ps=\ on NT and / on UNIX +# and maybe something different elsewhere. +# +ps=/ + +# +#------ ADVANCED MODE ------------------------------------------------ +#--------------------------------------------------------------------- +# + +# +#------ DEFAULT worket list ------------------------------------------ +#--------------------------------------------------------------------- +# +# +# The workers that your plugins should create and work with +# +# Add 'inprocess' if you want JNI connector +worker.list=worker1 +# , inprocess + + +worker.TOMCAT1.port=8009 +worker.TOMCAT1.host=node8 +worker.TOMCAT1.type=ajp13 +worker.TOMCAT1.lbfactor=1 + + +# +#------ DEFAULT ajp12 WORKER DEFINITION ------------------------------ +#--------------------------------------------------------------------- +# + +# +# Defining a worker named ajp12 and of type ajp12 +# Note that the name and the type do not have to match. +# +#worker.ajp12.port=8007 +#worker.ajp12.host=localhost +#worker.ajp12.type=ajp12 +# +# Specifies the load balance factor when used with +# a load balancing worker. +# Note: +# ----> lbfactor must be > 0 +# ----> Low lbfactor means less work done by the worker. +#worker.ajp12.lbfactor=1 + +# +#------ DEFAULT ajp13 WORKER DEFINITION ------------------------------ +#--------------------------------------------------------------------- +# + +# +# Defining a worker named ajp13 and of type ajp13 +# Note that the name and the type do not have to match. +# +#worker.ajp13.port=8009 +#worker.ajp13.host=node60.rubbostest.Infosphere.emulab.net +#worker.ajp13.type=ajp13 +# +# Specifies the load balance factor when used with +# a load balancing worker. +# Note: +# ----> lbfactor must be > 0 +# ----> Low lbfactor means less work done by the worker. +#worker.ajp13.lbfactor=1 + +# +# Specify the size of the open connection cache. +#worker.ajp13.cachesize + +# +#------ DEFAULT LOAD BALANCER WORKER DEFINITION ---------------------- +#--------------------------------------------------------------------- +# + +# +# The router (type lb) workers perform wighted round-robin +# load balancing with sticky sessions. +# Note: +# ----> If a worker dies, the load balancer will check its state +# once in a while. Until then all work is redirected to peer +# workers. +worker.worker1.type=lb +worker.worker1.balance_workers=TOMCAT1 +worker.worker1.sticky_session=True +worker.worker1.method=Session + +# +#------ DEFAULT JNI WORKER DEFINITION--------------------------------- +#--------------------------------------------------------------------- +# + +# +# Defining a worker named inprocess and of type jni +# Note that the name and the type do not have to match. +# +worker.inprocess.type=jni + +# +#------ CLASSPATH DEFINITION ----------------------------------------- +#--------------------------------------------------------------------- +# + +# +# Additional class path components. +# +worker.inprocess.class_path=$(workers.tomcat_home)$(ps)lib$(ps)tomcat.jar + +# +# Setting the command line for tomcat. +# Note: The cmd_line string may not contain spaces. +# +worker.inprocess.cmd_line=start + +# Not needed, but can be customized. +#worker.inprocess.cmd_line=-config +#worker.inprocess.cmd_line=$(workers.tomcat_home)$(ps)conf$(ps)server.xml +#worker.inprocess.cmd_line=-home +#worker.inprocess.cmd_line=$(workers.tomcat_home) + +# +# The JVM that we are about to use +# +# This is for Java2 +# +# Windows +#worker.inprocess.jvm_lib=$(workers.java_home)$(ps)jre$(ps)bin$(ps)classic$(ps)jvm.dll +# IBM JDK1.3 +#worker.inprocess.jvm_lib=$(workers.java_home)$(ps)jre$(ps)bin$(ps)classic$(ps)libjvm.so +# Unix - Sun VM or blackdown +#worker.inprocess.jvm_lib=$(workers.java_home)$(ps)jre$(ps)lib$(ps)i386$(ps)classic$(ps)libjvm.so +worker.inprocess.jvm_lib=$(workers.java_home)$(ps)jre$(ps)lib$(ps)i386$(ps)server$(ps)libjvm.so + +# +# And this is for jdk1.1.X +# +#worker.inprocess.jvm_lib=$(workers.java_home)$(ps)bin$(ps)javai.dll + + +# +# Setting the place for the stdout and stderr of tomcat +# +worker.inprocess.stdout=$(workers.tomcat_home)$(ps)logs$(ps)inprocess.stdout +worker.inprocess.stderr=$(workers.tomcat_home)$(ps)logs$(ps)inprocess.stderr + +# +# Setting the tomcat.home Java property +# +#worker.inprocess.sysprops=tomcat.home=$(workers.tomcat_home) + +# +# Java system properties +# +# worker.inprocess.sysprops=java.compiler=NONE +# worker.inprocess.sysprops=myprop=mypropvalue + +# +# Additional path components. +# +# worker.inprocess.ld_path=d:$(ps)SQLLIB$(ps)bin +# diff --git a/rubbos/rubbos_scripts/1-1-1/mysql_conf/my.cnf b/rubbos/rubbos_scripts/1-1-1/mysql_conf/my.cnf new file mode 100644 index 00000000..af273226 --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/mysql_conf/my.cnf @@ -0,0 +1,6 @@ + +[client] +port = 3306 + +[mysqld] +server-id=1 diff --git a/rubbos/rubbos_scripts/1-1-1/nsFile.txt b/rubbos/rubbos_scripts/1-1-1/nsFile.txt new file mode 100644 index 00000000..00c73f3d --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/nsFile.txt @@ -0,0 +1,48 @@ + +set ns [new Simulator] +source tb_compat.tcl + + +set node1 [$ns node] +tb-set-node-os $node1 FC4-RUBBoS +tb-set-hardware $node1 pc3000 + +set node2 [$ns node] +tb-set-node-os $node2 FC4-RUBBoS +tb-set-hardware $node2 pc3000 + +set node3 [$ns node] +tb-set-node-os $node3 FC4-RUBBoS +tb-set-hardware $node3 pc3000 + +set node4 [$ns node] +tb-set-node-os $node4 FC4-RUBBoS +tb-set-hardware $node4 pc3000 + +set node5 [$ns node] +tb-set-node-os $node5 FC4-RUBBoS +tb-set-hardware $node5 pc3000 + +set node6 [$ns node] +tb-set-node-os $node6 FC4-RUBBoS +tb-set-hardware $node6 pc3000 + +set node7 [$ns node] +tb-set-node-os $node7 FC4-RUBBoS +tb-set-hardware $node7 pc3000 + +set node8 [$ns node] +tb-set-node-os $node8 FC4-RUBBoS +tb-set-hardware $node8 pc3000 + +set node9 [$ns node] +tb-set-node-os $node9 FC4-RUBBoS +tb-set-hardware $node9 pc3000 + +set lan1 [$ns make-lan "$node1 $node2 $node3 $node4 $node5 $node6 $node7 " 1000Mb 0ms] +set lan2 [$ns make-lan "$node7 $node8 " 1000Mb 0ms] +set lan4 [$ns make-lan "$node8 $node9 " 1000Mb 0ms] + + +$ns rtproto Static +$ns run diff --git a/rubbos/rubbos_scripts/1-1-1/rubbos_conf/Config.java b/rubbos/rubbos_scripts/1-1-1/rubbos_conf/Config.java new file mode 100644 index 00000000..8956b506 --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/rubbos_conf/Config.java @@ -0,0 +1,68 @@ + +/** + * RUBBoS: Rice University Bulletin Board System. + * Copyright (C) 2001-2004 Rice University and French National Institute For + * Research In Computer Science And Control (INRIA). + * Contact: jmob@objectweb.org + * + * This library is free software; you can redistribute it and/or modify it + * under the terms of the GNU Lesser General Public License as published by the + * Free Software Foundation; either version 2.1 of the License, or any later + * version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License + * for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with this library; if not, write to the Free Software Foundation, + * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. + * + * Initial developer(s): Emmanuel Cecchet. + * Contributor(s): ______________________. + */ + +package edu.rice.rubbos.servlets; + +/** + * This class contains the configuration for the servlets like the path of HTML + * files, etc ... + * + * @author Emmanuel Cecchet and Julie Marguerite + * @version 1.0 + */ + +public class Config +{ + + /** + * Creates a new Config instance. + */ + Config() + { + } + + + public static final String HTMLFilesPath = "/bottlenecks/rubbos/app/RUBBoS/Servlet_HTML"; + public static final String[] DatabaseProperties = {"/bottlenecks/rubbos/app/RUBBoS/Servlets/mysql.properties"}; + public static final int DatabasePropertiesSize = 1; + + public static final int AboutMePoolSize = 10; + public static final int BrowseCategoriesPoolSize = 6; + public static final int BrowseRegionsPoolSize = 6; + public static final int BuyNowPoolSize = 4; + public static final int PutBidPoolSize = 8; + public static final int PutCommentPoolSize = 2; + public static final int RegisterItemPoolSize = 2; + public static final int RegisterUserPoolSize = 2; + public static final int SearchItemsByCategoryPoolSize = 15; + public static final int SearchItemsByRegionPoolSize = 20; + public static final int StoreBidPoolSize = 8; + public static final int StoreBuyNowPoolSize = 4; + public static final int StoreCommentPoolSize = 2; + public static final int ViewBidHistoryPoolSize = 4; + public static final int ViewItemPoolSize = 20; + public static final int ViewUserInfoPoolSize = 4; +} diff --git a/rubbos/rubbos_scripts/1-1-1/rubbos_conf/Makefile b/rubbos/rubbos_scripts/1-1-1/rubbos_conf/Makefile new file mode 100644 index 00000000..565b22be --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/rubbos_conf/Makefile @@ -0,0 +1,80 @@ + + +########################### +# RUBBoS Makefile # +########################### + +include config.mk + +############################## +# Environment variables # +############################## + +JAVA = $(JAVA_HOME)/bin/java +JAVAC = $(JAVA_HOME)/bin/javac +JAVACOPTS = -deprecation +JAVACC = $(JAVAC) $(JAVACOPTS) +RMIC = $(JAVA_HOME)/bin/rmic +RMIREGISTRY= $(JAVA_HOME)/bin/rmiregistry +#CLASSPATH = .:$(J2EE_HOME)/lib/j2ee.jar:$(JAVA_HOME)/jre/lib/rt.jar:$TOMCATservlet.jar +CLASSPATH = .:$(J2EE_HOME)/lib/j2ee.jar:$(JAVA_HOME)/jre/lib/rt.jar +JAVADOC = $(JAVA_HOME)/javadoc + + +######################### +# Servlets version # +######################### +#ServletPrinter +Servlets = Config TimeManagement BrowseCategories Auth RegisterUser RubbosHttpServlet BrowseRegions SearchItemsByCategory SearchItemsByRegion ViewItem ViewBidHistory ViewUserInfo SellItemForm RegisterItem PutCommentAuth PutComment StoreComment BuyNowAuth BuyNow StoreBuyNow PutBidAuth PutBid StoreBid AboutMe + +all_servlets_sources = $(addprefix edu/rice/rubbos/servlets/, $(addsuffix .java, $(Servlets))) +all_servlets_obj = $(addprefix edu/rice/rubbos/servlets/, $(addsuffix .class, $(Servlets))) + +servlets: $(all_servlets_obj) + +clean_servlets: + rm -f edu/rice/rubbos/servlets/*.class + +#################### +# Client # +#################### + +ClientFiles = URLGenerator URLGeneratorPHP RUBBoSProperties Stats \ + TransitionTable ClientEmulator UserSession + +all_client_sources = $(addprefix edu/rice/rubbos/client/, $(addsuffix .java, $(ClientFiles))) +all_client_obj = $(addprefix edu/rice/rubbos/client/, $(addsuffix .class, $(ClientFiles))) edu/rice/rubbos/beans/TimeManagement.class + +client: $(all_client_obj) + +initDB: + ${JAVA} -classpath .:./database edu.rice.rubbos.client.InitDB ${PARAM} + +emulator: + ${JAVA} -classpath Client:Client/rubbos_client.jar:. -Xmx1300m -Dhttp.keepAlive=true -Dhttp.maxConnections=1000000 edu.rice.rubbos.client.ClientEmulator + +emulatorDebug: + ${JAVA} -classpath Client:Client/rubbos_client.jar:. -Xdebug -Xrunjdwp:transport=dt_socket,address=8000,server=y,suspend=n -Xmx1300m -Dhttp.keepAlive=true -Dhttp.maxConnections=1000000 edu.rice.rubbos.client.ClientEmulator + + +############################ +# Global rules # +############################ + + +all: beans ejb_servlets client javadoc flush_cache + +world: all servlets + +javadoc : + ${JAVADOC} -d ./doc/api -bootclasspath ${CLASSPATH} -version -author -windowtitle "RUBBoS API" -header "RUBBoS (C)2001 Rice University/INRIA
" edu.rice.rubbos.beans edu.rice.rubbos.beans.servlets edu.rice.rubbos.client + +clean: + rm -f core edu/rice/rubbos/beans/*.class edu/rice/rubbos/beans/JOnAS* edu/rice/rubbos/beans/servlets/*.class edu/rice/rubbos/client/*.class edu/rice/rubbos/servlets/*.class + +%.class: %.java + ${JAVACC} -classpath ${CLASSPATH} $< + +flush_cache: bench/flush_cache.c + gcc bench/flush_cache.c -o bench/flush_cache + diff --git a/rubbos/rubbos_scripts/1-1-1/rubbos_conf/build.properties b/rubbos/rubbos_scripts/1-1-1/rubbos_conf/build.properties new file mode 100644 index 00000000..dc3fbaaa --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/rubbos_conf/build.properties @@ -0,0 +1,8 @@ + +src = . +dist =. +classes.dir = ./build +web.dir = ../Servlet_HTML + +j2ee = /bottlenecks/rubbos/app/j2sdkee1.3.1 +mysql_connector = ./mysql-connector-java-5.1.7-bin.jar diff --git a/rubbos/rubbos_scripts/1-1-1/rubbos_conf/build.xml b/rubbos/rubbos_scripts/1-1-1/rubbos_conf/build.xml new file mode 100644 index 00000000..37472041 --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/rubbos_conf/build.xml @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + RUBBoS API]]> + Copyright © 2004 - ObjectWeb Consortium - All Rights Reserved.]]> + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/rubbos/rubbos_scripts/1-1-1/rubbos_conf/config.mk b/rubbos/rubbos_scripts/1-1-1/rubbos_conf/config.mk new file mode 100644 index 00000000..9182da4d --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/rubbos_conf/config.mk @@ -0,0 +1,32 @@ + +############################## +# Environment variables # +############################## + +JAVA = $(JAVA_HOME)/bin/java +JAVAC = $(JAVA_HOME)/bin/javac +JAVACOPTS = -deprecation +JAVACC = $(JAVAC) $(JAVACOPTS) +RMIC = $(JAVA_HOME)/bin/rmic +RMIREGISTRY= $(JAVA_HOME)/bin/rmiregistry +CLASSPATH = .:$(J2EE_HOME)/lib/j2ee.jar:$(JAVA_HOME)/jre/lib/rt.jar:$(SERVLET_API_PATH) +JAVADOC = $(JAVA_HOME)/bin/javadoc +JAR = $(JAVA_HOME)/bin/jar + +GENIC = ${JONAS_ROOT}/bin/unix/GenIC + +MAKE = gmake +CP = /bin/cp +RM = /bin/rm +MKDIR = /bin/mkdir + + +# EJB server: supported values are jonas or jboss +EJB_SERVER = jonas + +# DB server: supported values are MySQL or PostgreSQL +DB_SERVER = MySQL + +%.class: %.java + ${JAVACC} -classpath ${CLASSPATH} $< + diff --git a/rubbos/rubbos_scripts/1-1-1/rubbos_conf/cpu_mem.sh b/rubbos/rubbos_scripts/1-1-1/rubbos_conf/cpu_mem.sh new file mode 100644 index 00000000..ecaa7eb1 --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/rubbos_conf/cpu_mem.sh @@ -0,0 +1,92 @@ +#!/bin/bash + +cd /bottlenecks/rubbos/rubbos_scripts/1-1-1 +source set_bottlenecks_rubbos_env.sh +cd - + +# delay inbetween snapshots + +delay=1 + +# central host to send results to +analysis_host=$BENCHMARK_HOST + +# monitoring start/end time in format YYYYmmddHHMMSS (20050920152059) +start_time=$1 +end_time=$2 + +# data filename suffix +data_filename_suffix="`hostname`-${start_time}.data" + +# sar filename +sar_filename=$RUBBOS_APP/sar-${data_filename_suffix} + +# iostat filename +iostat_filename=$RUBBOS_APP/iostat-${data_filename_suffix} + +# ps filename +ps_filename=$RUBBOS_APP/ps-${data_filename_suffix} + +# date command in predefined format +date_cmd="date +%Y%m%d%H%M%S" +date=`$date_cmd` + +# TEST MODE: start_time will be 2 seconds from launch, end time 5 seconds +#start_time=`expr $date \+ 2` +#end_time=`expr $date \+ 5` + +#echo +#echo Current timestamp: $date +#echo Start timestamp: $start_time +#echo End timestamp: $end_time +#echo + +# make sure they have all arguments +if [ "$end_time" = "" ]; then + echo usage: $0 \ \ \ \ + echo start_time and end_time are in YYYYmmddHHMMSS format + echo ie: 9/30/2005, 2:31:54pm = 20050930143154 + echo + exit +fi + +# wait until start time +#echo -n Waiting until start time \(${start_time}\).. +date=`$date_cmd` +while [ $date -lt $start_time ]; do + sleep 1 + date=`$date_cmd` +done +#echo + + +# launch iostat +sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay > ${iostat_filename} & +iostat_pid=$! + + +# run test until end time +#echo -n Running test until end time \(${end_time}\).. +while [ $date -lt $end_time ]; do + + sleep $delay + date=`$date_cmd` +done +#echo + + +# kill iostat +sudo kill -9 $iostat_pid + + +# chmod + +sudo chmod g+w ${iostat_filename} +sudo chmod o+r ${iostat_filename} + + +# send data to analysis host +#echo Sending data to analysis host.. +#scp -o StrictHostKeyChecking=no -o BatchMode=yes ${sar_filename} ${analysis_host}:/tmp/elba/rubbos +#scp -o StrictHostKeyChecking=no -o BatchMode=yes ${ps_filename} ${analysis_host}:/tmp/elba/rubbos + diff --git a/rubbos/rubbos_scripts/1-1-1/rubbos_conf/mysql.properties b/rubbos/rubbos_scripts/1-1-1/rubbos_conf/mysql.properties new file mode 100644 index 00000000..3c8c0add --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/rubbos_conf/mysql.properties @@ -0,0 +1,83 @@ + +###################### PostgreSQL DataSource configuration example +# + + +##### +# DataSource configuration +# +datasource.name mysql + +datasource.url jdbc:mysql://node9:3313/rubbos +datasource.classname com.mysql.jdbc.Driver + +datasource.username elba +datasource.password elba + + +##### +# ConnectionManager configuration +# + +# JDBC connection checking level. +# 0 = no special checking +# 1 = check physical connection is still open before reusing it +# 2 = try every connection before reusing it +jdbc.connchecklevel 1 + +# Max age for jdbc connections +# nb of minutes a connection can be kept in the pool +jdbc.connmaxage 30 + +# Max concurrent threads on same tx/connection +# (not used with a customized jdbc datasource) +jdbc.connmaxthreads 4 + +# Max wait time if more than connmaxthreads threads request conn +# value is in seconds +# (not used with a customized jdbc datasource) +jdbc.connexcltimeout 30 + +# Test statement +jdbc.connteststmt select 1 + + +###### +# Customizing JDBC DataSource configuration +# + +# Name of the class implementing the XADataSource +#datasource.factory org.objectweb.jonas.dbm.JonasStandardXADataSource + +# JNDI name use to bind the XADataSource +#datasource.xadataname postgre1_xa + +# Minimum number of physical connection used by the XADataSource +#datasource.mincon 5 + +# Maximum number of physical connection used by the XADataSource +#datasource.maxcon 10 + +# Minimum number of XAConnection used by the pool +#jdbc.minconpool 10 + +# Maximum number of XAConnection used by the pool +#jdbc.maxconpool 20 + +# Time between two clean-up of old unused connection +# (value is in millisecond) +#jdbc.sleeptimepool 300000 + +# Force the gc to be launched when cleaning up +#jdbc.gcpool false + +# In case of no connection in the pool, +# deadlockpool is the global time to re-try before throwing an exception +# (value is in millisecond) +#jdbc.deadlockpool 300000 + +# In case of no connection in the pool, +# loopwaitpool is the unit time to re-try +# (value is in millisecond) +#jdbc.loopwaitpool 10000 + diff --git a/rubbos/rubbos_scripts/1-1-1/rubbos_conf/rubbos-servletsBO.sh b/rubbos/rubbos_scripts/1-1-1/rubbos_conf/rubbos-servletsBO.sh new file mode 100644 index 00000000..0113de50 --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/rubbos_conf/rubbos-servletsBO.sh @@ -0,0 +1,75 @@ +#!/bin/bash + +############################################################################### +# +# This script runs first the RUBBoS browsing mix, then the read/write mix +# for each rubbos.properties_XX specified where XX is the number of emulated +# clients. Note that the rubbos.properties_XX files must be configured +# with the corresponding number of clients. +# In particular set the following variables in rubis.properties_XX: +# httpd_use_version = Servlets +# workload_number_of_clients_per_node = XX/number of client machines +# workload_transition_table = yourPath/RUBBoS/workload/transitions.txt +# +# This script should be run from the RUBBoS/bench directory on the local +# client machine. +# Results will be generated in the RUBBoS/bench directory. +# +################################################################################ + +#setenv SERVLETDIR $RUBBOS_HOME/Servlets + +# Go back to RUBBoS root directory +cd .. + +# Browse only + +cp -fi ./workload/browse_only_transitions.txt ./workload/user_transitions.txt +cp -fi ./workload/browse_only_transitions.txt ./workload/author_transitions.txt + +scp ./workload/browse_only_transitions.txt ${CLIENT1_HOST}:${RUBBOS_HOME}/workload/user_transitions.txt +scp ./workload/browse_only_transitions.txt ${CLIENT1_HOST}:${RUBBOS_HOME}/workload/author_transitions.txt + +scp ./workload/browse_only_transitions.txt ${CLIENT2_HOST}:${RUBBOS_HOME}/workload/user_transitions.txt +scp ./workload/browse_only_transitions.txt ${CLIENT2_HOST}:${RUBBOS_HOME}/workload/author_transitions.txt + +scp ./workload/browse_only_transitions.txt ${CLIENT3_HOST}:${RUBBOS_HOME}/workload/user_transitions.txt +scp ./workload/browse_only_transitions.txt ${CLIENT3_HOST}:${RUBBOS_HOME}/workload/author_transitions.txt + +scp ./workload/browse_only_transitions.txt ${CLIENT4_HOST}:${RUBBOS_HOME}/workload/user_transitions.txt +scp ./workload/browse_only_transitions.txt ${CLIENT4_HOST}:${RUBBOS_HOME}/workload/author_transitions.txt + +scp Client/rubbos.properties ${CLIENT1_HOST}:${RUBBOS_HOME}/Client/rubbos.properties +scp Client/rubbos.properties ${CLIENT2_HOST}:${RUBBOS_HOME}/Client/rubbos.properties +scp Client/rubbos.properties ${CLIENT3_HOST}:${RUBBOS_HOME}/Client/rubbos.properties +scp Client/rubbos.properties ${CLIENT4_HOST}:${RUBBOS_HOME}/Client/rubbos.properties + + +bench/flush_cache 490000 +ssh $HTTPD_HOST "$RUBBOS_HOME/bench/flush_cache 880000" # web server +ssh $MYSQL1_HOST "$RUBBOS_HOME/bench/flush_cache 880000" # database server +ssh $TOMCAT1_HOST "$RUBBOS_HOME/bench/flush_cache 780000" # servlet server +ssh $CLIENT1_HOST "$RUBBOS_HOME/bench/flush_cache 490000" # remote client +ssh $CLIENT2_HOST "$RUBBOS_HOME/bench/flush_cache 490000" # remote client +ssh $CLIENT3_HOST "$RUBBOS_HOME/bench/flush_cache 490000" # remote client +ssh $CLIENT4_HOST "$RUBBOS_HOME/bench/flush_cache 490000" # remote client + +RAMPUP=480000 +MI=720000 +current_seconds=`date +%s` +start_seconds=`echo \( $RAMPUP / 1000 \) + $current_seconds - 60 | bc` +SMI=`date -d "1970-01-01 $start_seconds secs UTC" +%Y%m%d%H%M%S` +end_seconds=`echo \( $RAMPUP / 1000 + $MI / 1000 + 30 \) + $current_seconds | bc` +EMI=`date -d "1970-01-01 $end_seconds secs UTC" +%Y%m%d%H%M%S` +ssh $BENCHMARK_HOST "sudo nice -n -1 $RUBBOS_APP/cpu_mem.sh $SMI $EMI" & +ssh $CLIENT1_HOST "sudo nice -n -1 $RUBBOS_APP/cpu_mem.sh $SMI $EMI" & +ssh $CLIENT2_HOST "sudo nice -n -1 $RUBBOS_APP/cpu_mem.sh $SMI $EMI" & +ssh $CLIENT3_HOST "sudo nice -n -1 $RUBBOS_APP/cpu_mem.sh $SMI $EMI" & +ssh $CLIENT4_HOST "sudo nice -n -1 $RUBBOS_APP/cpu_mem.sh $SMI $EMI" & +ssh $HTTPD_HOST "sudo nice -n -1 $RUBBOS_APP/cpu_mem.sh $SMI $EMI" & +ssh $TOMCAT1_HOST "sudo nice -n -1 $RUBBOS_APP/cpu_mem.sh $SMI $EMI" & +ssh $MYSQL1_HOST "sudo nice -n -1 $RUBBOS_APP/cpu_mem.sh $SMI $EMI" & + + +make emulator + diff --git a/rubbos/rubbos_scripts/1-1-1/rubbos_conf/rubbos-servletsRW.sh b/rubbos/rubbos_scripts/1-1-1/rubbos_conf/rubbos-servletsRW.sh new file mode 100644 index 00000000..b3286f20 --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/rubbos_conf/rubbos-servletsRW.sh @@ -0,0 +1,75 @@ +#!/bin/bash + +############################################################################### +# +# This script runs first the RUBBoS browsing mix, then the read/write mix +# for each rubbos.properties_XX specified where XX is the number of emulated +# clients. Note that the rubbos.properties_XX files must be configured +# with the corresponding number of clients. +# In particular set the following variables in rubis.properties_XX: +# httpd_use_version = Servlets +# workload_number_of_clients_per_node = XX/number of client machines +# workload_transition_table = yourPath/RUBBoS/workload/transitions.txt +# +# This script should be run from the RUBBoS/bench directory on the local +# client machine. +# Results will be generated in the RUBBoS/bench directory. +# +################################################################################ + +#setenv SERVLETDIR $RUBBOS_HOME/Servlets + +# Go back to RUBBoS root directory +cd .. + +# Read/write mix + +cp --fi ./workload/user_default_transitions.txt ./workload/user_transitions.txt +cp --fi ./workload/author_default_transitions.txt ./workload/author_transitions.txt + +scp ./workload/user_default_transitions.txt ${CLIENT1_HOST}:${RUBBOS_HOME}/workload/user_transitions.txt +scp ./workload/author_default_transitions.txt ${CLIENT1_HOST}:${RUBBOS_HOME}/workload/author_transitions.txt + +scp ./workload/user_default_transitions.txt ${CLIENT2_HOST}:${RUBBOS_HOME}/workload/user_transitions.txt +scp ./workload/author_default_transitions.txt ${CLIENT2_HOST}:${RUBBOS_HOME}/workload/author_transitions.txt + +scp ./workload/user_default_transitions.txt ${CLIENT3_HOST}:${RUBBOS_HOME}/workload/user_transitions.txt +scp ./workload/author_default_transitions.txt ${CLIENT3_HOST}:${RUBBOS_HOME}/workload/author_transitions.txt + +scp ./workload/user_default_transitions.txt ${CLIENT4_HOST}:${RUBBOS_HOME}/workload/user_transitions.txt +scp ./workload/author_default_transitions.txt ${CLIENT4_HOST}:${RUBBOS_HOME}/workload/author_transitions.txt + +scp Client/rubbos.properties ${CLIENT1_HOST}:${RUBBOS_HOME}/Client/rubbos.properties +scp Client/rubbos.properties ${CLIENT2_HOST}:${RUBBOS_HOME}/Client/rubbos.properties +scp Client/rubbos.properties ${CLIENT3_HOST}:${RUBBOS_HOME}/Client/rubbos.properties +scp Client/rubbos.properties ${CLIENT4_HOST}:${RUBBOS_HOME}/Client/rubbos.properties + + +bench/flush_cache 490000 +ssh $HTTPD_HOST "$RUBBOS_HOME/bench/flush_cache 880000" # web server +ssh $MYSQL1_HOST "$RUBBOS_HOME/bench/flush_cache 880000" # database server +ssh $TOMCAT1_HOST "$RUBBOS_HOME/bench/flush_cache 780000" # servlet server +ssh $CLIENT1_HOST "$RUBBOS_HOME/bench/flush_cache 490000" # remote client +ssh $CLIENT2_HOST "$RUBBOS_HOME/bench/flush_cache 490000" # remote client +ssh $CLIENT3_HOST "$RUBBOS_HOME/bench/flush_cache 490000" # remote client +ssh $CLIENT4_HOST "$RUBBOS_HOME/bench/flush_cache 490000" # remote client + +RAMPUP=480000 +MI=720000 +current_seconds=`date +%s` +start_seconds=`echo \( $RAMPUP / 1000 \) + $current_seconds - 60 | bc` +SMI=`date -d "1970-01-01 $start_seconds secs UTC" +%Y%m%d%H%M%S` +end_seconds=`echo \( $RAMPUP / 1000 + $MI / 1000 + 30 \) + $current_seconds | bc` +EMI=`date -d "1970-01-01 $end_seconds secs UTC" +%Y%m%d%H%M%S` +ssh $BENCHMARK_HOST "sudo nice -n -1 $RUBBOS_APP/cpu_mem.sh $SMI $EMI" & +ssh $CLIENT1_HOST "sudo nice -n -1 $RUBBOS_APP/cpu_mem.sh $SMI $EMI" & +ssh $CLIENT2_HOST "sudo nice -n -1 $RUBBOS_APP/cpu_mem.sh $SMI $EMI" & +ssh $CLIENT3_HOST "sudo nice -n -1 $RUBBOS_APP/cpu_mem.sh $SMI $EMI" & +ssh $CLIENT4_HOST "sudo nice -n -1 $RUBBOS_APP/cpu_mem.sh $SMI $EMI" & +ssh $HTTPD_HOST "sudo nice -n -1 $RUBBOS_APP/cpu_mem.sh $SMI $EMI" & +ssh $TOMCAT1_HOST "sudo nice -n -1 $RUBBOS_APP/cpu_mem.sh $SMI $EMI" & +ssh $MYSQL1_HOST "sudo nice -n -1 $RUBBOS_APP/cpu_mem.sh $SMI $EMI" & + + +make emulator + diff --git a/rubbos/rubbos_scripts/1-1-1/rubbos_conf/rubbos.properties_1000 b/rubbos/rubbos_scripts/1-1-1/rubbos_conf/rubbos.properties_1000 new file mode 100644 index 00000000..b775321b --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/rubbos_conf/rubbos.properties_1000 @@ -0,0 +1,79 @@ + +#n HTTP server information +httpd_hostname = node7 +httpd_port = 8000 + +# C/JDBC server to monitor (if any) +cjdbc_hostname = + +# Precise which version to use. Valid options are : PHP, Servlets, EJB +httpd_use_version = Servlets + +# EJB server information +ejb_server = +ejb_html_path = +ejb_script_path = + +# Servlets server information +servlets_server = node8 +servlets_html_path = /rubbos +servlets_script_path = /rubbos/servlet + +# PHP information +php_html_path = /PHP +php_script_path = /PHP + +#Database information +database_master_server = node9 + +database_slave_servers = +workload_remote_client_nodes = node3,node4,node5,node6 +workload_remote_client_command = /mnt/elba/rubbos/jdk1.6.0_27/bin/java -classpath .:/mnt/elba/rubbos/RUBBoS/Client/:/mnt/elba/rubbos/RUBBoS/Client/rubbos_client.jar -Xmx1300m -Dhttp.keepAlive=true -Dhttp.maxConnections=1000000 edu.rice.rubbos.client.ClientEmulator + + +workload_number_of_clients_per_node = 200 + + +# Workload: precise which transition table to use +workload_user_transition_table = /mnt/elba/rubbos/RUBBoS/workload/user_transitions.txt +workload_author_transition_table = /mnt/elba/rubbos/RUBBoS/workload/author_transitions.txt +workload_number_of_columns = 24 +workload_number_of_rows = 26 +workload_maximum_number_of_transitions = 1000 +workload_use_tpcw_think_time = yes +workload_number_of_stories_per_page = 20 + +workload_up_ramp_time_in_ms = 480000 +workload_up_ramp_slowdown_factor = 2 + +workload_session_run_time_in_ms = 720000 +workload_down_ramp_time_in_ms = 30000 +workload_down_ramp_slowdown_factor = 3 +workload_percentage_of_author = 10 + +# Users policy +database_number_of_authors = 50 +database_number_of_users = 500000 + +# Stories policy +database_story_dictionnary = /mnt/elba/rubbos/RUBBoS/database/dictionary +database_story_maximum_length = 1024 +database_oldest_story_year = 1998 +database_oldest_story_month = 1 + +# Comments policy +database_comment_max_length = 1024 + +# Connection timedout settings +connection_time_out_interval = 300 + + +# Monitoring Information +monitoring_debug_level = 1 +monitoring_program = /mnt/elba/rubbos/sysstat-9.0.6/bin/sar +monitoring_options = -u ALL -I SUM +monitoring_sampling_in_seconds = 1 +monitoring_rsh = /usr/bin/ssh +monitoring_scp = /usr/bin/scp +monitoring_gnuplot_terminal = png + diff --git a/rubbos/rubbos_scripts/1-1-1/rubbos_conf/rubbos.properties_1100 b/rubbos/rubbos_scripts/1-1-1/rubbos_conf/rubbos.properties_1100 new file mode 100644 index 00000000..2598f8a5 --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/rubbos_conf/rubbos.properties_1100 @@ -0,0 +1,79 @@ + +#n HTTP server information +httpd_hostname = node7 +httpd_port = 8000 + +# C/JDBC server to monitor (if any) +cjdbc_hostname = + +# Precise which version to use. Valid options are : PHP, Servlets, EJB +httpd_use_version = Servlets + +# EJB server information +ejb_server = +ejb_html_path = +ejb_script_path = + +# Servlets server information +servlets_server = node8 +servlets_html_path = /rubbos +servlets_script_path = /rubbos/servlet + +# PHP information +php_html_path = /PHP +php_script_path = /PHP + +#Database information +database_master_server = node9 + +database_slave_servers = +workload_remote_client_nodes = node3,node4,node5,node6 +workload_remote_client_command = /mnt/elba/rubbos/jdk1.6.0_27/bin/java -classpath .:/mnt/elba/rubbos/RUBBoS/Client/:/mnt/elba/rubbos/RUBBoS/Client/rubbos_client.jar -Xmx1300m -Dhttp.keepAlive=true -Dhttp.maxConnections=1000000 edu.rice.rubbos.client.ClientEmulator + + +workload_number_of_clients_per_node = 220 + + +# Workload: precise which transition table to use +workload_user_transition_table = /mnt/elba/rubbos/RUBBoS/workload/user_transitions.txt +workload_author_transition_table = /mnt/elba/rubbos/RUBBoS/workload/author_transitions.txt +workload_number_of_columns = 24 +workload_number_of_rows = 26 +workload_maximum_number_of_transitions = 1000 +workload_use_tpcw_think_time = yes +workload_number_of_stories_per_page = 20 + +workload_up_ramp_time_in_ms = 480000 +workload_up_ramp_slowdown_factor = 2 + +workload_session_run_time_in_ms = 720000 +workload_down_ramp_time_in_ms = 30000 +workload_down_ramp_slowdown_factor = 3 +workload_percentage_of_author = 10 + +# Users policy +database_number_of_authors = 50 +database_number_of_users = 500000 + +# Stories policy +database_story_dictionnary = /mnt/elba/rubbos/RUBBoS/database/dictionary +database_story_maximum_length = 1024 +database_oldest_story_year = 1998 +database_oldest_story_month = 1 + +# Comments policy +database_comment_max_length = 1024 + +# Connection timedout settings +connection_time_out_interval = 300 + + +# Monitoring Information +monitoring_debug_level = 1 +monitoring_program = /mnt/elba/rubbos/sysstat-9.0.6/bin/sar +monitoring_options = -u ALL -I SUM +monitoring_sampling_in_seconds = 1 +monitoring_rsh = /usr/bin/ssh +monitoring_scp = /usr/bin/scp +monitoring_gnuplot_terminal = png + diff --git a/rubbos/rubbos_scripts/1-1-1/rubbos_conf/rubbos.properties_1200 b/rubbos/rubbos_scripts/1-1-1/rubbos_conf/rubbos.properties_1200 new file mode 100644 index 00000000..e3dc186c --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/rubbos_conf/rubbos.properties_1200 @@ -0,0 +1,79 @@ + +#n HTTP server information +httpd_hostname = node7 +httpd_port = 8000 + +# C/JDBC server to monitor (if any) +cjdbc_hostname = + +# Precise which version to use. Valid options are : PHP, Servlets, EJB +httpd_use_version = Servlets + +# EJB server information +ejb_server = +ejb_html_path = +ejb_script_path = + +# Servlets server information +servlets_server = node8 +servlets_html_path = /rubbos +servlets_script_path = /rubbos/servlet + +# PHP information +php_html_path = /PHP +php_script_path = /PHP + +#Database information +database_master_server = node9 + +database_slave_servers = +workload_remote_client_nodes = node3,node4,node5,node6 +workload_remote_client_command = /mnt/elba/rubbos/jdk1.6.0_27/bin/java -classpath .:/mnt/elba/rubbos/RUBBoS/Client/:/mnt/elba/rubbos/RUBBoS/Client/rubbos_client.jar -Xmx1300m -Dhttp.keepAlive=true -Dhttp.maxConnections=1000000 edu.rice.rubbos.client.ClientEmulator + + +workload_number_of_clients_per_node = 240 + + +# Workload: precise which transition table to use +workload_user_transition_table = /mnt/elba/rubbos/RUBBoS/workload/user_transitions.txt +workload_author_transition_table = /mnt/elba/rubbos/RUBBoS/workload/author_transitions.txt +workload_number_of_columns = 24 +workload_number_of_rows = 26 +workload_maximum_number_of_transitions = 1000 +workload_use_tpcw_think_time = yes +workload_number_of_stories_per_page = 20 + +workload_up_ramp_time_in_ms = 480000 +workload_up_ramp_slowdown_factor = 2 + +workload_session_run_time_in_ms = 720000 +workload_down_ramp_time_in_ms = 30000 +workload_down_ramp_slowdown_factor = 3 +workload_percentage_of_author = 10 + +# Users policy +database_number_of_authors = 50 +database_number_of_users = 500000 + +# Stories policy +database_story_dictionnary = /mnt/elba/rubbos/RUBBoS/database/dictionary +database_story_maximum_length = 1024 +database_oldest_story_year = 1998 +database_oldest_story_month = 1 + +# Comments policy +database_comment_max_length = 1024 + +# Connection timedout settings +connection_time_out_interval = 300 + + +# Monitoring Information +monitoring_debug_level = 1 +monitoring_program = /mnt/elba/rubbos/sysstat-9.0.6/bin/sar +monitoring_options = -u ALL -I SUM +monitoring_sampling_in_seconds = 1 +monitoring_rsh = /usr/bin/ssh +monitoring_scp = /usr/bin/scp +monitoring_gnuplot_terminal = png + diff --git a/rubbos/rubbos_scripts/1-1-1/rubbos_conf/rubbos.properties_1300 b/rubbos/rubbos_scripts/1-1-1/rubbos_conf/rubbos.properties_1300 new file mode 100644 index 00000000..95a222ff --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/rubbos_conf/rubbos.properties_1300 @@ -0,0 +1,79 @@ + +#n HTTP server information +httpd_hostname = node7 +httpd_port = 8000 + +# C/JDBC server to monitor (if any) +cjdbc_hostname = + +# Precise which version to use. Valid options are : PHP, Servlets, EJB +httpd_use_version = Servlets + +# EJB server information +ejb_server = +ejb_html_path = +ejb_script_path = + +# Servlets server information +servlets_server = node8 +servlets_html_path = /rubbos +servlets_script_path = /rubbos/servlet + +# PHP information +php_html_path = /PHP +php_script_path = /PHP + +#Database information +database_master_server = node9 + +database_slave_servers = +workload_remote_client_nodes = node3,node4,node5,node6 +workload_remote_client_command = /mnt/elba/rubbos/jdk1.6.0_27/bin/java -classpath .:/mnt/elba/rubbos/RUBBoS/Client/:/mnt/elba/rubbos/RUBBoS/Client/rubbos_client.jar -Xmx1300m -Dhttp.keepAlive=true -Dhttp.maxConnections=1000000 edu.rice.rubbos.client.ClientEmulator + + +workload_number_of_clients_per_node = 260 + + +# Workload: precise which transition table to use +workload_user_transition_table = /mnt/elba/rubbos/RUBBoS/workload/user_transitions.txt +workload_author_transition_table = /mnt/elba/rubbos/RUBBoS/workload/author_transitions.txt +workload_number_of_columns = 24 +workload_number_of_rows = 26 +workload_maximum_number_of_transitions = 1000 +workload_use_tpcw_think_time = yes +workload_number_of_stories_per_page = 20 + +workload_up_ramp_time_in_ms = 480000 +workload_up_ramp_slowdown_factor = 2 + +workload_session_run_time_in_ms = 720000 +workload_down_ramp_time_in_ms = 30000 +workload_down_ramp_slowdown_factor = 3 +workload_percentage_of_author = 10 + +# Users policy +database_number_of_authors = 50 +database_number_of_users = 500000 + +# Stories policy +database_story_dictionnary = /mnt/elba/rubbos/RUBBoS/database/dictionary +database_story_maximum_length = 1024 +database_oldest_story_year = 1998 +database_oldest_story_month = 1 + +# Comments policy +database_comment_max_length = 1024 + +# Connection timedout settings +connection_time_out_interval = 300 + + +# Monitoring Information +monitoring_debug_level = 1 +monitoring_program = /mnt/elba/rubbos/sysstat-9.0.6/bin/sar +monitoring_options = -u ALL -I SUM +monitoring_sampling_in_seconds = 1 +monitoring_rsh = /usr/bin/ssh +monitoring_scp = /usr/bin/scp +monitoring_gnuplot_terminal = png + diff --git a/rubbos/rubbos_scripts/1-1-1/rubbos_conf/rubbos.properties_1400 b/rubbos/rubbos_scripts/1-1-1/rubbos_conf/rubbos.properties_1400 new file mode 100644 index 00000000..e9571f38 --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/rubbos_conf/rubbos.properties_1400 @@ -0,0 +1,79 @@ + +#n HTTP server information +httpd_hostname = node7 +httpd_port = 8000 + +# C/JDBC server to monitor (if any) +cjdbc_hostname = + +# Precise which version to use. Valid options are : PHP, Servlets, EJB +httpd_use_version = Servlets + +# EJB server information +ejb_server = +ejb_html_path = +ejb_script_path = + +# Servlets server information +servlets_server = node8 +servlets_html_path = /rubbos +servlets_script_path = /rubbos/servlet + +# PHP information +php_html_path = /PHP +php_script_path = /PHP + +#Database information +database_master_server = node9 + +database_slave_servers = +workload_remote_client_nodes = node3,node4,node5,node6 +workload_remote_client_command = /mnt/elba/rubbos/jdk1.6.0_27/bin/java -classpath .:/mnt/elba/rubbos/RUBBoS/Client/:/mnt/elba/rubbos/RUBBoS/Client/rubbos_client.jar -Xmx1300m -Dhttp.keepAlive=true -Dhttp.maxConnections=1000000 edu.rice.rubbos.client.ClientEmulator + + +workload_number_of_clients_per_node = 280 + + +# Workload: precise which transition table to use +workload_user_transition_table = /mnt/elba/rubbos/RUBBoS/workload/user_transitions.txt +workload_author_transition_table = /mnt/elba/rubbos/RUBBoS/workload/author_transitions.txt +workload_number_of_columns = 24 +workload_number_of_rows = 26 +workload_maximum_number_of_transitions = 1000 +workload_use_tpcw_think_time = yes +workload_number_of_stories_per_page = 20 + +workload_up_ramp_time_in_ms = 480000 +workload_up_ramp_slowdown_factor = 2 + +workload_session_run_time_in_ms = 720000 +workload_down_ramp_time_in_ms = 30000 +workload_down_ramp_slowdown_factor = 3 +workload_percentage_of_author = 10 + +# Users policy +database_number_of_authors = 50 +database_number_of_users = 500000 + +# Stories policy +database_story_dictionnary = /mnt/elba/rubbos/RUBBoS/database/dictionary +database_story_maximum_length = 1024 +database_oldest_story_year = 1998 +database_oldest_story_month = 1 + +# Comments policy +database_comment_max_length = 1024 + +# Connection timedout settings +connection_time_out_interval = 300 + + +# Monitoring Information +monitoring_debug_level = 1 +monitoring_program = /mnt/elba/rubbos/sysstat-9.0.6/bin/sar +monitoring_options = -u ALL -I SUM +monitoring_sampling_in_seconds = 1 +monitoring_rsh = /usr/bin/ssh +monitoring_scp = /usr/bin/scp +monitoring_gnuplot_terminal = png + diff --git a/rubbos/rubbos_scripts/1-1-1/rubbos_conf/rubbos.properties_1500 b/rubbos/rubbos_scripts/1-1-1/rubbos_conf/rubbos.properties_1500 new file mode 100644 index 00000000..16f7efce --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/rubbos_conf/rubbos.properties_1500 @@ -0,0 +1,79 @@ + +#n HTTP server information +httpd_hostname = node7 +httpd_port = 8000 + +# C/JDBC server to monitor (if any) +cjdbc_hostname = + +# Precise which version to use. Valid options are : PHP, Servlets, EJB +httpd_use_version = Servlets + +# EJB server information +ejb_server = +ejb_html_path = +ejb_script_path = + +# Servlets server information +servlets_server = node8 +servlets_html_path = /rubbos +servlets_script_path = /rubbos/servlet + +# PHP information +php_html_path = /PHP +php_script_path = /PHP + +#Database information +database_master_server = node9 + +database_slave_servers = +workload_remote_client_nodes = node3,node4,node5,node6 +workload_remote_client_command = /mnt/elba/rubbos/jdk1.6.0_27/bin/java -classpath .:/mnt/elba/rubbos/RUBBoS/Client/:/mnt/elba/rubbos/RUBBoS/Client/rubbos_client.jar -Xmx1300m -Dhttp.keepAlive=true -Dhttp.maxConnections=1000000 edu.rice.rubbos.client.ClientEmulator + + +workload_number_of_clients_per_node = 300 + + +# Workload: precise which transition table to use +workload_user_transition_table = /mnt/elba/rubbos/RUBBoS/workload/user_transitions.txt +workload_author_transition_table = /mnt/elba/rubbos/RUBBoS/workload/author_transitions.txt +workload_number_of_columns = 24 +workload_number_of_rows = 26 +workload_maximum_number_of_transitions = 1000 +workload_use_tpcw_think_time = yes +workload_number_of_stories_per_page = 20 + +workload_up_ramp_time_in_ms = 480000 +workload_up_ramp_slowdown_factor = 2 + +workload_session_run_time_in_ms = 720000 +workload_down_ramp_time_in_ms = 30000 +workload_down_ramp_slowdown_factor = 3 +workload_percentage_of_author = 10 + +# Users policy +database_number_of_authors = 50 +database_number_of_users = 500000 + +# Stories policy +database_story_dictionnary = /mnt/elba/rubbos/RUBBoS/database/dictionary +database_story_maximum_length = 1024 +database_oldest_story_year = 1998 +database_oldest_story_month = 1 + +# Comments policy +database_comment_max_length = 1024 + +# Connection timedout settings +connection_time_out_interval = 300 + + +# Monitoring Information +monitoring_debug_level = 1 +monitoring_program = /mnt/elba/rubbos/sysstat-9.0.6/bin/sar +monitoring_options = -u ALL -I SUM +monitoring_sampling_in_seconds = 1 +monitoring_rsh = /usr/bin/ssh +monitoring_scp = /usr/bin/scp +monitoring_gnuplot_terminal = png + diff --git a/rubbos/rubbos_scripts/1-1-1/rubbos_conf/rubbos.properties_1600 b/rubbos/rubbos_scripts/1-1-1/rubbos_conf/rubbos.properties_1600 new file mode 100644 index 00000000..c494b9f3 --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/rubbos_conf/rubbos.properties_1600 @@ -0,0 +1,79 @@ + +#n HTTP server information +httpd_hostname = node7 +httpd_port = 8000 + +# C/JDBC server to monitor (if any) +cjdbc_hostname = + +# Precise which version to use. Valid options are : PHP, Servlets, EJB +httpd_use_version = Servlets + +# EJB server information +ejb_server = +ejb_html_path = +ejb_script_path = + +# Servlets server information +servlets_server = node8 +servlets_html_path = /rubbos +servlets_script_path = /rubbos/servlet + +# PHP information +php_html_path = /PHP +php_script_path = /PHP + +#Database information +database_master_server = node9 + +database_slave_servers = +workload_remote_client_nodes = node3,node4,node5,node6 +workload_remote_client_command = /mnt/elba/rubbos/jdk1.6.0_27/bin/java -classpath .:/mnt/elba/rubbos/RUBBoS/Client/:/mnt/elba/rubbos/RUBBoS/Client/rubbos_client.jar -Xmx1300m -Dhttp.keepAlive=true -Dhttp.maxConnections=1000000 edu.rice.rubbos.client.ClientEmulator + + +workload_number_of_clients_per_node = 320 + + +# Workload: precise which transition table to use +workload_user_transition_table = /mnt/elba/rubbos/RUBBoS/workload/user_transitions.txt +workload_author_transition_table = /mnt/elba/rubbos/RUBBoS/workload/author_transitions.txt +workload_number_of_columns = 24 +workload_number_of_rows = 26 +workload_maximum_number_of_transitions = 1000 +workload_use_tpcw_think_time = yes +workload_number_of_stories_per_page = 20 + +workload_up_ramp_time_in_ms = 480000 +workload_up_ramp_slowdown_factor = 2 + +workload_session_run_time_in_ms = 720000 +workload_down_ramp_time_in_ms = 30000 +workload_down_ramp_slowdown_factor = 3 +workload_percentage_of_author = 10 + +# Users policy +database_number_of_authors = 50 +database_number_of_users = 500000 + +# Stories policy +database_story_dictionnary = /mnt/elba/rubbos/RUBBoS/database/dictionary +database_story_maximum_length = 1024 +database_oldest_story_year = 1998 +database_oldest_story_month = 1 + +# Comments policy +database_comment_max_length = 1024 + +# Connection timedout settings +connection_time_out_interval = 300 + + +# Monitoring Information +monitoring_debug_level = 1 +monitoring_program = /mnt/elba/rubbos/sysstat-9.0.6/bin/sar +monitoring_options = -u ALL -I SUM +monitoring_sampling_in_seconds = 1 +monitoring_rsh = /usr/bin/ssh +monitoring_scp = /usr/bin/scp +monitoring_gnuplot_terminal = png + diff --git a/rubbos/rubbos_scripts/1-1-1/rubbos_conf/rubbos.properties_1700 b/rubbos/rubbos_scripts/1-1-1/rubbos_conf/rubbos.properties_1700 new file mode 100644 index 00000000..e26c5767 --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/rubbos_conf/rubbos.properties_1700 @@ -0,0 +1,79 @@ + +#n HTTP server information +httpd_hostname = node7 +httpd_port = 8000 + +# C/JDBC server to monitor (if any) +cjdbc_hostname = + +# Precise which version to use. Valid options are : PHP, Servlets, EJB +httpd_use_version = Servlets + +# EJB server information +ejb_server = +ejb_html_path = +ejb_script_path = + +# Servlets server information +servlets_server = node8 +servlets_html_path = /rubbos +servlets_script_path = /rubbos/servlet + +# PHP information +php_html_path = /PHP +php_script_path = /PHP + +#Database information +database_master_server = node9 + +database_slave_servers = +workload_remote_client_nodes = node3,node4,node5,node6 +workload_remote_client_command = /mnt/elba/rubbos/jdk1.6.0_27/bin/java -classpath .:/mnt/elba/rubbos/RUBBoS/Client/:/mnt/elba/rubbos/RUBBoS/Client/rubbos_client.jar -Xmx1300m -Dhttp.keepAlive=true -Dhttp.maxConnections=1000000 edu.rice.rubbos.client.ClientEmulator + + +workload_number_of_clients_per_node = 340 + + +# Workload: precise which transition table to use +workload_user_transition_table = /mnt/elba/rubbos/RUBBoS/workload/user_transitions.txt +workload_author_transition_table = /mnt/elba/rubbos/RUBBoS/workload/author_transitions.txt +workload_number_of_columns = 24 +workload_number_of_rows = 26 +workload_maximum_number_of_transitions = 1000 +workload_use_tpcw_think_time = yes +workload_number_of_stories_per_page = 20 + +workload_up_ramp_time_in_ms = 480000 +workload_up_ramp_slowdown_factor = 2 + +workload_session_run_time_in_ms = 720000 +workload_down_ramp_time_in_ms = 30000 +workload_down_ramp_slowdown_factor = 3 +workload_percentage_of_author = 10 + +# Users policy +database_number_of_authors = 50 +database_number_of_users = 500000 + +# Stories policy +database_story_dictionnary = /mnt/elba/rubbos/RUBBoS/database/dictionary +database_story_maximum_length = 1024 +database_oldest_story_year = 1998 +database_oldest_story_month = 1 + +# Comments policy +database_comment_max_length = 1024 + +# Connection timedout settings +connection_time_out_interval = 300 + + +# Monitoring Information +monitoring_debug_level = 1 +monitoring_program = /mnt/elba/rubbos/sysstat-9.0.6/bin/sar +monitoring_options = -u ALL -I SUM +monitoring_sampling_in_seconds = 1 +monitoring_rsh = /usr/bin/ssh +monitoring_scp = /usr/bin/scp +monitoring_gnuplot_terminal = png + diff --git a/rubbos/rubbos_scripts/1-1-1/rubbos_conf/rubbos.properties_200 b/rubbos/rubbos_scripts/1-1-1/rubbos_conf/rubbos.properties_200 new file mode 100644 index 00000000..b15f10da --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/rubbos_conf/rubbos.properties_200 @@ -0,0 +1,79 @@ + +#n HTTP server information +httpd_hostname = node7 +httpd_port = 8000 + +# C/JDBC server to monitor (if any) +cjdbc_hostname = + +# Precise which version to use. Valid options are : PHP, Servlets, EJB +httpd_use_version = Servlets + +# EJB server information +ejb_server = +ejb_html_path = +ejb_script_path = + +# Servlets server information +servlets_server = node8 +servlets_html_path = /rubbos +servlets_script_path = /rubbos/servlet + +# PHP information +php_html_path = /PHP +php_script_path = /PHP + +#Database information +database_master_server = node9 + +database_slave_servers = +workload_remote_client_nodes = node3,node4,node5,node6 +workload_remote_client_command = /bottlenecks/rubbos/app/jdk1.6.0_27/bin/java -classpath .:/bottlenecks/rubbos/app/RUBBoS/Client/:/bottlenecks/rubbos/app/RUBBoS/Client/rubbos_client.jar -Xmx1300m -Dhttp.keepAlive=true -Dhttp.maxConnections=1000000 edu.rice.rubbos.client.ClientEmulator + + +workload_number_of_clients_per_node = 40 + + +# Workload: precise which transition table to use +workload_user_transition_table = /bottlenecks/rubbos/app/RUBBoS/workload/user_transitions.txt +workload_author_transition_table = /bottlenecks/rubbos/app/RUBBoS/workload/author_transitions.txt +workload_number_of_columns = 24 +workload_number_of_rows = 26 +workload_maximum_number_of_transitions = 1000 +workload_use_tpcw_think_time = yes +workload_number_of_stories_per_page = 20 + +workload_up_ramp_time_in_ms = 480000 +workload_up_ramp_slowdown_factor = 2 + +workload_session_run_time_in_ms = 720000 +workload_down_ramp_time_in_ms = 30000 +workload_down_ramp_slowdown_factor = 3 +workload_percentage_of_author = 10 + +# Users policy +database_number_of_authors = 50 +database_number_of_users = 500000 + +# Stories policy +database_story_dictionnary = /bottlenecks/rubbos/app/RUBBoS/database/dictionary +database_story_maximum_length = 1024 +database_oldest_story_year = 1998 +database_oldest_story_month = 1 + +# Comments policy +database_comment_max_length = 1024 + +# Connection timedout settings +connection_time_out_interval = 300 + + +# Monitoring Information +monitoring_debug_level = 1 +monitoring_program = /bottlenecks/rubbos/app/sysstat-9.0.6/bin/sar +monitoring_options = -u ALL -I SUM +monitoring_sampling_in_seconds = 1 +monitoring_rsh = /usr/bin/ssh +monitoring_scp = /usr/bin/scp +monitoring_gnuplot_terminal = png + diff --git a/rubbos/rubbos_scripts/1-1-1/rubbos_conf/rubbos.properties_300 b/rubbos/rubbos_scripts/1-1-1/rubbos_conf/rubbos.properties_300 new file mode 100644 index 00000000..96ac98c5 --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/rubbos_conf/rubbos.properties_300 @@ -0,0 +1,79 @@ + +#n HTTP server information +httpd_hostname = node7 +httpd_port = 8000 + +# C/JDBC server to monitor (if any) +cjdbc_hostname = + +# Precise which version to use. Valid options are : PHP, Servlets, EJB +httpd_use_version = Servlets + +# EJB server information +ejb_server = +ejb_html_path = +ejb_script_path = + +# Servlets server information +servlets_server = node8 +servlets_html_path = /rubbos +servlets_script_path = /rubbos/servlet + +# PHP information +php_html_path = /PHP +php_script_path = /PHP + +#Database information +database_master_server = node9 + +database_slave_servers = +workload_remote_client_nodes = node3,node4,node5,node6 +workload_remote_client_command = /mnt/elba/rubbos/jdk1.6.0_27/bin/java -classpath .:/mnt/elba/rubbos/RUBBoS/Client/:/mnt/elba/rubbos/RUBBoS/Client/rubbos_client.jar -Xmx1300m -Dhttp.keepAlive=true -Dhttp.maxConnections=1000000 edu.rice.rubbos.client.ClientEmulator + + +workload_number_of_clients_per_node = 60 + + +# Workload: precise which transition table to use +workload_user_transition_table = /mnt/elba/rubbos/RUBBoS/workload/user_transitions.txt +workload_author_transition_table = /mnt/elba/rubbos/RUBBoS/workload/author_transitions.txt +workload_number_of_columns = 24 +workload_number_of_rows = 26 +workload_maximum_number_of_transitions = 1000 +workload_use_tpcw_think_time = yes +workload_number_of_stories_per_page = 20 + +workload_up_ramp_time_in_ms = 480000 +workload_up_ramp_slowdown_factor = 2 + +workload_session_run_time_in_ms = 720000 +workload_down_ramp_time_in_ms = 30000 +workload_down_ramp_slowdown_factor = 3 +workload_percentage_of_author = 10 + +# Users policy +database_number_of_authors = 50 +database_number_of_users = 500000 + +# Stories policy +database_story_dictionnary = /mnt/elba/rubbos/RUBBoS/database/dictionary +database_story_maximum_length = 1024 +database_oldest_story_year = 1998 +database_oldest_story_month = 1 + +# Comments policy +database_comment_max_length = 1024 + +# Connection timedout settings +connection_time_out_interval = 300 + + +# Monitoring Information +monitoring_debug_level = 1 +monitoring_program = /mnt/elba/rubbos/sysstat-9.0.6/bin/sar +monitoring_options = -u ALL -I SUM +monitoring_sampling_in_seconds = 1 +monitoring_rsh = /usr/bin/ssh +monitoring_scp = /usr/bin/scp +monitoring_gnuplot_terminal = png + diff --git a/rubbos/rubbos_scripts/1-1-1/rubbos_conf/rubbos.properties_400 b/rubbos/rubbos_scripts/1-1-1/rubbos_conf/rubbos.properties_400 new file mode 100644 index 00000000..de9bfd99 --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/rubbos_conf/rubbos.properties_400 @@ -0,0 +1,79 @@ + +#n HTTP server information +httpd_hostname = node7 +httpd_port = 8000 + +# C/JDBC server to monitor (if any) +cjdbc_hostname = + +# Precise which version to use. Valid options are : PHP, Servlets, EJB +httpd_use_version = Servlets + +# EJB server information +ejb_server = +ejb_html_path = +ejb_script_path = + +# Servlets server information +servlets_server = node8 +servlets_html_path = /rubbos +servlets_script_path = /rubbos/servlet + +# PHP information +php_html_path = /PHP +php_script_path = /PHP + +#Database information +database_master_server = node9 + +database_slave_servers = +workload_remote_client_nodes = node3,node4,node5,node6 +workload_remote_client_command = /mnt/elba/rubbos/jdk1.6.0_27/bin/java -classpath .:/mnt/elba/rubbos/RUBBoS/Client/:/mnt/elba/rubbos/RUBBoS/Client/rubbos_client.jar -Xmx1300m -Dhttp.keepAlive=true -Dhttp.maxConnections=1000000 edu.rice.rubbos.client.ClientEmulator + + +workload_number_of_clients_per_node = 80 + + +# Workload: precise which transition table to use +workload_user_transition_table = /mnt/elba/rubbos/RUBBoS/workload/user_transitions.txt +workload_author_transition_table = /mnt/elba/rubbos/RUBBoS/workload/author_transitions.txt +workload_number_of_columns = 24 +workload_number_of_rows = 26 +workload_maximum_number_of_transitions = 1000 +workload_use_tpcw_think_time = yes +workload_number_of_stories_per_page = 20 + +workload_up_ramp_time_in_ms = 480000 +workload_up_ramp_slowdown_factor = 2 + +workload_session_run_time_in_ms = 720000 +workload_down_ramp_time_in_ms = 30000 +workload_down_ramp_slowdown_factor = 3 +workload_percentage_of_author = 10 + +# Users policy +database_number_of_authors = 50 +database_number_of_users = 500000 + +# Stories policy +database_story_dictionnary = /mnt/elba/rubbos/RUBBoS/database/dictionary +database_story_maximum_length = 1024 +database_oldest_story_year = 1998 +database_oldest_story_month = 1 + +# Comments policy +database_comment_max_length = 1024 + +# Connection timedout settings +connection_time_out_interval = 300 + + +# Monitoring Information +monitoring_debug_level = 1 +monitoring_program = /mnt/elba/rubbos/sysstat-9.0.6/bin/sar +monitoring_options = -u ALL -I SUM +monitoring_sampling_in_seconds = 1 +monitoring_rsh = /usr/bin/ssh +monitoring_scp = /usr/bin/scp +monitoring_gnuplot_terminal = png + diff --git a/rubbos/rubbos_scripts/1-1-1/rubbos_conf/rubbos.properties_500 b/rubbos/rubbos_scripts/1-1-1/rubbos_conf/rubbos.properties_500 new file mode 100644 index 00000000..b2c2c520 --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/rubbos_conf/rubbos.properties_500 @@ -0,0 +1,79 @@ + +#n HTTP server information +httpd_hostname = node7 +httpd_port = 8000 + +# C/JDBC server to monitor (if any) +cjdbc_hostname = + +# Precise which version to use. Valid options are : PHP, Servlets, EJB +httpd_use_version = Servlets + +# EJB server information +ejb_server = +ejb_html_path = +ejb_script_path = + +# Servlets server information +servlets_server = node8 +servlets_html_path = /rubbos +servlets_script_path = /rubbos/servlet + +# PHP information +php_html_path = /PHP +php_script_path = /PHP + +#Database information +database_master_server = node9 + +database_slave_servers = +workload_remote_client_nodes = node3,node4,node5,node6 +workload_remote_client_command = /mnt/elba/rubbos/jdk1.6.0_27/bin/java -classpath .:/mnt/elba/rubbos/RUBBoS/Client/:/mnt/elba/rubbos/RUBBoS/Client/rubbos_client.jar -Xmx1300m -Dhttp.keepAlive=true -Dhttp.maxConnections=1000000 edu.rice.rubbos.client.ClientEmulator + + +workload_number_of_clients_per_node = 100 + + +# Workload: precise which transition table to use +workload_user_transition_table = /mnt/elba/rubbos/RUBBoS/workload/user_transitions.txt +workload_author_transition_table = /mnt/elba/rubbos/RUBBoS/workload/author_transitions.txt +workload_number_of_columns = 24 +workload_number_of_rows = 26 +workload_maximum_number_of_transitions = 1000 +workload_use_tpcw_think_time = yes +workload_number_of_stories_per_page = 20 + +workload_up_ramp_time_in_ms = 480000 +workload_up_ramp_slowdown_factor = 2 + +workload_session_run_time_in_ms = 720000 +workload_down_ramp_time_in_ms = 30000 +workload_down_ramp_slowdown_factor = 3 +workload_percentage_of_author = 10 + +# Users policy +database_number_of_authors = 50 +database_number_of_users = 500000 + +# Stories policy +database_story_dictionnary = /mnt/elba/rubbos/RUBBoS/database/dictionary +database_story_maximum_length = 1024 +database_oldest_story_year = 1998 +database_oldest_story_month = 1 + +# Comments policy +database_comment_max_length = 1024 + +# Connection timedout settings +connection_time_out_interval = 300 + + +# Monitoring Information +monitoring_debug_level = 1 +monitoring_program = /mnt/elba/rubbos/sysstat-9.0.6/bin/sar +monitoring_options = -u ALL -I SUM +monitoring_sampling_in_seconds = 1 +monitoring_rsh = /usr/bin/ssh +monitoring_scp = /usr/bin/scp +monitoring_gnuplot_terminal = png + diff --git a/rubbos/rubbos_scripts/1-1-1/rubbos_conf/rubbos.properties_600 b/rubbos/rubbos_scripts/1-1-1/rubbos_conf/rubbos.properties_600 new file mode 100644 index 00000000..36b7f476 --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/rubbos_conf/rubbos.properties_600 @@ -0,0 +1,79 @@ + +#n HTTP server information +httpd_hostname = node7 +httpd_port = 8000 + +# C/JDBC server to monitor (if any) +cjdbc_hostname = + +# Precise which version to use. Valid options are : PHP, Servlets, EJB +httpd_use_version = Servlets + +# EJB server information +ejb_server = +ejb_html_path = +ejb_script_path = + +# Servlets server information +servlets_server = node8 +servlets_html_path = /rubbos +servlets_script_path = /rubbos/servlet + +# PHP information +php_html_path = /PHP +php_script_path = /PHP + +#Database information +database_master_server = node9 + +database_slave_servers = +workload_remote_client_nodes = node3,node4,node5,node6 +workload_remote_client_command = /mnt/elba/rubbos/jdk1.6.0_27/bin/java -classpath .:/mnt/elba/rubbos/RUBBoS/Client/:/mnt/elba/rubbos/RUBBoS/Client/rubbos_client.jar -Xmx1300m -Dhttp.keepAlive=true -Dhttp.maxConnections=1000000 edu.rice.rubbos.client.ClientEmulator + + +workload_number_of_clients_per_node = 120 + + +# Workload: precise which transition table to use +workload_user_transition_table = /mnt/elba/rubbos/RUBBoS/workload/user_transitions.txt +workload_author_transition_table = /mnt/elba/rubbos/RUBBoS/workload/author_transitions.txt +workload_number_of_columns = 24 +workload_number_of_rows = 26 +workload_maximum_number_of_transitions = 1000 +workload_use_tpcw_think_time = yes +workload_number_of_stories_per_page = 20 + +workload_up_ramp_time_in_ms = 480000 +workload_up_ramp_slowdown_factor = 2 + +workload_session_run_time_in_ms = 720000 +workload_down_ramp_time_in_ms = 30000 +workload_down_ramp_slowdown_factor = 3 +workload_percentage_of_author = 10 + +# Users policy +database_number_of_authors = 50 +database_number_of_users = 500000 + +# Stories policy +database_story_dictionnary = /mnt/elba/rubbos/RUBBoS/database/dictionary +database_story_maximum_length = 1024 +database_oldest_story_year = 1998 +database_oldest_story_month = 1 + +# Comments policy +database_comment_max_length = 1024 + +# Connection timedout settings +connection_time_out_interval = 300 + + +# Monitoring Information +monitoring_debug_level = 1 +monitoring_program = /mnt/elba/rubbos/sysstat-9.0.6/bin/sar +monitoring_options = -u ALL -I SUM +monitoring_sampling_in_seconds = 1 +monitoring_rsh = /usr/bin/ssh +monitoring_scp = /usr/bin/scp +monitoring_gnuplot_terminal = png + diff --git a/rubbos/rubbos_scripts/1-1-1/rubbos_conf/rubbos.properties_700 b/rubbos/rubbos_scripts/1-1-1/rubbos_conf/rubbos.properties_700 new file mode 100644 index 00000000..dd6b87d6 --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/rubbos_conf/rubbos.properties_700 @@ -0,0 +1,79 @@ + +#n HTTP server information +httpd_hostname = node7 +httpd_port = 8000 + +# C/JDBC server to monitor (if any) +cjdbc_hostname = + +# Precise which version to use. Valid options are : PHP, Servlets, EJB +httpd_use_version = Servlets + +# EJB server information +ejb_server = +ejb_html_path = +ejb_script_path = + +# Servlets server information +servlets_server = node8 +servlets_html_path = /rubbos +servlets_script_path = /rubbos/servlet + +# PHP information +php_html_path = /PHP +php_script_path = /PHP + +#Database information +database_master_server = node9 + +database_slave_servers = +workload_remote_client_nodes = node3,node4,node5,node6 +workload_remote_client_command = /mnt/elba/rubbos/jdk1.6.0_27/bin/java -classpath .:/mnt/elba/rubbos/RUBBoS/Client/:/mnt/elba/rubbos/RUBBoS/Client/rubbos_client.jar -Xmx1300m -Dhttp.keepAlive=true -Dhttp.maxConnections=1000000 edu.rice.rubbos.client.ClientEmulator + + +workload_number_of_clients_per_node = 140 + + +# Workload: precise which transition table to use +workload_user_transition_table = /mnt/elba/rubbos/RUBBoS/workload/user_transitions.txt +workload_author_transition_table = /mnt/elba/rubbos/RUBBoS/workload/author_transitions.txt +workload_number_of_columns = 24 +workload_number_of_rows = 26 +workload_maximum_number_of_transitions = 1000 +workload_use_tpcw_think_time = yes +workload_number_of_stories_per_page = 20 + +workload_up_ramp_time_in_ms = 480000 +workload_up_ramp_slowdown_factor = 2 + +workload_session_run_time_in_ms = 720000 +workload_down_ramp_time_in_ms = 30000 +workload_down_ramp_slowdown_factor = 3 +workload_percentage_of_author = 10 + +# Users policy +database_number_of_authors = 50 +database_number_of_users = 500000 + +# Stories policy +database_story_dictionnary = /mnt/elba/rubbos/RUBBoS/database/dictionary +database_story_maximum_length = 1024 +database_oldest_story_year = 1998 +database_oldest_story_month = 1 + +# Comments policy +database_comment_max_length = 1024 + +# Connection timedout settings +connection_time_out_interval = 300 + + +# Monitoring Information +monitoring_debug_level = 1 +monitoring_program = /mnt/elba/rubbos/sysstat-9.0.6/bin/sar +monitoring_options = -u ALL -I SUM +monitoring_sampling_in_seconds = 1 +monitoring_rsh = /usr/bin/ssh +monitoring_scp = /usr/bin/scp +monitoring_gnuplot_terminal = png + diff --git a/rubbos/rubbos_scripts/1-1-1/rubbos_conf/rubbos.properties_800 b/rubbos/rubbos_scripts/1-1-1/rubbos_conf/rubbos.properties_800 new file mode 100644 index 00000000..b0c4275a --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/rubbos_conf/rubbos.properties_800 @@ -0,0 +1,79 @@ + +#n HTTP server information +httpd_hostname = node7 +httpd_port = 8000 + +# C/JDBC server to monitor (if any) +cjdbc_hostname = + +# Precise which version to use. Valid options are : PHP, Servlets, EJB +httpd_use_version = Servlets + +# EJB server information +ejb_server = +ejb_html_path = +ejb_script_path = + +# Servlets server information +servlets_server = node8 +servlets_html_path = /rubbos +servlets_script_path = /rubbos/servlet + +# PHP information +php_html_path = /PHP +php_script_path = /PHP + +#Database information +database_master_server = node9 + +database_slave_servers = +workload_remote_client_nodes = node3,node4,node5,node6 +workload_remote_client_command = /mnt/elba/rubbos/jdk1.6.0_27/bin/java -classpath .:/mnt/elba/rubbos/RUBBoS/Client/:/mnt/elba/rubbos/RUBBoS/Client/rubbos_client.jar -Xmx1300m -Dhttp.keepAlive=true -Dhttp.maxConnections=1000000 edu.rice.rubbos.client.ClientEmulator + + +workload_number_of_clients_per_node = 160 + + +# Workload: precise which transition table to use +workload_user_transition_table = /mnt/elba/rubbos/RUBBoS/workload/user_transitions.txt +workload_author_transition_table = /mnt/elba/rubbos/RUBBoS/workload/author_transitions.txt +workload_number_of_columns = 24 +workload_number_of_rows = 26 +workload_maximum_number_of_transitions = 1000 +workload_use_tpcw_think_time = yes +workload_number_of_stories_per_page = 20 + +workload_up_ramp_time_in_ms = 480000 +workload_up_ramp_slowdown_factor = 2 + +workload_session_run_time_in_ms = 720000 +workload_down_ramp_time_in_ms = 30000 +workload_down_ramp_slowdown_factor = 3 +workload_percentage_of_author = 10 + +# Users policy +database_number_of_authors = 50 +database_number_of_users = 500000 + +# Stories policy +database_story_dictionnary = /mnt/elba/rubbos/RUBBoS/database/dictionary +database_story_maximum_length = 1024 +database_oldest_story_year = 1998 +database_oldest_story_month = 1 + +# Comments policy +database_comment_max_length = 1024 + +# Connection timedout settings +connection_time_out_interval = 300 + + +# Monitoring Information +monitoring_debug_level = 1 +monitoring_program = /mnt/elba/rubbos/sysstat-9.0.6/bin/sar +monitoring_options = -u ALL -I SUM +monitoring_sampling_in_seconds = 1 +monitoring_rsh = /usr/bin/ssh +monitoring_scp = /usr/bin/scp +monitoring_gnuplot_terminal = png + diff --git a/rubbos/rubbos_scripts/1-1-1/rubbos_conf/rubbos.properties_900 b/rubbos/rubbos_scripts/1-1-1/rubbos_conf/rubbos.properties_900 new file mode 100644 index 00000000..1a6b8c0a --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/rubbos_conf/rubbos.properties_900 @@ -0,0 +1,79 @@ + +#n HTTP server information +httpd_hostname = node7 +httpd_port = 8000 + +# C/JDBC server to monitor (if any) +cjdbc_hostname = + +# Precise which version to use. Valid options are : PHP, Servlets, EJB +httpd_use_version = Servlets + +# EJB server information +ejb_server = +ejb_html_path = +ejb_script_path = + +# Servlets server information +servlets_server = node8 +servlets_html_path = /rubbos +servlets_script_path = /rubbos/servlet + +# PHP information +php_html_path = /PHP +php_script_path = /PHP + +#Database information +database_master_server = node9 + +database_slave_servers = +workload_remote_client_nodes = node3,node4,node5,node6 +workload_remote_client_command = /mnt/elba/rubbos/jdk1.6.0_27/bin/java -classpath .:/mnt/elba/rubbos/RUBBoS/Client/:/mnt/elba/rubbos/RUBBoS/Client/rubbos_client.jar -Xmx1300m -Dhttp.keepAlive=true -Dhttp.maxConnections=1000000 edu.rice.rubbos.client.ClientEmulator + + +workload_number_of_clients_per_node = 180 + + +# Workload: precise which transition table to use +workload_user_transition_table = /mnt/elba/rubbos/RUBBoS/workload/user_transitions.txt +workload_author_transition_table = /mnt/elba/rubbos/RUBBoS/workload/author_transitions.txt +workload_number_of_columns = 24 +workload_number_of_rows = 26 +workload_maximum_number_of_transitions = 1000 +workload_use_tpcw_think_time = yes +workload_number_of_stories_per_page = 20 + +workload_up_ramp_time_in_ms = 480000 +workload_up_ramp_slowdown_factor = 2 + +workload_session_run_time_in_ms = 720000 +workload_down_ramp_time_in_ms = 30000 +workload_down_ramp_slowdown_factor = 3 +workload_percentage_of_author = 10 + +# Users policy +database_number_of_authors = 50 +database_number_of_users = 500000 + +# Stories policy +database_story_dictionnary = /mnt/elba/rubbos/RUBBoS/database/dictionary +database_story_maximum_length = 1024 +database_oldest_story_year = 1998 +database_oldest_story_month = 1 + +# Comments policy +database_comment_max_length = 1024 + +# Connection timedout settings +connection_time_out_interval = 300 + + +# Monitoring Information +monitoring_debug_level = 1 +monitoring_program = /mnt/elba/rubbos/sysstat-9.0.6/bin/sar +monitoring_options = -u ALL -I SUM +monitoring_sampling_in_seconds = 1 +monitoring_rsh = /usr/bin/ssh +monitoring_scp = /usr/bin/scp +monitoring_gnuplot_terminal = png + diff --git a/rubbos/rubbos_scripts/1-1-1/rubbos_conf/web.xml b/rubbos/rubbos_scripts/1-1-1/rubbos_conf/web.xml new file mode 100644 index 00000000..e0a32b6b --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/rubbos_conf/web.xml @@ -0,0 +1,203 @@ + + + + + + + + RUBBos + + Rice University Bulletin Board System + + + + + BrowseCategories + edu.rice.rubbos.servlets.BrowseCategories + + + + BrowseStoriesByCategory + edu.rice.rubbos.servlets.BrowseStoriesByCategory + + + + ViewComment + edu.rice.rubbos.servlets.ViewComment + + + + ModerateComment + edu.rice.rubbos.servlets.ModerateComment + + + + PostComment + edu.rice.rubbos.servlets.PostComment + + + + StoreComment + edu.rice.rubbos.servlets.StoreComment + + + + SubmitStory + edu.rice.rubbos.servlets.SubmitStory + + + + AcceptStory + edu.rice.rubbos.servlets.AcceptStory + + + + RejectStory + edu.rice.rubbos.servlets.RejectStory + + + + ReviewStories + edu.rice.rubbos.servlets.ReviewStories + + + + StoreStory + edu.rice.rubbos.servlets.StoreStory + + + + ViewStory + edu.rice.rubbos.servlets.ViewStory + + + + StoriesOfTheDay + edu.rice.rubbos.servlets.StoriesOfTheDay + + + + Search + edu.rice.rubbos.servlets.Search + + + + StoreModeratorLog + edu.rice.rubbos.servlets.StoreModeratorLog + + + + RegisterUser + edu.rice.rubbos.servlets.RegisterUser + + + + Author + edu.rice.rubbos.servlets.Author + + + + OlderStories + edu.rice.rubbos.servlets.OlderStories + + + + + BrowseCategories + /servlet/edu.rice.rubbos.servlets.BrowseCategories + + + + BrowseStoriesByCategory + /servlet/edu.rice.rubbos.servlets.BrowseStoriesByCategory + + + + ViewComment + /servlet/edu.rice.rubbos.servlets.ViewComment + + + + ModerateComment + /servlet/edu.rice.rubbos.servlets.ModerateComment + + + + PostComment + /servlet/edu.rice.rubbos.servlets.PostComment + + + + StoreComment + /servlet/edu.rice.rubbos.servlets.StoreComment + + + + SubmitStory + /servlet/edu.rice.rubbos.servlets.SubmitStory + + + + AcceptStory + /servlet/edu.rice.rubbos.servlets.AcceptStory + + + + RejectStory + /servlet/edu.rice.rubbos.servlets.RejectStory + + + + ReviewStories + /servlet/edu.rice.rubbos.servlets.ReviewStories + + + + StoreStory + /servlet/edu.rice.rubbos.servlets.StoreStory + + + + ViewStory + /servlet/edu.rice.rubbos.servlets.ViewStory + + + + StoriesOfTheDay + /servlet/edu.rice.rubbos.servlets.StoriesOfTheDay + + + + + Search + /servlet/edu.rice.rubbos.servlets.Search + + + + StoreModeratorLog + /servlet/edu.rice.rubbos.servlets.StoreModeratorLog + + + + RegisterUser + /servlet/edu.rice.rubbos.servlets.RegisterUser + + + + Author + /servlet/edu.rice.rubbos.servlets.Author + + + + OlderStories + /servlet/edu.rice.rubbos.servlets.OlderStories + + + + + 30 + + + diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/.CLIENT1_rubbos_install.sh.swp b/rubbos/rubbos_scripts/1-1-1/scripts/.CLIENT1_rubbos_install.sh.swp new file mode 100644 index 00000000..d5d72329 Binary files /dev/null and b/rubbos/rubbos_scripts/1-1-1/scripts/.CLIENT1_rubbos_install.sh.swp differ diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/.TOMCAT1_rubbos_uninstall.sh.swp b/rubbos/rubbos_scripts/1-1-1/scripts/.TOMCAT1_rubbos_uninstall.sh.swp new file mode 100644 index 00000000..b5e7d50d Binary files /dev/null and b/rubbos/rubbos_scripts/1-1-1/scripts/.TOMCAT1_rubbos_uninstall.sh.swp differ diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/.run.sh.swp b/rubbos/rubbos_scripts/1-1-1/scripts/.run.sh.swp new file mode 100644 index 00000000..0ab43719 Binary files /dev/null and b/rubbos/rubbos_scripts/1-1-1/scripts/.run.sh.swp differ diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/.stop_all.sh.swp b/rubbos/rubbos_scripts/1-1-1/scripts/.stop_all.sh.swp new file mode 100644 index 00000000..bde80e05 Binary files /dev/null and b/rubbos/rubbos_scripts/1-1-1/scripts/.stop_all.sh.swp differ diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/BENCHMARK_configure.sh b/rubbos/rubbos_scripts/1-1-1/scripts/BENCHMARK_configure.sh new file mode 100755 index 00000000..6fb9d8b0 --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/scripts/BENCHMARK_configure.sh @@ -0,0 +1,26 @@ +#!/bin/bash + +cd /bottlenecks/rubbos/rubbos_scripts/1-1-1 +source set_bottlenecks_rubbos_env.sh + +echo "CONFIGURING RUBBOS CLIENT on $HOSTNAME" + +cp -r $WORK_HOME/rubbos_files/Client $RUBBOS_HOME/ +cp -r $WORK_HOME/rubbos_files/bench $RUBBOS_HOME/ + +cp $OUTPUT_HOME/rubbos_conf/build.properties $RUBBOS_HOME/ +cp $OUTPUT_HOME/rubbos_conf/config.mk $RUBBOS_HOME/ +cp $OUTPUT_HOME/rubbos_conf/Makefile $RUBBOS_HOME/ + +cp $OUTPUT_HOME/rubbos_conf/rubbos-servletsBO.sh $RUBBOS_HOME/bench/ +cp $OUTPUT_HOME/rubbos_conf/rubbos-servletsRW.sh $RUBBOS_HOME/bench/ + +chmod ug+x $RUBBOS_HOME/bench/*.sh + +#build clients +echo "COMPILING RUBBOS CLIENT on $HOSTNAME" +cd $RUBBOS_HOME/Client +make clean +make + +echo "DONE CONFIGURING RUBBOS CLIENT on $HOSTNAME" diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/BENCHMARK_install.sh b/rubbos/rubbos_scripts/1-1-1/scripts/BENCHMARK_install.sh new file mode 100755 index 00000000..7557854d --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/scripts/BENCHMARK_install.sh @@ -0,0 +1,15 @@ +#!/bin/bash + +cd /bottlenecks/rubbos/rubbos_scripts/1-1-1 +source set_bottlenecks_rubbos_env.sh + +echo "INSTALLING RUBBOS CLIENT on $HOSTNAME" + +if [ ! -d "$RUBBOS_APP" ]; then +mkdir -p $RUBBOS_APP +chmod 755 $RUBBOS_APP +fi + +tar xzf $SOFTWARE_HOME/$JAVA_TARBALL --directory=$RUBBOS_APP + +echo "DONE INSTALLING RUBBOS CLIENT on $HOSTNAME" diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/BENCHMARK_rubbos_install.sh b/rubbos/rubbos_scripts/1-1-1/scripts/BENCHMARK_rubbos_install.sh new file mode 100755 index 00000000..098df714 --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/scripts/BENCHMARK_rubbos_install.sh @@ -0,0 +1,30 @@ +#!/bin/bash + +cd /bottlenecks/rubbos/rubbos_scripts/1-1-1 +source set_bottlenecks_rubbos_env.sh + +echo "INSTALLING RUBBOS/SYSSTAT on $HOSTNAME" + +if [ ! -d "$RUBBOS_APP" ]; then +mkdir -p $RUBBOS_APP +chmod 755 $RUBBOS_APP +fi + +# install RUBBoS +tar xzf $SOFTWARE_HOME/$RUBBOS_TARBALL --directory=$RUBBOS_APP +#tar xzf $SOFTWARE_HOME/rubbos_html.tar.gz --directory=$RUBBOS_HOME/Servlet_HTML/ +cp $SOFTWARE_HOME/flush_cache $RUBBOS_HOME/bench/. + +# install sysstat +tar xzf $SOFTWARE_HOME/$SYSSTAT_TARBALL --directory=$RUBBOS_APP + +cd $SYSSTAT_HOME +./configure --prefix=$SYSSTAT_HOME +make +sudo make install + +# install a script to collect statistics data +cp $OUTPUT_HOME/rubbos_conf/cpu_mem.sh $RUBBOS_APP/. +chmod 755 $RUBBOS_APP/cpu_mem.sh + +echo "DONE INSTALLING RUBBOS/SYSSTAT on $HOSTNAME" diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/BENCHMARK_rubbos_uninstall.sh b/rubbos/rubbos_scripts/1-1-1/scripts/BENCHMARK_rubbos_uninstall.sh new file mode 100755 index 00000000..96a51df7 --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/scripts/BENCHMARK_rubbos_uninstall.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +cd /bottlenecks/rubbos/rubbos_scripts/1-1-1 +source set_bottlenecks_rubbos_env.sh + +cd $SYSSTAT_HOME +sudo make uninstall +sudo rm -rf $SYSSTAT_HOME +rm -rf $RUBBOS_HOME +#rm -rf $ELBA_TOP diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/BENCHMARK_uninstall.sh b/rubbos/rubbos_scripts/1-1-1/scripts/BENCHMARK_uninstall.sh new file mode 100755 index 00000000..4cec4efa --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/scripts/BENCHMARK_uninstall.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +cd /bottlenecks/rubbos/rubbos_scripts/1-1-1 +source set_bottlenecks_rubbos_env.sh + +rm -rf $JAVA_HOME +#rm -rf $ELBA_TOP diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/CLIENT1_configure.sh b/rubbos/rubbos_scripts/1-1-1/scripts/CLIENT1_configure.sh new file mode 100755 index 00000000..6fb9d8b0 --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/scripts/CLIENT1_configure.sh @@ -0,0 +1,26 @@ +#!/bin/bash + +cd /bottlenecks/rubbos/rubbos_scripts/1-1-1 +source set_bottlenecks_rubbos_env.sh + +echo "CONFIGURING RUBBOS CLIENT on $HOSTNAME" + +cp -r $WORK_HOME/rubbos_files/Client $RUBBOS_HOME/ +cp -r $WORK_HOME/rubbos_files/bench $RUBBOS_HOME/ + +cp $OUTPUT_HOME/rubbos_conf/build.properties $RUBBOS_HOME/ +cp $OUTPUT_HOME/rubbos_conf/config.mk $RUBBOS_HOME/ +cp $OUTPUT_HOME/rubbos_conf/Makefile $RUBBOS_HOME/ + +cp $OUTPUT_HOME/rubbos_conf/rubbos-servletsBO.sh $RUBBOS_HOME/bench/ +cp $OUTPUT_HOME/rubbos_conf/rubbos-servletsRW.sh $RUBBOS_HOME/bench/ + +chmod ug+x $RUBBOS_HOME/bench/*.sh + +#build clients +echo "COMPILING RUBBOS CLIENT on $HOSTNAME" +cd $RUBBOS_HOME/Client +make clean +make + +echo "DONE CONFIGURING RUBBOS CLIENT on $HOSTNAME" diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/CLIENT1_install.sh b/rubbos/rubbos_scripts/1-1-1/scripts/CLIENT1_install.sh new file mode 100755 index 00000000..3be98dea --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/scripts/CLIENT1_install.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +cd /bottlenecks/rubbos/rubbos_scripts/1-1-1 +source set_bottlenecks_rubbos_env.sh + +echo "INSTALLING RUBBOS CLIENT on $HOSTNAME" + +tar xzf $SOFTWARE_HOME/$JAVA_TARBALL --directory=$RUBBOS_APP + +echo "DONE INSTALLING RUBBOS CLIENT on $HOSTNAME" + + diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/CLIENT1_rubbos_install.sh b/rubbos/rubbos_scripts/1-1-1/scripts/CLIENT1_rubbos_install.sh new file mode 100755 index 00000000..2b684164 --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/scripts/CLIENT1_rubbos_install.sh @@ -0,0 +1,27 @@ +#!/bin/bash + +cd /bottlenecks/rubbos/rubbos_scripts/1-1-1 +source set_bottlenecks_rubbos_env.sh + +echo "INSTALLING RUBBOS/SYSSTAT on $HOSTNAME" + +mkdir -p $RUBBOS_APP + +# install RUBBoS +tar xzf $SOFTWARE_HOME/$RUBBOS_TARBALL --directory=$RUBBOS_APP +#tar xzf $SOFTWARE_HOME/rubbos_html.tar.gz --directory=$RUBBOS_HOME/Servlet_HTML/ +cp $SOFTWARE_HOME/flush_cache $RUBBOS_HOME/bench/. + +# install sysstat +tar xzf $SOFTWARE_HOME/$SYSSTAT_TARBALL --directory=$RUBBOS_APP + +cd $SYSSTAT_HOME +./configure --prefix=$SYSSTAT_HOME +make +sudo make install + +# install a script to collect statistics data +cp $OUTPUT_HOME/rubbos_conf/cpu_mem.sh $RUBBOS_APP/. +chmod 755 $RUBBOS_APP/cpu_mem.sh + +echo "DONE INSTALLING RUBBOS/SYSSTAT on $HOSTNAME" diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/CLIENT1_rubbos_uninstall.sh b/rubbos/rubbos_scripts/1-1-1/scripts/CLIENT1_rubbos_uninstall.sh new file mode 100755 index 00000000..00943e3c --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/scripts/CLIENT1_rubbos_uninstall.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +cd /bottlenecks/rubbos/rubbos_scripts/1-1-1 +source set_bottlenecks_rubbos_env.sh + +cd $SYSSTAT_HOME +sudo make uninstall +sudo rm -rf $SYSSTAT_HOME +rm -rf $RUBBOS_HOME +rm -rf $ELBA_TOP diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/CLIENT1_uninstall.sh b/rubbos/rubbos_scripts/1-1-1/scripts/CLIENT1_uninstall.sh new file mode 100755 index 00000000..2a9a115a --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/scripts/CLIENT1_uninstall.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +cd /bottlenecks/rubbos/rubbos_scripts/1-1-1 +source set_bottlenecks_rubbos_env.sh + +rm -rf $JAVA_HOME +#rm -rf $ELBA_TOP diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/CLIENT2_configure.sh b/rubbos/rubbos_scripts/1-1-1/scripts/CLIENT2_configure.sh new file mode 100755 index 00000000..6fb9d8b0 --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/scripts/CLIENT2_configure.sh @@ -0,0 +1,26 @@ +#!/bin/bash + +cd /bottlenecks/rubbos/rubbos_scripts/1-1-1 +source set_bottlenecks_rubbos_env.sh + +echo "CONFIGURING RUBBOS CLIENT on $HOSTNAME" + +cp -r $WORK_HOME/rubbos_files/Client $RUBBOS_HOME/ +cp -r $WORK_HOME/rubbos_files/bench $RUBBOS_HOME/ + +cp $OUTPUT_HOME/rubbos_conf/build.properties $RUBBOS_HOME/ +cp $OUTPUT_HOME/rubbos_conf/config.mk $RUBBOS_HOME/ +cp $OUTPUT_HOME/rubbos_conf/Makefile $RUBBOS_HOME/ + +cp $OUTPUT_HOME/rubbos_conf/rubbos-servletsBO.sh $RUBBOS_HOME/bench/ +cp $OUTPUT_HOME/rubbos_conf/rubbos-servletsRW.sh $RUBBOS_HOME/bench/ + +chmod ug+x $RUBBOS_HOME/bench/*.sh + +#build clients +echo "COMPILING RUBBOS CLIENT on $HOSTNAME" +cd $RUBBOS_HOME/Client +make clean +make + +echo "DONE CONFIGURING RUBBOS CLIENT on $HOSTNAME" diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/CLIENT2_install.sh b/rubbos/rubbos_scripts/1-1-1/scripts/CLIENT2_install.sh new file mode 100755 index 00000000..3be98dea --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/scripts/CLIENT2_install.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +cd /bottlenecks/rubbos/rubbos_scripts/1-1-1 +source set_bottlenecks_rubbos_env.sh + +echo "INSTALLING RUBBOS CLIENT on $HOSTNAME" + +tar xzf $SOFTWARE_HOME/$JAVA_TARBALL --directory=$RUBBOS_APP + +echo "DONE INSTALLING RUBBOS CLIENT on $HOSTNAME" + + diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/CLIENT2_rubbos_install.sh b/rubbos/rubbos_scripts/1-1-1/scripts/CLIENT2_rubbos_install.sh new file mode 100755 index 00000000..2b684164 --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/scripts/CLIENT2_rubbos_install.sh @@ -0,0 +1,27 @@ +#!/bin/bash + +cd /bottlenecks/rubbos/rubbos_scripts/1-1-1 +source set_bottlenecks_rubbos_env.sh + +echo "INSTALLING RUBBOS/SYSSTAT on $HOSTNAME" + +mkdir -p $RUBBOS_APP + +# install RUBBoS +tar xzf $SOFTWARE_HOME/$RUBBOS_TARBALL --directory=$RUBBOS_APP +#tar xzf $SOFTWARE_HOME/rubbos_html.tar.gz --directory=$RUBBOS_HOME/Servlet_HTML/ +cp $SOFTWARE_HOME/flush_cache $RUBBOS_HOME/bench/. + +# install sysstat +tar xzf $SOFTWARE_HOME/$SYSSTAT_TARBALL --directory=$RUBBOS_APP + +cd $SYSSTAT_HOME +./configure --prefix=$SYSSTAT_HOME +make +sudo make install + +# install a script to collect statistics data +cp $OUTPUT_HOME/rubbos_conf/cpu_mem.sh $RUBBOS_APP/. +chmod 755 $RUBBOS_APP/cpu_mem.sh + +echo "DONE INSTALLING RUBBOS/SYSSTAT on $HOSTNAME" diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/CLIENT2_rubbos_uninstall.sh b/rubbos/rubbos_scripts/1-1-1/scripts/CLIENT2_rubbos_uninstall.sh new file mode 100755 index 00000000..96a51df7 --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/scripts/CLIENT2_rubbos_uninstall.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +cd /bottlenecks/rubbos/rubbos_scripts/1-1-1 +source set_bottlenecks_rubbos_env.sh + +cd $SYSSTAT_HOME +sudo make uninstall +sudo rm -rf $SYSSTAT_HOME +rm -rf $RUBBOS_HOME +#rm -rf $ELBA_TOP diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/CLIENT2_uninstall.sh b/rubbos/rubbos_scripts/1-1-1/scripts/CLIENT2_uninstall.sh new file mode 100755 index 00000000..2a9a115a --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/scripts/CLIENT2_uninstall.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +cd /bottlenecks/rubbos/rubbos_scripts/1-1-1 +source set_bottlenecks_rubbos_env.sh + +rm -rf $JAVA_HOME +#rm -rf $ELBA_TOP diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/CLIENT3_configure.sh b/rubbos/rubbos_scripts/1-1-1/scripts/CLIENT3_configure.sh new file mode 100755 index 00000000..6fb9d8b0 --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/scripts/CLIENT3_configure.sh @@ -0,0 +1,26 @@ +#!/bin/bash + +cd /bottlenecks/rubbos/rubbos_scripts/1-1-1 +source set_bottlenecks_rubbos_env.sh + +echo "CONFIGURING RUBBOS CLIENT on $HOSTNAME" + +cp -r $WORK_HOME/rubbos_files/Client $RUBBOS_HOME/ +cp -r $WORK_HOME/rubbos_files/bench $RUBBOS_HOME/ + +cp $OUTPUT_HOME/rubbos_conf/build.properties $RUBBOS_HOME/ +cp $OUTPUT_HOME/rubbos_conf/config.mk $RUBBOS_HOME/ +cp $OUTPUT_HOME/rubbos_conf/Makefile $RUBBOS_HOME/ + +cp $OUTPUT_HOME/rubbos_conf/rubbos-servletsBO.sh $RUBBOS_HOME/bench/ +cp $OUTPUT_HOME/rubbos_conf/rubbos-servletsRW.sh $RUBBOS_HOME/bench/ + +chmod ug+x $RUBBOS_HOME/bench/*.sh + +#build clients +echo "COMPILING RUBBOS CLIENT on $HOSTNAME" +cd $RUBBOS_HOME/Client +make clean +make + +echo "DONE CONFIGURING RUBBOS CLIENT on $HOSTNAME" diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/CLIENT3_install.sh b/rubbos/rubbos_scripts/1-1-1/scripts/CLIENT3_install.sh new file mode 100755 index 00000000..ec47699a --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/scripts/CLIENT3_install.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +cd /bottlenecks/rubbos/rubbos_scripts/1-1-1 +source set_bottlenecks_rubbos_env.sh + +echo "INSTALLING RUBBOS CLIENT on $HOSTNAME" + +tar xzf $SOFTWARE_HOME/$JAVA_TARBALL --directory=$RUBBOS_APP + +echo "DONE INSTALLING RUBBOS CLIENT on $HOSTNAME" diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/CLIENT3_rubbos_install.sh b/rubbos/rubbos_scripts/1-1-1/scripts/CLIENT3_rubbos_install.sh new file mode 100755 index 00000000..2b684164 --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/scripts/CLIENT3_rubbos_install.sh @@ -0,0 +1,27 @@ +#!/bin/bash + +cd /bottlenecks/rubbos/rubbos_scripts/1-1-1 +source set_bottlenecks_rubbos_env.sh + +echo "INSTALLING RUBBOS/SYSSTAT on $HOSTNAME" + +mkdir -p $RUBBOS_APP + +# install RUBBoS +tar xzf $SOFTWARE_HOME/$RUBBOS_TARBALL --directory=$RUBBOS_APP +#tar xzf $SOFTWARE_HOME/rubbos_html.tar.gz --directory=$RUBBOS_HOME/Servlet_HTML/ +cp $SOFTWARE_HOME/flush_cache $RUBBOS_HOME/bench/. + +# install sysstat +tar xzf $SOFTWARE_HOME/$SYSSTAT_TARBALL --directory=$RUBBOS_APP + +cd $SYSSTAT_HOME +./configure --prefix=$SYSSTAT_HOME +make +sudo make install + +# install a script to collect statistics data +cp $OUTPUT_HOME/rubbos_conf/cpu_mem.sh $RUBBOS_APP/. +chmod 755 $RUBBOS_APP/cpu_mem.sh + +echo "DONE INSTALLING RUBBOS/SYSSTAT on $HOSTNAME" diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/CLIENT3_rubbos_uninstall.sh b/rubbos/rubbos_scripts/1-1-1/scripts/CLIENT3_rubbos_uninstall.sh new file mode 100755 index 00000000..96a51df7 --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/scripts/CLIENT3_rubbos_uninstall.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +cd /bottlenecks/rubbos/rubbos_scripts/1-1-1 +source set_bottlenecks_rubbos_env.sh + +cd $SYSSTAT_HOME +sudo make uninstall +sudo rm -rf $SYSSTAT_HOME +rm -rf $RUBBOS_HOME +#rm -rf $ELBA_TOP diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/CLIENT3_uninstall.sh b/rubbos/rubbos_scripts/1-1-1/scripts/CLIENT3_uninstall.sh new file mode 100755 index 00000000..2a9a115a --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/scripts/CLIENT3_uninstall.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +cd /bottlenecks/rubbos/rubbos_scripts/1-1-1 +source set_bottlenecks_rubbos_env.sh + +rm -rf $JAVA_HOME +#rm -rf $ELBA_TOP diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/CLIENT4_configure.sh b/rubbos/rubbos_scripts/1-1-1/scripts/CLIENT4_configure.sh new file mode 100755 index 00000000..6fb9d8b0 --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/scripts/CLIENT4_configure.sh @@ -0,0 +1,26 @@ +#!/bin/bash + +cd /bottlenecks/rubbos/rubbos_scripts/1-1-1 +source set_bottlenecks_rubbos_env.sh + +echo "CONFIGURING RUBBOS CLIENT on $HOSTNAME" + +cp -r $WORK_HOME/rubbos_files/Client $RUBBOS_HOME/ +cp -r $WORK_HOME/rubbos_files/bench $RUBBOS_HOME/ + +cp $OUTPUT_HOME/rubbos_conf/build.properties $RUBBOS_HOME/ +cp $OUTPUT_HOME/rubbos_conf/config.mk $RUBBOS_HOME/ +cp $OUTPUT_HOME/rubbos_conf/Makefile $RUBBOS_HOME/ + +cp $OUTPUT_HOME/rubbos_conf/rubbos-servletsBO.sh $RUBBOS_HOME/bench/ +cp $OUTPUT_HOME/rubbos_conf/rubbos-servletsRW.sh $RUBBOS_HOME/bench/ + +chmod ug+x $RUBBOS_HOME/bench/*.sh + +#build clients +echo "COMPILING RUBBOS CLIENT on $HOSTNAME" +cd $RUBBOS_HOME/Client +make clean +make + +echo "DONE CONFIGURING RUBBOS CLIENT on $HOSTNAME" diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/CLIENT4_install.sh b/rubbos/rubbos_scripts/1-1-1/scripts/CLIENT4_install.sh new file mode 100755 index 00000000..3be98dea --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/scripts/CLIENT4_install.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +cd /bottlenecks/rubbos/rubbos_scripts/1-1-1 +source set_bottlenecks_rubbos_env.sh + +echo "INSTALLING RUBBOS CLIENT on $HOSTNAME" + +tar xzf $SOFTWARE_HOME/$JAVA_TARBALL --directory=$RUBBOS_APP + +echo "DONE INSTALLING RUBBOS CLIENT on $HOSTNAME" + + diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/CLIENT4_rubbos_install.sh b/rubbos/rubbos_scripts/1-1-1/scripts/CLIENT4_rubbos_install.sh new file mode 100755 index 00000000..2b684164 --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/scripts/CLIENT4_rubbos_install.sh @@ -0,0 +1,27 @@ +#!/bin/bash + +cd /bottlenecks/rubbos/rubbos_scripts/1-1-1 +source set_bottlenecks_rubbos_env.sh + +echo "INSTALLING RUBBOS/SYSSTAT on $HOSTNAME" + +mkdir -p $RUBBOS_APP + +# install RUBBoS +tar xzf $SOFTWARE_HOME/$RUBBOS_TARBALL --directory=$RUBBOS_APP +#tar xzf $SOFTWARE_HOME/rubbos_html.tar.gz --directory=$RUBBOS_HOME/Servlet_HTML/ +cp $SOFTWARE_HOME/flush_cache $RUBBOS_HOME/bench/. + +# install sysstat +tar xzf $SOFTWARE_HOME/$SYSSTAT_TARBALL --directory=$RUBBOS_APP + +cd $SYSSTAT_HOME +./configure --prefix=$SYSSTAT_HOME +make +sudo make install + +# install a script to collect statistics data +cp $OUTPUT_HOME/rubbos_conf/cpu_mem.sh $RUBBOS_APP/. +chmod 755 $RUBBOS_APP/cpu_mem.sh + +echo "DONE INSTALLING RUBBOS/SYSSTAT on $HOSTNAME" diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/CLIENT4_rubbos_uninstall.sh b/rubbos/rubbos_scripts/1-1-1/scripts/CLIENT4_rubbos_uninstall.sh new file mode 100755 index 00000000..96a51df7 --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/scripts/CLIENT4_rubbos_uninstall.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +cd /bottlenecks/rubbos/rubbos_scripts/1-1-1 +source set_bottlenecks_rubbos_env.sh + +cd $SYSSTAT_HOME +sudo make uninstall +sudo rm -rf $SYSSTAT_HOME +rm -rf $RUBBOS_HOME +#rm -rf $ELBA_TOP diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/CLIENT4_uninstall.sh b/rubbos/rubbos_scripts/1-1-1/scripts/CLIENT4_uninstall.sh new file mode 100755 index 00000000..2a9a115a --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/scripts/CLIENT4_uninstall.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +cd /bottlenecks/rubbos/rubbos_scripts/1-1-1 +source set_bottlenecks_rubbos_env.sh + +rm -rf $JAVA_HOME +#rm -rf $ELBA_TOP diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/CONTROL_checkScp_exec.sh b/rubbos/rubbos_scripts/1-1-1/scripts/CONTROL_checkScp_exec.sh new file mode 100755 index 00000000..5b16a0b2 --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/scripts/CONTROL_checkScp_exec.sh @@ -0,0 +1,20 @@ +#!/bin/bash + +cd /bottlenecks/rubbos/rubbos_scripts/1-1-1 +source set_bottlenecks_rubbos_env.sh + +# Check scp to all servers +echo "*** checking scp to all servers *********************************" + +ssh -o StrictHostKeyChecking=no -o BatchMode=yes $CONTROL_HOST "hostname" +ssh -o StrictHostKeyChecking=no -o BatchMode=yes $BENCHMARK_HOST "hostname" +ssh -o StrictHostKeyChecking=no -o BatchMode=yes $CLIENT1_HOST "hostname" +ssh -o StrictHostKeyChecking=no -o BatchMode=yes $CLIENT2_HOST "hostname" +ssh -o StrictHostKeyChecking=no -o BatchMode=yes $CLIENT3_HOST "hostname" +ssh -o StrictHostKeyChecking=no -o BatchMode=yes $CLIENT4_HOST "hostname" +ssh -o StrictHostKeyChecking=no -o BatchMode=yes $HTTPD_HOST "hostname" +ssh -o StrictHostKeyChecking=no -o BatchMode=yes $TOMCAT1_HOST "hostname" +ssh -o StrictHostKeyChecking=no -o BatchMode=yes $MYSQL1_HOST "hostname" + +#ssh -o StrictHostKeyChecking=no -o BatchMode=yes bonn.cc.gt.atl.ga.us "hostname" +ssh -o StrictHostKeyChecking=no -o BatchMode=yes localhost "hostname" diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/CONTROL_emulabConf_exec.sh b/rubbos/rubbos_scripts/1-1-1/scripts/CONTROL_emulabConf_exec.sh new file mode 100755 index 00000000..faf0c79d --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/scripts/CONTROL_emulabConf_exec.sh @@ -0,0 +1,55 @@ +#!/bin/bash + +cd /bottlenecks/rubbos/rubbos_scripts/1-1-1 +source set_bottlenecks_rubbos_env.sh + +# Limit pc3000 Memory Capacity + +sleep 10 + +# Make and mount new partiton +echo "*** make FS on a partition and mount it *************************" + +for i in "$BENCHMARK_HOST" "$CLIENT1_HOST" "$CLIENT2_HOST" "$CLIENT3_HOST" "$CLIENT4_HOST" "$HTTPD_HOST" "$TOMCAT1_HOST" "$MYSQL1_HOST" +do +ssh $i " + sudo mkdir -p $ELBA_TOP + sudo chmod 777 $ELBA_TOP +" +scp $WORK_HOME/emulab_files/limits.conf $i:$ELBA_TOP +scp $WORK_HOME/emulab_files/login $i:$ELBA_TOP +scp $WORK_HOME/emulab_files/file-max $i:$ELBA_TOP + +ssh $i " + sudo mv $ELBA_TOP/limits.conf /etc/security/ + sudo mv $ELBA_TOP/login /etc/pam.d/ +" +done + + +for i in "$BENCHMARK_HOST" "$CLIENT1_HOST" "$CLIENT2_HOST" "$CLIENT3_HOST" "$CLIENT4_HOST" "$HTTPD_HOST" "$TOMCAT1_HOST" "$MYSQL1_HOST" +do + ssh $i " + sudo /sbin/mkfs /dev/sda4 + sudo mount /dev/sda4 $ELBA_TOP + sudo chmod 777 $ELBA_TOP + mkdir -p $RUBBOS_TOP + sudo cp $SOFTWARE_HOME/sdparm-1.03.tgz /tmp + cd /tmp + sudo tar -zxvf ./sdparm-1.03.tgz + cd sdparm-1.03 + sudo ./configure + sudo make + sudo make install + sudo sdparm -c WCE /dev/sda + " & +done + +echo "sleep 420" +sleep 420 +echo "wake up from sleeping 420" + + +# Turning off Swap Partition + +sleep 10 diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/CONTROL_rubbos_exec.sh b/rubbos/rubbos_scripts/1-1-1/scripts/CONTROL_rubbos_exec.sh new file mode 100755 index 00000000..adaf3d19 --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/scripts/CONTROL_rubbos_exec.sh @@ -0,0 +1,134 @@ +#!/bin/bash + +cd /bottlenecks/rubbos/rubbos_scripts/1-1-1 +source set_bottlenecks_rubbos_env.sh + +scp $WORK_HOME/monitors_files/oprofile_start.sh $MYSQL1_HOST:/tmp/ + +echo "Starting RUBBoS" + +ssh $RUBBOS_RESULTS_HOST " + mkdir -p $RUBBOS_RESULTS_DIR_BASE +" +ssh $BENCHMARK_HOST " + mkdir -p $TMP_RESULTS_DIR_BASE/$RUBBOS_RESULTS_DIR_NAME +" + +#for i in "rubbos.properties_200" "rubbos.properties_300" "rubbos.properties_400" "rubbos.properties_500" "rubbos.properties_600" "rubbos.properties_700" "rubbos.properties_800" "rubbos.properties_900" "rubbos.properties_1000" "rubbos.properties_1100" "rubbos.properties_1200" "rubbos.properties_1300" "rubbos.properties_1400" "rubbos.properties_1500" "rubbos.properties_1600" "rubbos.properties_1700" +for i in "rubbos.properties_200" +do + + ssh $BENCHMARK_HOST " + source /bottlenecks/rubbos/rubbos_scripts/1-1-1/set_bottlenecks_rubbos_env.sh + rm -f $RUBBOS_HOME/Client/rubbos.properties + " + scp $OUTPUT_HOME/rubbos_conf/$i $BENCHMARK_HOST:$RUBBOS_HOME/Client/rubbos.properties + + echo "Resetting all data" + $OUTPUT_HOME/scripts/reset_all.sh + + # Browsing Only + echo "Start Browsing Only with $i" + echo "Removing previous logs..." + ssh $HTTPD_HOST "rm -f $HTTPD_HOME/logs/*log" + ssh $TOMCAT1_HOST "rm -f $CATALINA_HOME/logs/*" + ssh $MYSQL1_HOST "rm -f $MYSQL_HOME/run/*.log $RUBBOS_APP/mysql_mon-*" + + $OUTPUT_HOME/scripts/start_all.sh + sleep 15 + + ssh $BENCHMARK_HOST "rm -f $RUBBOS_APP/sar-* $RUBBOS_APP/ps-* $RUBBOS_APP/iostat-*" + ssh $CLIENT1_HOST "rm -f $RUBBOS_APP/sar-* $RUBBOS_APP/ps-* $RUBBOS_APP/iostat-*" + ssh $CLIENT2_HOST "rm -f $RUBBOS_APP/sar-* $RUBBOS_APP/ps-* $RUBBOS_APP/iostat-*" + ssh $CLIENT3_HOST "rm -f $RUBBOS_APP/sar-* $RUBBOS_APP/ps-* $RUBBOS_APP/iostat-*" + ssh $CLIENT4_HOST "rm -f $RUBBOS_APP/sar-* $RUBBOS_APP/ps-* $RUBBOS_APP/iostat-*" + ssh $HTTPD_HOST "rm -f $RUBBOS_APP/sar-* $RUBBOS_APP/ps-* $RUBBOS_APP/iostat-*" + ssh $TOMCAT1_HOST "rm -f $RUBBOS_APP/sar-* $RUBBOS_APP/ps-* $RUBBOS_APP/iostat-*" + ssh $MYSQL1_HOST "rm -f $RUBBOS_APP/sar-* $RUBBOS_APP/ps-* $RUBBOS_APP/iostat-*" + ssh $MYSQL1_HOST "sudo rm -f /tmp/*.log" + ssh root@$MYSQL1_HOST chmod 777 /tmp/oprofile_start.sh + ssh $MYSQL1_HOST " + cd /tmp + ./oprofile_start.sh + " & + + ssh $BENCHMARK_HOST " + source /bottlenecks/rubbos/rubbos_scripts/1-1-1/set_bottlenecks_rubbos_env.sh + cd $RUBBOS_HOME/bench + \rm -r 20* + + # Execute benchmark + echo "execute benchmark" + ./rubbos-servletsBO.sh + + # Collect results + echo "The benchmark has finished. Now, collecting results..." + cd 20* + scp $BENCHMARK_HOST:$RUBBOS_APP/sar-* ./ + scp $BENCHMARK_HOST:$RUBBOS_APP/ps-* ./ + scp $BENCHMARK_HOST:$RUBBOS_APP/iostat-* ./ + scp $BENCHMARK_HOST:$RUBBOS_APP/mysql_mon-* ./ + scp $BENCHMARK_HOST:$RUBBOS_APP/postgres_lock-* ./ + scp $CLIENT1_HOST:$RUBBOS_APP/sar-* ./ + scp $CLIENT1_HOST:$RUBBOS_APP/ps-* ./ + scp $CLIENT1_HOST:$RUBBOS_APP/iostat-* ./ + scp $CLIENT1_HOST:$RUBBOS_APP/mysql_mon-* ./ + scp $CLIENT1_HOST:$RUBBOS_APP/postgres_lock-* ./ + scp $CLIENT2_HOST:$RUBBOS_APP/sar-* ./ + scp $CLIENT2_HOST:$RUBBOS_APP/ps-* ./ + scp $CLIENT2_HOST:$RUBBOS_APP/iostat-* ./ + scp $CLIENT2_HOST:$RUBBOS_APP/mysql_mon-* ./ + scp $CLIENT2_HOST:$RUBBOS_APP/postgres_lock-* ./ + scp $CLIENT3_HOST:$RUBBOS_APP/sar-* ./ + scp $CLIENT3_HOST:$RUBBOS_APP/ps-* ./ + scp $CLIENT3_HOST:$RUBBOS_APP/iostat-* ./ + scp $CLIENT3_HOST:$RUBBOS_APP/mysql_mon-* ./ + scp $CLIENT3_HOST:$RUBBOS_APP/postgres_lock-* ./ + scp $CLIENT4_HOST:$RUBBOS_APP/sar-* ./ + scp $CLIENT4_HOST:$RUBBOS_APP/ps-* ./ + scp $CLIENT4_HOST:$RUBBOS_APP/iostat-* ./ + scp $CLIENT4_HOST:$RUBBOS_APP/mysql_mon-* ./ + scp $CLIENT4_HOST:$RUBBOS_APP/postgres_lock-* ./ + scp $HTTPD_HOST:$RUBBOS_APP/sar-* ./ + scp $HTTPD_HOST:$RUBBOS_APP/ps-* ./ + scp $HTTPD_HOST:$RUBBOS_APP/iostat-* ./ + scp $HTTPD_HOST:$RUBBOS_APP/mysql_mon-* ./ + scp $HTTPD_HOST:$RUBBOS_APP/postgres_lock-* ./ + scp $TOMCAT1_HOST:$RUBBOS_APP/sar-* ./ + scp $TOMCAT1_HOST:$RUBBOS_APP/ps-* ./ + scp $TOMCAT1_HOST:$RUBBOS_APP/iostat-* ./ + scp $TOMCAT1_HOST:$RUBBOS_APP/mysql_mon-* ./ + scp $TOMCAT1_HOST:$RUBBOS_APP/postgres_lock-* ./ + scp $MYSQL1_HOST:$RUBBOS_APP/sar-* ./ + scp $MYSQL1_HOST:$RUBBOS_APP/ps-* ./ + scp $MYSQL1_HOST:$RUBBOS_APP/iostat-* ./ + scp $MYSQL1_HOST:$RUBBOS_APP/mysql_mon-* ./ + scp $MYSQL1_HOST:$RUBBOS_APP/postgres_lock-* ./ + cd .. + mv 20* $TMP_RESULTS_DIR_BASE/$RUBBOS_RESULTS_DIR_NAME/ + " + + #$OUTPUT_HOME/scripts/stop_all.sh + $OUTPUT_HOME/scripts/kill_all.sh + sleep 15 + echo "End Browsing Only with $i" + + # Read/Write + +done + +echo "Processing the results..." +ssh $BENCHMARK_HOST " + cd $TMP_RESULTS_DIR_BASE + cd $RUBBOS_RESULTS_DIR_NAME + scp $RUBBOS_RESULTS_HOST:$RUBBOS_RESULTS_DIR_BASE/calc-sarSummary.prl ../ + ../calc-sarSummary.prl + + rm -f 20*/*.bin + + cd ../ + tar zcvf $RUBBOS_RESULTS_DIR_NAME.tgz $RUBBOS_RESULTS_DIR_NAME + scp $RUBBOS_RESULTS_DIR_NAME.tgz $RUBBOS_RESULTS_HOST:$RUBBOS_RESULTS_DIR_BASE/ +" + +echo "Finish RUBBoS" diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/HTTPD_configure.sh b/rubbos/rubbos_scripts/1-1-1/scripts/HTTPD_configure.sh new file mode 100755 index 00000000..f2b95f46 --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/scripts/HTTPD_configure.sh @@ -0,0 +1,15 @@ +#!/bin/bash + +cd /bottlenecks/rubbos/rubbos_scripts/1-1-1 +source set_bottlenecks_rubbos_env.sh + +echo "CONFIGURING APACHE on $HOSTNAME" + +cp $OUTPUT_HOME/apache_conf/httpd.conf $HTTPD_HOME/conf/ +cp $OUTPUT_HOME/apache_conf/workers.properties $HTTPD_HOME/conf/ +cp -r $WORK_HOME/apache_files/rubbos_html $HTTPD_HOME/htdocs/rubbos + +echo "APACHE CONFIGURED SUCCESSFULLY on $HOSTNAME" + + + diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/HTTPD_ignition.sh b/rubbos/rubbos_scripts/1-1-1/scripts/HTTPD_ignition.sh new file mode 100755 index 00000000..6b2511da --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/scripts/HTTPD_ignition.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +cd /bottlenecks/rubbos/rubbos_scripts/1-1-1 +source set_bottlenecks_rubbos_env.sh + +echo "STARTING APACHE on $HOSTNAME" + +$HTTPD_HOME/bin/apachectl -f $HTTPD_HOME/conf/httpd.conf -k start + +echo "APACHE IS RUNNING on $HOSTNAME" + diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/HTTPD_install.sh b/rubbos/rubbos_scripts/1-1-1/scripts/HTTPD_install.sh new file mode 100755 index 00000000..5a2a4c5c --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/scripts/HTTPD_install.sh @@ -0,0 +1,30 @@ +#!/bin/bash + +cd /bottlenecks/rubbos/rubbos_scripts/1-1-1 +source set_bottlenecks_rubbos_env.sh + +echo "INSTALLING APACHE on $HOSTNAME" + +mkdir -p $BOTTLENECKS_TOP +chmod 755 $BOTTLENECKS_TOP +mkdir -p $RUBBOS_TOP +chmod 755 $RUBBOS_TOP +mkdir -p $RUBBOS_APP +chmod 755 $RUBBOS_APP + +# apache +tar zxf $SOFTWARE_HOME/$HTTPD_TARBALL --directory=$RUBBOS_APP +cd $HTTPD_INSTALL_FILES +./configure --prefix=$HTTPD_HOME --enable-module=so --enable-so --with-mpm=worker +make +make install + +# mod jk +tar zxf $SOFTWARE_HOME/$MOD_JK_TARBALL --directory=$RUBBOS_APP +tar zxf $SOFTWARE_HOME/$JAVA_TARBALL --directory=$RUBBOS_APP +cd $MOD_JK_INSTALL_CONFIGURE +./configure --with-apxs=$HTTPD_HOME/bin/apxs --enable-jni --with-java-home=$JAVA_HOME +make +make install + +echo "APACHE IS INSTALLED on $HOSTNAME" diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/HTTPD_rubbos_install.sh b/rubbos/rubbos_scripts/1-1-1/scripts/HTTPD_rubbos_install.sh new file mode 100755 index 00000000..74030691 --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/scripts/HTTPD_rubbos_install.sh @@ -0,0 +1,25 @@ +#!/bin/bash + +cd /bottlenecks/rubbos/rubbos_scripts/1-1-1 +source set_bottlenecks_rubbos_env.sh + +echo "INSTALLING RUBBOS/SYSSTAT on $HOSTNAME" + +mkdir -p $RUBBOS_APP + +# install RUBBoS +tar xzf $SOFTWARE_HOME/$RUBBOS_TARBALL --directory=$RUBBOS_APP +cp $SOFTWARE_HOME/flush_cache $RUBBOS_HOME/bench/. + +# install sysstat +tar xzf $SOFTWARE_HOME/$SYSSTAT_TARBALL --directory=$RUBBOS_APP +cd $SYSSTAT_HOME +./configure --prefix=$SYSSTAT_HOME +make +sudo make install + +# install a script to collect statistics data +cp $OUTPUT_HOME/rubbos_conf/cpu_mem.sh $RUBBOS_APP/. +chmod 755 $RUBBOS_APP/cpu_mem.sh + +echo "DONE INSTALLING RUBBOS/SYSSTAT on $HOSTNAME" diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/HTTPD_rubbos_uninstall.sh b/rubbos/rubbos_scripts/1-1-1/scripts/HTTPD_rubbos_uninstall.sh new file mode 100755 index 00000000..b61a76e8 --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/scripts/HTTPD_rubbos_uninstall.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +cd /bottlenecks/rubbos/rubbos_scripts/1-1-1 +source set_bottlenecks_rubbos_env.sh + +cd $SYSSTAT_HOME +sudo make uninstall +sudo rm -rf $SYSSTAT_HOME +rm -rf $RUBBOS_APP diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/HTTPD_stop.sh b/rubbos/rubbos_scripts/1-1-1/scripts/HTTPD_stop.sh new file mode 100755 index 00000000..77d88321 --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/scripts/HTTPD_stop.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +cd /bottlenecks/rubbos/rubbos_scripts/1-1-1 +source set_bottlenecks_rubbos_env.sh + +echo "STOPPING APACHE on $HOSTNAME" + +$HTTPD_HOME/bin/apachectl -f $HTTPD_HOME/conf/httpd.conf -k stop + +echo "APACHE IS STOPPED on $HOSTNAME" + + diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/HTTPD_uninstall.sh b/rubbos/rubbos_scripts/1-1-1/scripts/HTTPD_uninstall.sh new file mode 100755 index 00000000..4504dd26 --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/scripts/HTTPD_uninstall.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +cd /bottlenecks/rubbos/rubbos_scripts/1-1-1 +source set_bottlenecks_rubbos_env.sh + +rm -rf $HTTPD_INSTALL_FILES +rm -rf $HTTPD_HOME + + diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/MYSQL1_configure.sh b/rubbos/rubbos_scripts/1-1-1/scripts/MYSQL1_configure.sh new file mode 100755 index 00000000..5b5362ab --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/scripts/MYSQL1_configure.sh @@ -0,0 +1,22 @@ +#!/bin/bash + +cd /bottlenecks/rubbos/rubbos_scripts/1-1-1 +source set_bottlenecks_rubbos_env.sh + +echo "CONFIGURING MYSQL on $HOSTNAME" + +cd $MYSQL_HOME +cp support-files/my-medium.cnf /etc/my.cnf +bin/mysqld_safe --user=$BOTTLENECKS_USER & +sleep 10 +#bin/mysqladmin -u root password 'new-password' +cp support-files/mysql.server /etc/init.d/mysql.server +/etc/init.d/mysql.server status + +if [ -f "/usr/local/bin/mysql" ]; then +rm -rf /usr/local/bin/mysql +fi + +ln -s $MYSQL_HOME/bin/mysql /usr/local/bin/mysql + +echo "DONE CONFIGURING MYSQL on $HOSTNAME" diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/MYSQL1_ignition.sh b/rubbos/rubbos_scripts/1-1-1/scripts/MYSQL1_ignition.sh new file mode 100755 index 00000000..f9ea6a41 --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/scripts/MYSQL1_ignition.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +cd /bottlenecks/rubbos/rubbos_scripts/1-1-1 +source set_bottlenecks_rubbos_env.sh + +echo "STARTING MYSQL on $HOSTNAME" + +cd $MYSQL_HOME +bin/safe_mysqld --defaults-file="$MYSQL_HOME/my.cnf" --datadir=$MYSQL_DATA_DIR --pid-file=$MYSQL_PID_FILE --socket=$MYSQL_SOCKET --port=$MYSQL_PORT --user=root --log-bin=rubbos-bin --max_connections=500 --log-slow-queries & +#bin/safe_mysqld --defaults-file="$MYSQL_HOME/my.cnf" --datadir=$MYSQL_DATA_DIR --log=$MYSQL_ERR_LOG --pid-file=$MYSQL_PID_FILE --socket=$MYSQL_SOCKET --port=$MYSQL_PORT --user=root &#--log-bin=rubbos-bin + +echo "MYSQL IS RUNNING on $HOSTNAME" diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/MYSQL1_install.sh b/rubbos/rubbos_scripts/1-1-1/scripts/MYSQL1_install.sh new file mode 100755 index 00000000..c716a171 --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/scripts/MYSQL1_install.sh @@ -0,0 +1,33 @@ +#!/bin/bash + +cd /bottlenecks/rubbos/rubbos_scripts/1-1-1 +source set_bottlenecks_rubbos_env.sh + +echo "INSTALLING MYSQL on $HOSTNAME" + +mkdir -p $BOTTLENECKS_TOP +chmod 755 $BOTTLENECKS_TOP +mkdir -p $RUBBOS_TOP +chmod 755 $RUBBOS_TOP +mkdir -p $RUBBOS_APP +chmod 755 $RUBBOS_APP + +cd /root +groupadd bottlenecks +useradd -r -g bottlenecks $BOTTLENECKS_USER +tar xzf $SOFTWARE_HOME/$MYSQL_TARBALL --directory=$RUBBOS_APP +cd /usr/local +ln -s $MYSQL_HOME mysql +cd mysql +chown -R $BOTTLENECKS_USER . +chgrp -R bottlenecks . +#scripts/mysql_install_db --verbose --user=$BOTTLENECKS_USER --basedir=$MYSQL_HOME --datadir=$MYSQL_DATA_DIR +scripts/mysql_install_db --user=$BOTTLENECKS_USER +chown -R root . +chown -R $BOTTLENECKS_USER data + +#echo "begin install mysql" +#cd $MYSQL_HOME +#scripts/mysql_install_db --no-defaults --user=root --basedir=$MYSQL_HOME --port=$MYSQL_PORT --datadir=$MYSQL_DATA_DIR --log=$MYSQL_ERR_LOG --pid-file=$MYSQL_PID_FILE --socket=$MYSQL_SOCKET + +echo "DONE INSTALLING MYSQL on $HOSTNAME" diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/MYSQL1_reset.sh b/rubbos/rubbos_scripts/1-1-1/scripts/MYSQL1_reset.sh new file mode 100755 index 00000000..551c9d7f --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/scripts/MYSQL1_reset.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +cd /bottlenecks/rubbos/rubbos_scripts/1-1-1 +source set_bottlenecks_rubbos_env.sh + +echo "RESETING MYSQL on $HOSTNAME" +# copy rubbos data files +tar xzf $RUBBOS_TOP/$RUBBOS_DATA_TARBALL --directory=$MYSQL_HOME/data/rubbos + +echo "DONE RESETING MYSQL on $HOSTNAME" +sleep 5 diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/MYSQL1_rubbos_install.sh b/rubbos/rubbos_scripts/1-1-1/scripts/MYSQL1_rubbos_install.sh new file mode 100755 index 00000000..dd2bd46e --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/scripts/MYSQL1_rubbos_install.sh @@ -0,0 +1,29 @@ +#!/bin/bash + +cd /bottlenecks/rubbos/rubbos_scripts/1-1-1 +source set_bottlenecks_rubbos_env.sh + +echo "INSTALLING RUBBOS/SYSSTAT on $HOSTNAME" + +mkdir -p $RUBBOS_APP + +# install RUBBoS +tar xzf $SOFTWARE_HOME/$RUBBOS_TARBALL --directory=$RUBBOS_APP +#tar xzf $SOFTWARE_HOME/rubbos_html.tar.gz --directory=$RUBBOS_HOME/Servlet_HTML/ +cp $SOFTWARE_HOME/flush_cache $RUBBOS_HOME/bench/. + +cp $SOFTWARE_HOME/$RUBBOS_DATA_TARBALL $RUBBOS_APP/ + +# install sysstat +tar xzf $SOFTWARE_HOME/$SYSSTAT_TARBALL --directory=$RUBBOS_APP + +cd $SYSSTAT_HOME +./configure --prefix=$SYSSTAT_HOME +make +sudo make install + +# install a script to collect statistics data +cp $OUTPUT_HOME/rubbos_conf/cpu_mem.sh $RUBBOS_APP/. +chmod 755 $RUBBOS_APP/cpu_mem.sh + +echo "DONE INSTALLING RUBBOS/SYSSTAT on $HOSTNAME" diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/MYSQL1_rubbos_uninstall.sh b/rubbos/rubbos_scripts/1-1-1/scripts/MYSQL1_rubbos_uninstall.sh new file mode 100755 index 00000000..b3e85df0 --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/scripts/MYSQL1_rubbos_uninstall.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +cd /bottlenecks/rubbos/rubbos_scripts/1-1-1 +source set_bottlenecks_rubbos_env.sh + +cd $SYSSTAT_HOME +sudo make uninstall +sudo rm -rf $SYSSTAT_HOME +rm -rf $RUBBOS_HOME diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/MYSQL1_stop.sh b/rubbos/rubbos_scripts/1-1-1/scripts/MYSQL1_stop.sh new file mode 100755 index 00000000..8511481a --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/scripts/MYSQL1_stop.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +cd /bottlenecks/rubbos/rubbos_scripts/1-1-1 +source set_bottlenecks_rubbos_env.sh + +echo "STOPPING MYSQL on $HOSTNAME" + +cd $MYSQL_HOME +bin/mysqladmin --socket=$MYSQL_SOCKET --user=root --password=$ROOT_PASSWORD shutdown + +echo "MYSQL IS STOPPED on $HOSTNAME" diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/MYSQL1_uninstall.sh b/rubbos/rubbos_scripts/1-1-1/scripts/MYSQL1_uninstall.sh new file mode 100755 index 00000000..7b3dfb7b --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/scripts/MYSQL1_uninstall.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +cd /bottlenecks/rubbos/rubbos_scripts/1-1-1 +source set_bottlenecks_rubbos_env.sh + +rm -rf $MYSQL_HOME +#rm -rf $ELBA_TOP diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/TOMCAT1_configure.sh b/rubbos/rubbos_scripts/1-1-1/scripts/TOMCAT1_configure.sh new file mode 100755 index 00000000..ea4b57a0 --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/scripts/TOMCAT1_configure.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +cd /bottlenecks/rubbos/rubbos_scripts/1-1-1 +source set_bottlenecks_rubbos_env.sh + +echo "CONFIGURING TOMCAT on $HOSTNAME" + +cp $OUTPUT_HOME/tomcat_conf/server.xml-$HOSTNAME $CATALINA_HOME/conf/server.xml + +echo "DONE CONFIGURING TOMCAT on $HOSTNAME" diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/TOMCAT1_ignition.sh b/rubbos/rubbos_scripts/1-1-1/scripts/TOMCAT1_ignition.sh new file mode 100755 index 00000000..e3be13d2 --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/scripts/TOMCAT1_ignition.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +cd /bottlenecks/rubbos/rubbos_scripts/1-1-1 +source set_bottlenecks_rubbos_env.sh + +echo "STARTING TOMCAT on $HOSTNAME" + +cd $CATALINA_HOME/bin +./startup.sh + +echo "TOMCAT IS RUNNING on $HOSTNAME" diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/TOMCAT1_install.sh b/rubbos/rubbos_scripts/1-1-1/scripts/TOMCAT1_install.sh new file mode 100755 index 00000000..8e0f86c2 --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/scripts/TOMCAT1_install.sh @@ -0,0 +1,20 @@ +#!/bin/bash + +cd /bottlenecks/rubbos/rubbos_scripts/1-1-1 +source set_bottlenecks_rubbos_env.sh + +echo "INSTALLING TOMCAT on $HOSTNAME" + +mkdir -p $BOTTLENECKS_TOP +chmod 755 $BOTTLENECKS_TOP +mkdir -p $RUBBOS_TOP +chmod 755 $RUBBOS_TOP +mkdir -p $RUBBOS_APP +chmod 755 $RUBBOS_APP + +tar xzf $SOFTWARE_HOME/$TOMCAT_TARBALL --directory=$RUBBOS_APP +tar xzf $SOFTWARE_HOME/$JAVA_TARBALL --directory=$RUBBOS_APP +tar xzf $SOFTWARE_HOME/$J2EE_TARBALL --directory=$RUBBOS_APP +tar xzf $SOFTWARE_HOME/$ANT_TARBALL --directory=$RUBBOS_APP + +echo "DONE INSTALLING TOMCAT on $HOSTNAME" diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/TOMCAT1_rubbosSL_configure.sh b/rubbos/rubbos_scripts/1-1-1/scripts/TOMCAT1_rubbosSL_configure.sh new file mode 100755 index 00000000..91e4065f --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/scripts/TOMCAT1_rubbosSL_configure.sh @@ -0,0 +1,26 @@ +#!/bin/bash + +cd /bottlenecks/rubbos/rubbos_scripts/1-1-1 +source set_bottlenecks_rubbos_env.sh + +echo "CONFIGURING RUBBOS SERVLET on $HOSTNAME" + +\cp $OUTPUT_HOME/rubbos_conf/build.properties $RUBBOS_HOME/ + +\cp -r $WORK_HOME/rubbos_files/Servlets $RUBBOS_HOME/ +\cp $OUTPUT_HOME/rubbos_conf/mysql.properties $RUBBOS_HOME/Servlets/ +\cp $OUTPUT_HOME/rubbos_conf/build.xml $RUBBOS_HOME/Servlets/ +\cp $OUTPUT_HOME/rubbos_conf/Config.java $RUBBOS_HOME/Servlets/edu/rice/rubbos/servlets/ +\cp $OUTPUT_HOME/rubbos_conf/web.xml $RUBBOS_HOME/Servlet_HTML/WEB-INF/ + +cd $RUBBOS_HOME/Servlets/edu/rice/rubbos/servlets +sed 's/public static final int BrowseCategoriesPoolSize = 6;/public static final int BrowseCategoriesPoolSize = 12;/g' Config.java > Config.java.tmp +mv Config.java.tmp Config.java + +cd $RUBBOS_HOME/Servlets +/bottlenecks/rubbos/app/apache-ant-1.6.5/bin/ant clean +/bottlenecks/rubbos/app/apache-ant-1.6.5/bin/ant dist +make +cp rubbos.war $CATALINA_HOME/webapps/ + +echo "DONE CONFIGURING RUBBOS SERVLET on $HOSTNAME" diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/TOMCAT1_rubbos_install.sh b/rubbos/rubbos_scripts/1-1-1/scripts/TOMCAT1_rubbos_install.sh new file mode 100755 index 00000000..1027cc71 --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/scripts/TOMCAT1_rubbos_install.sh @@ -0,0 +1,29 @@ +#!/bin/bash + +cd /bottlenecks/rubbos/rubbos_scripts/1-1-1 +source set_bottlenecks_rubbos_env.sh + +echo "INSTALLING RUBBOS/SYSSTAT on $HOSTNAME" + +mkdir -p $RUBBOS_APP +# install RUBBoS +tar xzf $SOFTWARE_HOME/$RUBBOS_TARBALL --directory=$RUBBOS_APP +mkdir -p $RUBBOS_HOME/bench +cp $SOFTWARE_HOME/flush_cache $RUBBOS_HOME/bench/. + +mkdir -p $SYSSTAT_HOME +# install sysstat +tar xzf $SOFTWARE_HOME/$SYSSTAT_TARBALL --directory=$RUBBOS_APP + +cd $SYSSTAT_HOME +./configure --prefix=$SYSSTAT_HOME +make +sudo make install + +# install a script to collect statistics data +cp $OUTPUT_HOME/rubbos_conf/cpu_mem.sh $RUBBOS_APP/. +chmod 755 $RUBBOS_APP/cpu_mem.sh + +echo "DONE INSTALLING RUBBOS/SYSSTAT on $HOSTNAME" + + diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/TOMCAT1_rubbos_uninstall.sh b/rubbos/rubbos_scripts/1-1-1/scripts/TOMCAT1_rubbos_uninstall.sh new file mode 100755 index 00000000..37f16f9c --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/scripts/TOMCAT1_rubbos_uninstall.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +cd /bottlenecks/rubbos/rubbos_scripts/1-1-1 +source set_bottlenecks_rubbos_env.sh + +cd $SYSSTAT_HOME +sudo make uninstall +sudo rm -rf $SYSSTAT_HOME +rm -rf $RUBBOS_HOME + + diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/TOMCAT1_stop.sh b/rubbos/rubbos_scripts/1-1-1/scripts/TOMCAT1_stop.sh new file mode 100755 index 00000000..d6c2ac7b --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/scripts/TOMCAT1_stop.sh @@ -0,0 +1,13 @@ +#!/bin/bash + +cd /bottlenecks/rubbos/rubbos_scripts/1-1-1 +source set_bottlenecks_rubbos_env.sh + +echo "STOPPING TOMCAT on $HOSTNAME" + +cd $CATALINA_HOME/bin +./shutdown.sh + +echo "TOMCAT IS STOPPED on $HOSTNAME" + + diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/TOMCAT1_uninstall.sh b/rubbos/rubbos_scripts/1-1-1/scripts/TOMCAT1_uninstall.sh new file mode 100755 index 00000000..fa4ff267 --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/scripts/TOMCAT1_uninstall.sh @@ -0,0 +1,8 @@ +#!/bin/bash + +cd /bottlenecks/rubbos/rubbos_scripts/1-1-1 +source set_bottlenecks_rubbos_env.sh + +rm -rf $CATALINA_HOME + + diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/bakrun.sh.bak b/rubbos/rubbos_scripts/1-1-1/scripts/bakrun.sh.bak new file mode 100755 index 00000000..c7be8c73 --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/scripts/bakrun.sh.bak @@ -0,0 +1,194 @@ + +cd /root/rui/rubbos/rubbosMulini6/1-1-1 +source set_elba_env.sh +cd /root/rui/rubbos/rubbosMulini6/1-1-1/scripts +# Transfer all sub scripts to target hosts +echo "*** scp scripts *************************************************" + +scp -o StrictHostKeyChecking=no -o BatchMode=yes CONTROL_checkScp_exec.sh $CONTROL_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes CONTROL_emulabConf_exec.sh $CONTROL_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes CONTROL_rubbos_exec.sh $CONTROL_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes BENCHMARK_rubbos_install.sh $BENCHMARK_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes BENCHMARK_install.sh $BENCHMARK_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes BENCHMARK_configure.sh $BENCHMARK_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes BENCHMARK_uninstall.sh $BENCHMARK_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes BENCHMARK_rubbos_uninstall.sh $BENCHMARK_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes CLIENT1_rubbos_install.sh $CLIENT1_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes CLIENT1_install.sh $CLIENT1_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes CLIENT1_configure.sh $CLIENT1_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes CLIENT1_uninstall.sh $CLIENT1_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes CLIENT1_rubbos_uninstall.sh $CLIENT1_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes CLIENT2_rubbos_install.sh $CLIENT2_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes CLIENT2_install.sh $CLIENT2_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes CLIENT2_configure.sh $CLIENT2_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes CLIENT2_uninstall.sh $CLIENT2_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes CLIENT2_rubbos_uninstall.sh $CLIENT2_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes CLIENT3_rubbos_install.sh $CLIENT3_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes CLIENT3_install.sh $CLIENT3_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes CLIENT3_configure.sh $CLIENT3_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes CLIENT3_uninstall.sh $CLIENT3_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes CLIENT3_rubbos_uninstall.sh $CLIENT3_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes CLIENT4_rubbos_install.sh $CLIENT4_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes CLIENT4_install.sh $CLIENT4_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes CLIENT4_configure.sh $CLIENT4_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes CLIENT4_uninstall.sh $CLIENT4_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes CLIENT4_rubbos_uninstall.sh $CLIENT4_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes HTTPD_install.sh $HTTPD_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes HTTPD_rubbos_install.sh $HTTPD_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes HTTPD_configure.sh $HTTPD_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes HTTPD_ignition.sh $HTTPD_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes HTTPD_stop.sh $HTTPD_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes HTTPD_rubbos_uninstall.sh $HTTPD_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes HTTPD_uninstall.sh $HTTPD_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes TOMCAT1_install.sh $TOMCAT1_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes TOMCAT1_rubbos_install.sh $TOMCAT1_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes TOMCAT1_configure.sh $TOMCAT1_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes TOMCAT1_rubbosSL_configure.sh $TOMCAT1_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes TOMCAT1_ignition.sh $TOMCAT1_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes TOMCAT1_stop.sh $TOMCAT1_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes TOMCAT1_rubbos_uninstall.sh $TOMCAT1_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes TOMCAT1_uninstall.sh $TOMCAT1_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes MYSQL1_install.sh $MYSQL1_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes MYSQL1_rubbos_install.sh $MYSQL1_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes MYSQL1_configure.sh $MYSQL1_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes MYSQL1_reset.sh $MYSQL1_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes MYSQL1_ignition.sh $MYSQL1_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes MYSQL1_stop.sh $MYSQL1_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes MYSQL1_rubbos_uninstall.sh $MYSQL1_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes MYSQL1_uninstall.sh $MYSQL1_HOST:/tmp + + +# Install and Configure and run Apache, Tomcat, CJDBC, and MySQL +echo "*** install scripts & configure & execute ***********************" + +ssh $CONTROL_HOST /tmp/CONTROL_checkScp_exec.sh +ssh $CONTROL_HOST /tmp/CONTROL_emulabConf_exec.sh + + +ssh $MYSQL1_HOST /tmp/MYSQL1_install.sh + + +ssh $TOMCAT1_HOST /tmp/TOMCAT1_install.sh + + +ssh $HTTPD_HOST /tmp/HTTPD_install.sh + + +ssh $MYSQL1_HOST /tmp/MYSQL1_rubbos_install.sh + + +ssh $TOMCAT1_HOST /tmp/TOMCAT1_rubbos_install.sh + + +ssh $HTTPD_HOST /tmp/HTTPD_rubbos_install.sh + + +ssh $BENCHMARK_HOST /tmp/BENCHMARK_rubbos_install.sh + + +ssh $CLIENT1_HOST /tmp/CLIENT1_rubbos_install.sh + + +ssh $CLIENT2_HOST /tmp/CLIENT2_rubbos_install.sh + + +ssh $CLIENT3_HOST /tmp/CLIENT3_rubbos_install.sh + + +ssh $CLIENT4_HOST /tmp/CLIENT4_rubbos_install.sh + + +ssh $BENCHMARK_HOST /tmp/BENCHMARK_install.sh + + +ssh $CLIENT1_HOST /tmp/CLIENT1_install.sh + + +ssh $CLIENT2_HOST /tmp/CLIENT2_install.sh + + +ssh $CLIENT3_HOST /tmp/CLIENT3_install.sh + + +ssh $CLIENT4_HOST /tmp/CLIENT4_install.sh + + +ssh $MYSQL1_HOST /tmp/MYSQL1_configure.sh & +sleep 60 + +ssh $TOMCAT1_HOST /tmp/TOMCAT1_configure.sh + + +ssh $HTTPD_HOST /tmp/HTTPD_configure.sh + + +ssh $BENCHMARK_HOST /tmp/BENCHMARK_configure.sh + + +ssh $CLIENT1_HOST /tmp/CLIENT1_configure.sh + + +ssh $CLIENT2_HOST /tmp/CLIENT2_configure.sh + + +ssh $CLIENT3_HOST /tmp/CLIENT3_configure.sh + + +ssh $CLIENT4_HOST /tmp/CLIENT4_configure.sh + + +ssh $TOMCAT1_HOST /tmp/TOMCAT1_rubbosSL_configure.sh + + +#ssh $CONTROL_HOST /tmp/CONTROL_rubbos_exec.sh + diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/kill_all.sh b/rubbos/rubbos_scripts/1-1-1/scripts/kill_all.sh new file mode 100755 index 00000000..0534f749 --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/scripts/kill_all.sh @@ -0,0 +1,14 @@ +#!/bin/bash + +cd /bottlenecks/rubbos/rubbos_scripts/1-1-1 +source set_bottlenecks_rubbos_env.sh + +$OUTPUT_HOME/scripts/stop_all.sh + +for i in "$BENCHMARK_HOST" "$CLIENT1_HOST" "$CLIENT2_HOST" "$CLIENT3_HOST" "$CLIENT4_HOST" "$HTTPD_HOST" "$TOMCAT1_HOST" "$MYSQL1_HOST" +do + ssh $i " + kill -9 -1 + " +done + diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/log b/rubbos/rubbos_scripts/1-1-1/scripts/log new file mode 100644 index 00000000..72eb2e92 --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/scripts/log @@ -0,0 +1,2198 @@ +Starting RUBBoS +Resetting all data + RESETING MYSQL on node9.hanwei.infosphere.emulab.net + DONE RESETING MYSQL on node9.hanwei.infosphere.emulab.net +Start Browsing Only with rubbos.properties_200 +Removing previous logs... + STARTING MYSQL on node9.hanwei.infosphere.emulab.net + MYSQL IS RUNNING on node9.hanwei.infosphere.emulab.net +Starting mysqld daemon with databases from /mnt/elba/rubbos/mysql-5.0.51a-linux-i686-glibc23/data + STARTING TOMCAT on node8.hanwei.infosphere.emulab.net + TOMCAT IS RUNNING on node8.hanwei.infosphere.emulab.net + STARTING APACHE on node7.hanwei.infosphere.emulab.net + APACHE IS RUNNING on node7.hanwei.infosphere.emulab.net +rm: cannot remove `20*': No such file or directory +Flushing 490000 KB of memory ... Done +Flushing 880000 KB of memory ... Done +Flushing 880000 KB of memory ... Done +Flushing 780000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +/mnt/elba/rubbos/jdk1.6.0_27/bin/java -classpath Client:Client/rubbos_client.jar:. -Xmx1300m -Dhttp.keepAlive=true -Dhttp.maxConnections=1000000 edu.rice.rubbos.client.ClientEmulator +RUBBoS client emulator - (C) Rice University/INRIA 2001 + +Creating report directory bench/2012-01-20@10-50-00/ +Redirecting output to '/mnt/elba/rubbos/RUBBoS/bench/2012-01-20@10-50-00/index.html' +Please wait while experiment is running ... +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +You cannot specify any performance counter events +because OProfile is in timer mode. +No vmlinux file specified. You must specify the correct vmlinux file, e.g. +opcontrol --vmlinux=/path/to/vmlinux +If you do not have a vmlinux file, use +opcontrol --no-vmlinux +Enter opcontrol --help for full options +/mnt/elba/rubbos/cpu_mem.sh: line 80: 14239 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 19683 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 15595 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 15327 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 16038 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 28702 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 13965 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 19986 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +Daemon not running +Daemon not running +opreport error: No sample file found: try running opcontrol --dump +or specify a session containing sample files + +The benchmark has finished. Now, collecting results... +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory + STOPPING APACHE on node7.hanwei.infosphere.emulab.net + APACHE IS STOPPED on node7.hanwei.infosphere.emulab.net + STOPPING TOMCAT on node8.hanwei.infosphere.emulab.net + TOMCAT IS STOPPED on node8.hanwei.infosphere.emulab.net + STOPPING MYSQL on node9.hanwei.infosphere.emulab.net +STOPPING server from pid file /mnt/elba/rubbos/mysql-5.0.51a-linux-i686-glibc23/run/mysqld.pid +120120 11:13:29 mysqld ended + + MYSQL IS STOPPED on node9.hanwei.infosphere.emulab.net +Connection to node2 closed by remote host. +Connection to node3 closed by remote host. +Connection to node4 closed by remote host. +Connection to node5 closed by remote host. +Connection to node6 closed by remote host. +Connection to node7 closed by remote host. +Connection to node8 closed by remote host. +Connection to node9 closed by remote host. +End Browsing Only with rubbos.properties_200 +Resetting all data + RESETING MYSQL on node9.hanwei.infosphere.emulab.net + DONE RESETING MYSQL on node9.hanwei.infosphere.emulab.net +Start Browsing Only with rubbos.properties_300 +Removing previous logs... + STARTING MYSQL on node9.hanwei.infosphere.emulab.net + MYSQL IS RUNNING on node9.hanwei.infosphere.emulab.net +Starting mysqld daemon with databases from /mnt/elba/rubbos/mysql-5.0.51a-linux-i686-glibc23/data + STARTING TOMCAT on node8.hanwei.infosphere.emulab.net + TOMCAT IS RUNNING on node8.hanwei.infosphere.emulab.net + STARTING APACHE on node7.hanwei.infosphere.emulab.net + APACHE IS RUNNING on node7.hanwei.infosphere.emulab.net +rm: cannot remove `20*': No such file or directory +Flushing 490000 KB of memory ... Done +Flushing 880000 KB of memory ... Done +Flushing 880000 KB of memory ... Done +Flushing 780000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +/mnt/elba/rubbos/jdk1.6.0_27/bin/java -classpath Client:Client/rubbos_client.jar:. -Xmx1300m -Dhttp.keepAlive=true -Dhttp.maxConnections=1000000 edu.rice.rubbos.client.ClientEmulator +RUBBoS client emulator - (C) Rice University/INRIA 2001 + +Creating report directory bench/2012-01-20@11-16-30/ +Redirecting output to '/mnt/elba/rubbos/RUBBoS/bench/2012-01-20@11-16-30/index.html' +Please wait while experiment is running ... +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +You cannot specify any performance counter events +because OProfile is in timer mode. +No vmlinux file specified. You must specify the correct vmlinux file, e.g. +opcontrol --vmlinux=/path/to/vmlinux +If you do not have a vmlinux file, use +opcontrol --no-vmlinux +Enter opcontrol --help for full options +/mnt/elba/rubbos/cpu_mem.sh: line 80: 17297 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 25335 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 18508 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 18251 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 18994 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 31994 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 16959 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 22996 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +Daemon not running +Daemon not running +opreport error: No sample file found: try running opcontrol --dump +or specify a session containing sample files + +The benchmark has finished. Now, collecting results... +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory + STOPPING APACHE on node7.hanwei.infosphere.emulab.net + APACHE IS STOPPED on node7.hanwei.infosphere.emulab.net + STOPPING TOMCAT on node8.hanwei.infosphere.emulab.net + TOMCAT IS STOPPED on node8.hanwei.infosphere.emulab.net + STOPPING MYSQL on node9.hanwei.infosphere.emulab.net +STOPPING server from pid file /mnt/elba/rubbos/mysql-5.0.51a-linux-i686-glibc23/run/mysqld.pid +120120 11:39:28 mysqld ended + + MYSQL IS STOPPED on node9.hanwei.infosphere.emulab.net +Connection to node2 closed by remote host. +Connection to node3 closed by remote host. +Connection to node4 closed by remote host. +Connection to node5 closed by remote host. +Connection to node6 closed by remote host. +Connection to node7 closed by remote host. +Connection to node8 closed by remote host. +Connection to node9 closed by remote host. +End Browsing Only with rubbos.properties_300 +Resetting all data + RESETING MYSQL on node9.hanwei.infosphere.emulab.net + DONE RESETING MYSQL on node9.hanwei.infosphere.emulab.net +Start Browsing Only with rubbos.properties_400 +Removing previous logs... + STARTING MYSQL on node9.hanwei.infosphere.emulab.net + MYSQL IS RUNNING on node9.hanwei.infosphere.emulab.net +Starting mysqld daemon with databases from /mnt/elba/rubbos/mysql-5.0.51a-linux-i686-glibc23/data + STARTING TOMCAT on node8.hanwei.infosphere.emulab.net + TOMCAT IS RUNNING on node8.hanwei.infosphere.emulab.net + STARTING APACHE on node7.hanwei.infosphere.emulab.net + APACHE IS RUNNING on node7.hanwei.infosphere.emulab.net +rm: cannot remove `20*': No such file or directory +Flushing 490000 KB of memory ... Done +Flushing 880000 KB of memory ... Done +Flushing 880000 KB of memory ... Done +Flushing 780000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +/mnt/elba/rubbos/jdk1.6.0_27/bin/java -classpath Client:Client/rubbos_client.jar:. -Xmx1300m -Dhttp.keepAlive=true -Dhttp.maxConnections=1000000 edu.rice.rubbos.client.ClientEmulator +RUBBoS client emulator - (C) Rice University/INRIA 2001 + +Creating report directory bench/2012-01-20@11-42-29/ +Redirecting output to '/mnt/elba/rubbos/RUBBoS/bench/2012-01-20@11-42-29/index.html' +Please wait while experiment is running ... +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +You cannot specify any performance counter events +because OProfile is in timer mode. +No vmlinux file specified. You must specify the correct vmlinux file, e.g. +opcontrol --vmlinux=/path/to/vmlinux +If you do not have a vmlinux file, use +opcontrol --no-vmlinux +Enter opcontrol --help for full options +/mnt/elba/rubbos/cpu_mem.sh: line 80: 20345 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 30981 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 21434 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 21190 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 21966 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 2876 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 19969 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 26091 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +Daemon not running +Daemon not running +opreport error: No sample file found: try running opcontrol --dump +or specify a session containing sample files + +The benchmark has finished. Now, collecting results... +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory + STOPPING APACHE on node7.hanwei.infosphere.emulab.net + APACHE IS STOPPED on node7.hanwei.infosphere.emulab.net + STOPPING TOMCAT on node8.hanwei.infosphere.emulab.net + TOMCAT IS STOPPED on node8.hanwei.infosphere.emulab.net + STOPPING MYSQL on node9.hanwei.infosphere.emulab.net +STOPPING server from pid file /mnt/elba/rubbos/mysql-5.0.51a-linux-i686-glibc23/run/mysqld.pid +120120 12:05:09 mysqld ended + + MYSQL IS STOPPED on node9.hanwei.infosphere.emulab.net +Connection to node2 closed by remote host. +Connection to node3 closed by remote host. +Connection to node4 closed by remote host. +Connection to node5 closed by remote host. +Connection to node6 closed by remote host. +Connection to node7 closed by remote host. +Connection to node8 closed by remote host. +Connection to node9 closed by remote host. +End Browsing Only with rubbos.properties_400 +Resetting all data + RESETING MYSQL on node9.hanwei.infosphere.emulab.net + DONE RESETING MYSQL on node9.hanwei.infosphere.emulab.net +Start Browsing Only with rubbos.properties_500 +Removing previous logs... + STARTING MYSQL on node9.hanwei.infosphere.emulab.net + MYSQL IS RUNNING on node9.hanwei.infosphere.emulab.net +Starting mysqld daemon with databases from /mnt/elba/rubbos/mysql-5.0.51a-linux-i686-glibc23/data + STARTING TOMCAT on node8.hanwei.infosphere.emulab.net + TOMCAT IS RUNNING on node8.hanwei.infosphere.emulab.net + STARTING APACHE on node7.hanwei.infosphere.emulab.net + APACHE IS RUNNING on node7.hanwei.infosphere.emulab.net +rm: cannot remove `20*': No such file or directory +Flushing 490000 KB of memory ... Done +Flushing 880000 KB of memory ... Done +Flushing 880000 KB of memory ... Done +Flushing 780000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +/mnt/elba/rubbos/jdk1.6.0_27/bin/java -classpath Client:Client/rubbos_client.jar:. -Xmx1300m -Dhttp.keepAlive=true -Dhttp.maxConnections=1000000 edu.rice.rubbos.client.ClientEmulator +RUBBoS client emulator - (C) Rice University/INRIA 2001 + +Creating report directory bench/2012-01-20@12-08-10/ +Redirecting output to '/mnt/elba/rubbos/RUBBoS/bench/2012-01-20@12-08-10/index.html' +Please wait while experiment is running ... +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +You cannot specify any performance counter events +because OProfile is in timer mode. +No vmlinux file specified. You must specify the correct vmlinux file, e.g. +opcontrol --vmlinux=/path/to/vmlinux +If you do not have a vmlinux file, use +opcontrol --no-vmlinux +Enter opcontrol --help for full options +/mnt/elba/rubbos/cpu_mem.sh: line 80: 23397 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 4201 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 24381 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 24146 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 24954 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 85: 6198 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 22997 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 29134 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +Daemon not running +Daemon not running +opreport error: No sample file found: try running opcontrol --dump +or specify a session containing sample files + +The benchmark has finished. Now, collecting results... +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory + STOPPING APACHE on node7.hanwei.infosphere.emulab.net + APACHE IS STOPPED on node7.hanwei.infosphere.emulab.net + STOPPING TOMCAT on node8.hanwei.infosphere.emulab.net + TOMCAT IS STOPPED on node8.hanwei.infosphere.emulab.net + STOPPING MYSQL on node9.hanwei.infosphere.emulab.net +STOPPING server from pid file /mnt/elba/rubbos/mysql-5.0.51a-linux-i686-glibc23/run/mysqld.pid +120120 12:30:52 mysqld ended + + MYSQL IS STOPPED on node9.hanwei.infosphere.emulab.net +Connection to node2 closed by remote host. +Connection to node3 closed by remote host. +Connection to node4 closed by remote host. +Connection to node5 closed by remote host. +Connection to node6 closed by remote host. +Connection to node7 closed by remote host. +Connection to node8 closed by remote host. +Connection to node9 closed by remote host. +End Browsing Only with rubbos.properties_500 +Resetting all data + RESETING MYSQL on node9.hanwei.infosphere.emulab.net + DONE RESETING MYSQL on node9.hanwei.infosphere.emulab.net +Start Browsing Only with rubbos.properties_600 +Removing previous logs... + STARTING MYSQL on node9.hanwei.infosphere.emulab.net + MYSQL IS RUNNING on node9.hanwei.infosphere.emulab.net +Starting mysqld daemon with databases from /mnt/elba/rubbos/mysql-5.0.51a-linux-i686-glibc23/data + STARTING TOMCAT on node8.hanwei.infosphere.emulab.net + TOMCAT IS RUNNING on node8.hanwei.infosphere.emulab.net + STARTING APACHE on node7.hanwei.infosphere.emulab.net + APACHE IS RUNNING on node7.hanwei.infosphere.emulab.net +rm: cannot remove `20*': No such file or directory +Flushing 490000 KB of memory ... Done +Flushing 880000 KB of memory ... Done +Flushing 880000 KB of memory ... Done +Flushing 780000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +/mnt/elba/rubbos/jdk1.6.0_27/bin/java -classpath Client:Client/rubbos_client.jar:. -Xmx1300m -Dhttp.keepAlive=true -Dhttp.maxConnections=1000000 edu.rice.rubbos.client.ClientEmulator +RUBBoS client emulator - (C) Rice University/INRIA 2001 + +Creating report directory bench/2012-01-20@12-33-53/ +Redirecting output to '/mnt/elba/rubbos/RUBBoS/bench/2012-01-20@12-33-53/index.html' +Please wait while experiment is running ... +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +You cannot specify any performance counter events +because OProfile is in timer mode. +No vmlinux file specified. You must specify the correct vmlinux file, e.g. +opcontrol --vmlinux=/path/to/vmlinux +If you do not have a vmlinux file, use +opcontrol --no-vmlinux +Enter opcontrol --help for full options +/mnt/elba/rubbos/cpu_mem.sh: line 80: 26441 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 9839 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 27346 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 27122 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 27964 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 9544 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 26039 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 32286 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +Daemon not running +Daemon not running +opreport error: No sample file found: try running opcontrol --dump +or specify a session containing sample files + +The benchmark has finished. Now, collecting results... +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory + STOPPING APACHE on node7.hanwei.infosphere.emulab.net + APACHE IS STOPPED on node7.hanwei.infosphere.emulab.net + STOPPING TOMCAT on node8.hanwei.infosphere.emulab.net + TOMCAT IS STOPPED on node8.hanwei.infosphere.emulab.net + STOPPING MYSQL on node9.hanwei.infosphere.emulab.net +STOPPING server from pid file /mnt/elba/rubbos/mysql-5.0.51a-linux-i686-glibc23/run/mysqld.pid +120120 12:56:33 mysqld ended + + MYSQL IS STOPPED on node9.hanwei.infosphere.emulab.net +Connection to node2 closed by remote host. +Connection to node3 closed by remote host. +Connection to node4 closed by remote host. +Connection to node5 closed by remote host. +Connection to node6 closed by remote host. +Connection to node7 closed by remote host. +Connection to node8 closed by remote host. +Connection to node9 closed by remote host. +End Browsing Only with rubbos.properties_600 +Resetting all data + RESETING MYSQL on node9.hanwei.infosphere.emulab.net + DONE RESETING MYSQL on node9.hanwei.infosphere.emulab.net +Start Browsing Only with rubbos.properties_700 +Removing previous logs... + STARTING MYSQL on node9.hanwei.infosphere.emulab.net + MYSQL IS RUNNING on node9.hanwei.infosphere.emulab.net +Starting mysqld daemon with databases from /mnt/elba/rubbos/mysql-5.0.51a-linux-i686-glibc23/data + STARTING TOMCAT on node8.hanwei.infosphere.emulab.net + TOMCAT IS RUNNING on node8.hanwei.infosphere.emulab.net + STARTING APACHE on node7.hanwei.infosphere.emulab.net + APACHE IS RUNNING on node7.hanwei.infosphere.emulab.net +rm: cannot remove `20*': No such file or directory +Flushing 490000 KB of memory ... Done +Flushing 880000 KB of memory ... Done +Flushing 880000 KB of memory ... Done +Flushing 780000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +/mnt/elba/rubbos/jdk1.6.0_27/bin/java -classpath Client:Client/rubbos_client.jar:. -Xmx1300m -Dhttp.keepAlive=true -Dhttp.maxConnections=1000000 edu.rice.rubbos.client.ClientEmulator +RUBBoS client emulator - (C) Rice University/INRIA 2001 + +Creating report directory bench/2012-01-20@12-59-33/ +Redirecting output to '/mnt/elba/rubbos/RUBBoS/bench/2012-01-20@12-59-33/index.html' +Please wait while experiment is running ... +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +You cannot specify any performance counter events +because OProfile is in timer mode. +No vmlinux file specified. You must specify the correct vmlinux file, e.g. +opcontrol --vmlinux=/path/to/vmlinux +If you do not have a vmlinux file, use +opcontrol --no-vmlinux +Enter opcontrol --help for full options +/mnt/elba/rubbos/cpu_mem.sh: line 80: 29491 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 15482 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 30330 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 30115 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 30989 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 12905 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 29109 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 3014 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +Daemon not running +Daemon not running +opreport error: No sample file found: try running opcontrol --dump +or specify a session containing sample files + +The benchmark has finished. Now, collecting results... +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory + STOPPING APACHE on node7.hanwei.infosphere.emulab.net + APACHE IS STOPPED on node7.hanwei.infosphere.emulab.net + STOPPING TOMCAT on node8.hanwei.infosphere.emulab.net + TOMCAT IS STOPPED on node8.hanwei.infosphere.emulab.net + STOPPING MYSQL on node9.hanwei.infosphere.emulab.net +STOPPING server from pid file /mnt/elba/rubbos/mysql-5.0.51a-linux-i686-glibc23/run/mysqld.pid +120120 13:22:17 mysqld ended + + MYSQL IS STOPPED on node9.hanwei.infosphere.emulab.net +Connection to node2 closed by remote host. +Connection to node3 closed by remote host. +Connection to node4 closed by remote host. +Connection to node5 closed by remote host. +Connection to node6 closed by remote host. +Connection to node7 closed by remote host. +Connection to node8 closed by remote host. +Connection to node9 closed by remote host. +End Browsing Only with rubbos.properties_700 +Resetting all data + RESETING MYSQL on node9.hanwei.infosphere.emulab.net + DONE RESETING MYSQL on node9.hanwei.infosphere.emulab.net +Start Browsing Only with rubbos.properties_800 +Removing previous logs... + STARTING MYSQL on node9.hanwei.infosphere.emulab.net + MYSQL IS RUNNING on node9.hanwei.infosphere.emulab.net +Starting mysqld daemon with databases from /mnt/elba/rubbos/mysql-5.0.51a-linux-i686-glibc23/data + STARTING TOMCAT on node8.hanwei.infosphere.emulab.net + TOMCAT IS RUNNING on node8.hanwei.infosphere.emulab.net + STARTING APACHE on node7.hanwei.infosphere.emulab.net + APACHE IS RUNNING on node7.hanwei.infosphere.emulab.net +rm: cannot remove `20*': No such file or directory +Flushing 490000 KB of memory ... Done +Flushing 880000 KB of memory ... Done +Flushing 880000 KB of memory ... Done +Flushing 780000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +/mnt/elba/rubbos/jdk1.6.0_27/bin/java -classpath Client:Client/rubbos_client.jar:. -Xmx1300m -Dhttp.keepAlive=true -Dhttp.maxConnections=1000000 edu.rice.rubbos.client.ClientEmulator +RUBBoS client emulator - (C) Rice University/INRIA 2001 + +Creating report directory bench/2012-01-20@13-25-16/ +Redirecting output to '/mnt/elba/rubbos/RUBBoS/bench/2012-01-20@13-25-16/index.html' +Please wait while experiment is running ... +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +You cannot specify any performance counter events +because OProfile is in timer mode. +No vmlinux file specified. You must specify the correct vmlinux file, e.g. +opcontrol --vmlinux=/path/to/vmlinux +If you do not have a vmlinux file, use +opcontrol --no-vmlinux +Enter opcontrol --help for full options +/mnt/elba/rubbos/cpu_mem.sh: line 80: 32533 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 21120 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 866 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 659 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 1572 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 16288 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 32191 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 6112 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +Daemon not running +Daemon not running +opreport error: No sample file found: try running opcontrol --dump +or specify a session containing sample files + +The benchmark has finished. Now, collecting results... +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory + STOPPING APACHE on node7.hanwei.infosphere.emulab.net + APACHE IS STOPPED on node7.hanwei.infosphere.emulab.net + STOPPING TOMCAT on node8.hanwei.infosphere.emulab.net + TOMCAT IS STOPPED on node8.hanwei.infosphere.emulab.net + STOPPING MYSQL on node9.hanwei.infosphere.emulab.net +STOPPING server from pid file /mnt/elba/rubbos/mysql-5.0.51a-linux-i686-glibc23/run/mysqld.pid +120120 13:47:59 mysqld ended + + MYSQL IS STOPPED on node9.hanwei.infosphere.emulab.net +Connection to node2 closed by remote host. +Connection to node3 closed by remote host. +Connection to node4 closed by remote host. +Connection to node5 closed by remote host. +Connection to node6 closed by remote host. +Connection to node7 closed by remote host. +Connection to node8 closed by remote host. +Connection to node9 closed by remote host. +End Browsing Only with rubbos.properties_800 +Resetting all data + RESETING MYSQL on node9.hanwei.infosphere.emulab.net + DONE RESETING MYSQL on node9.hanwei.infosphere.emulab.net +Start Browsing Only with rubbos.properties_900 +Removing previous logs... + STARTING MYSQL on node9.hanwei.infosphere.emulab.net + MYSQL IS RUNNING on node9.hanwei.infosphere.emulab.net +Starting mysqld daemon with databases from /mnt/elba/rubbos/mysql-5.0.51a-linux-i686-glibc23/data + STARTING TOMCAT on node8.hanwei.infosphere.emulab.net + TOMCAT IS RUNNING on node8.hanwei.infosphere.emulab.net + STARTING APACHE on node7.hanwei.infosphere.emulab.net + APACHE IS RUNNING on node7.hanwei.infosphere.emulab.net +rm: cannot remove `20*': No such file or directory +Flushing 490000 KB of memory ... Done +Flushing 880000 KB of memory ... Done +Flushing 880000 KB of memory ... Done +Flushing 780000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +/mnt/elba/rubbos/jdk1.6.0_27/bin/java -classpath Client:Client/rubbos_client.jar:. -Xmx1300m -Dhttp.keepAlive=true -Dhttp.maxConnections=1000000 edu.rice.rubbos.client.ClientEmulator +RUBBoS client emulator - (C) Rice University/INRIA 2001 + +Creating report directory bench/2012-01-20@13-50-58/ +Redirecting output to '/mnt/elba/rubbos/RUBBoS/bench/2012-01-20@13-50-58/index.html' +Please wait while experiment is running ... +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +You cannot specify any performance counter events +because OProfile is in timer mode. +No vmlinux file specified. You must specify the correct vmlinux file, e.g. +opcontrol --vmlinux=/path/to/vmlinux +If you do not have a vmlinux file, use +opcontrol --no-vmlinux +Enter opcontrol --help for full options +/mnt/elba/rubbos/cpu_mem.sh: line 80: 3148 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 26762 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 3926 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 3734 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 4674 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 19688 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 9166 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 2874 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +Daemon not running +Daemon not running +opreport error: No sample file found: try running opcontrol --dump +or specify a session containing sample files + +The benchmark has finished. Now, collecting results... +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory + STOPPING APACHE on node7.hanwei.infosphere.emulab.net + APACHE IS STOPPED on node7.hanwei.infosphere.emulab.net + STOPPING TOMCAT on node8.hanwei.infosphere.emulab.net + TOMCAT IS STOPPED on node8.hanwei.infosphere.emulab.net + STOPPING MYSQL on node9.hanwei.infosphere.emulab.net +STOPPING server from pid file /mnt/elba/rubbos/mysql-5.0.51a-linux-i686-glibc23/run/mysqld.pid +120120 14:13:44 mysqld ended + + MYSQL IS STOPPED on node9.hanwei.infosphere.emulab.net +Connection to node2 closed by remote host. +Connection to node3 closed by remote host. +Connection to node4 closed by remote host. +Connection to node5 closed by remote host. +Connection to node6 closed by remote host. +Connection to node7 closed by remote host. +Connection to node8 closed by remote host. +Connection to node9 closed by remote host. +End Browsing Only with rubbos.properties_900 +Resetting all data + RESETING MYSQL on node9.hanwei.infosphere.emulab.net + DONE RESETING MYSQL on node9.hanwei.infosphere.emulab.net +Start Browsing Only with rubbos.properties_1000 +Removing previous logs... + STARTING MYSQL on node9.hanwei.infosphere.emulab.net + MYSQL IS RUNNING on node9.hanwei.infosphere.emulab.net +Starting mysqld daemon with databases from /mnt/elba/rubbos/mysql-5.0.51a-linux-i686-glibc23/data + STARTING TOMCAT on node8.hanwei.infosphere.emulab.net + TOMCAT IS RUNNING on node8.hanwei.infosphere.emulab.net + STARTING APACHE on node7.hanwei.infosphere.emulab.net + APACHE IS RUNNING on node7.hanwei.infosphere.emulab.net +rm: cannot remove `20*': No such file or directory +Flushing 490000 KB of memory ... Done +Flushing 880000 KB of memory ... Done +Flushing 880000 KB of memory ... Done +Flushing 780000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +/mnt/elba/rubbos/jdk1.6.0_27/bin/java -classpath Client:Client/rubbos_client.jar:. -Xmx1300m -Dhttp.keepAlive=true -Dhttp.maxConnections=1000000 edu.rice.rubbos.client.ClientEmulator +RUBBoS client emulator - (C) Rice University/INRIA 2001 + +Creating report directory bench/2012-01-20@14-16-42/ +Redirecting output to '/mnt/elba/rubbos/RUBBoS/bench/2012-01-20@14-16-42/index.html' +Please wait while experiment is running ... +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +You cannot specify any performance counter events +because OProfile is in timer mode. +No vmlinux file specified. You must specify the correct vmlinux file, e.g. +opcontrol --vmlinux=/path/to/vmlinux +If you do not have a vmlinux file, use +opcontrol --no-vmlinux +Enter opcontrol --help for full options +/mnt/elba/rubbos/cpu_mem.sh: line 80: 6194 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 32398 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 6968 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 6787 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 7762 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 23113 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 6002 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 12231 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +Daemon not running +Daemon not running +opreport error: No sample file found: try running opcontrol --dump +or specify a session containing sample files + +The benchmark has finished. Now, collecting results... +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory + STOPPING APACHE on node7.hanwei.infosphere.emulab.net + APACHE IS STOPPED on node7.hanwei.infosphere.emulab.net + STOPPING TOMCAT on node8.hanwei.infosphere.emulab.net + TOMCAT IS STOPPED on node8.hanwei.infosphere.emulab.net + STOPPING MYSQL on node9.hanwei.infosphere.emulab.net +STOPPING server from pid file /mnt/elba/rubbos/mysql-5.0.51a-linux-i686-glibc23/run/mysqld.pid +120120 14:39:27 mysqld ended + + MYSQL IS STOPPED on node9.hanwei.infosphere.emulab.net +Connection to node2 closed by remote host. +Connection to node3 closed by remote host. +Connection to node4 closed by remote host. +Connection to node5 closed by remote host. +Connection to node6 closed by remote host. +Connection to node7 closed by remote host. +Connection to node8 closed by remote host. +Connection to node9 closed by remote host. +End Browsing Only with rubbos.properties_1000 +Resetting all data + RESETING MYSQL on node9.hanwei.infosphere.emulab.net + DONE RESETING MYSQL on node9.hanwei.infosphere.emulab.net +Start Browsing Only with rubbos.properties_1100 +Removing previous logs... + STARTING MYSQL on node9.hanwei.infosphere.emulab.net + MYSQL IS RUNNING on node9.hanwei.infosphere.emulab.net +Starting mysqld daemon with databases from /mnt/elba/rubbos/mysql-5.0.51a-linux-i686-glibc23/data + STARTING TOMCAT on node8.hanwei.infosphere.emulab.net + TOMCAT IS RUNNING on node8.hanwei.infosphere.emulab.net + STARTING APACHE on node7.hanwei.infosphere.emulab.net + APACHE IS RUNNING on node7.hanwei.infosphere.emulab.net +rm: cannot remove `20*': No such file or directory +Flushing 490000 KB of memory ... Done +Flushing 880000 KB of memory ... Done +Flushing 880000 KB of memory ... Done +Flushing 780000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +/mnt/elba/rubbos/jdk1.6.0_27/bin/java -classpath Client:Client/rubbos_client.jar:. -Xmx1300m -Dhttp.keepAlive=true -Dhttp.maxConnections=1000000 edu.rice.rubbos.client.ClientEmulator +RUBBoS client emulator - (C) Rice University/INRIA 2001 + +Creating report directory bench/2012-01-20@14-42-25/ +Redirecting output to '/mnt/elba/rubbos/RUBBoS/bench/2012-01-20@14-42-25/index.html' +Please wait while experiment is running ... +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +You cannot specify any performance counter events +because OProfile is in timer mode. +No vmlinux file specified. You must specify the correct vmlinux file, e.g. +opcontrol --vmlinux=/path/to/vmlinux +If you do not have a vmlinux file, use +opcontrol --no-vmlinux +Enter opcontrol --help for full options +/mnt/elba/rubbos/cpu_mem.sh: line 80: 9234 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 5609 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 10029 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 9861 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 10867 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 26559 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 15321 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 9152 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +Daemon not running +Daemon not running +opreport error: No sample file found: try running opcontrol --dump +or specify a session containing sample files + +The benchmark has finished. Now, collecting results... +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory + STOPPING APACHE on node7.hanwei.infosphere.emulab.net + APACHE IS STOPPED on node7.hanwei.infosphere.emulab.net + STOPPING TOMCAT on node8.hanwei.infosphere.emulab.net + TOMCAT IS STOPPED on node8.hanwei.infosphere.emulab.net + STOPPING MYSQL on node9.hanwei.infosphere.emulab.net +STOPPING server from pid file /mnt/elba/rubbos/mysql-5.0.51a-linux-i686-glibc23/run/mysqld.pid +120120 15:05:13 mysqld ended + + MYSQL IS STOPPED on node9.hanwei.infosphere.emulab.net +Connection to node2 closed by remote host. +Connection to node3 closed by remote host. +Connection to node4 closed by remote host. +Connection to node5 closed by remote host. +Connection to node6 closed by remote host. +Connection to node7 closed by remote host. +Connection to node8 closed by remote host. +Connection to node9 closed by remote host. +End Browsing Only with rubbos.properties_1100 +Resetting all data + RESETING MYSQL on node9.hanwei.infosphere.emulab.net + DONE RESETING MYSQL on node9.hanwei.infosphere.emulab.net +Start Browsing Only with rubbos.properties_1200 +Removing previous logs... + STARTING MYSQL on node9.hanwei.infosphere.emulab.net + MYSQL IS RUNNING on node9.hanwei.infosphere.emulab.net +Starting mysqld daemon with databases from /mnt/elba/rubbos/mysql-5.0.51a-linux-i686-glibc23/data + STARTING TOMCAT on node8.hanwei.infosphere.emulab.net + TOMCAT IS RUNNING on node8.hanwei.infosphere.emulab.net + STARTING APACHE on node7.hanwei.infosphere.emulab.net + APACHE IS RUNNING on node7.hanwei.infosphere.emulab.net +rm: cannot remove `20*': No such file or directory +Flushing 490000 KB of memory ... Done +Flushing 880000 KB of memory ... Done +Flushing 880000 KB of memory ... Done +Flushing 780000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +/mnt/elba/rubbos/jdk1.6.0_27/bin/java -classpath Client:Client/rubbos_client.jar:. -Xmx1300m -Dhttp.keepAlive=true -Dhttp.maxConnections=1000000 edu.rice.rubbos.client.ClientEmulator +RUBBoS client emulator - (C) Rice University/INRIA 2001 + +Creating report directory bench/2012-01-20@15-08-15/ +Redirecting output to '/mnt/elba/rubbos/RUBBoS/bench/2012-01-20@15-08-15/index.html' +Please wait while experiment is running ... +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +You cannot specify any performance counter events +because OProfile is in timer mode. +No vmlinux file specified. You must specify the correct vmlinux file, e.g. +opcontrol --vmlinux=/path/to/vmlinux +If you do not have a vmlinux file, use +opcontrol --no-vmlinux +Enter opcontrol --help for full options +/mnt/elba/rubbos/cpu_mem.sh: line 80: 12278 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 85: 11239 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 13108 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 12951 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 13994 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 30021 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 12318 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 85: 18472 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +Daemon not running +Daemon not running +opreport error: No sample file found: try running opcontrol --dump +or specify a session containing sample files + +The benchmark has finished. Now, collecting results... +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory + STOPPING APACHE on node7.hanwei.infosphere.emulab.net + APACHE IS STOPPED on node7.hanwei.infosphere.emulab.net + STOPPING TOMCAT on node8.hanwei.infosphere.emulab.net + TOMCAT IS STOPPED on node8.hanwei.infosphere.emulab.net + STOPPING MYSQL on node9.hanwei.infosphere.emulab.net +STOPPING server from pid file /mnt/elba/rubbos/mysql-5.0.51a-linux-i686-glibc23/run/mysqld.pid +120120 15:31:16 mysqld ended + + MYSQL IS STOPPED on node9.hanwei.infosphere.emulab.net +Connection to node2 closed by remote host. +Connection to node3 closed by remote host. +Connection to node4 closed by remote host. +Connection to node5 closed by remote host. +Connection to node6 closed by remote host. +Connection to node7 closed by remote host. +Connection to node8 closed by remote host. +Connection to node9 closed by remote host. +End Browsing Only with rubbos.properties_1200 +Resetting all data + RESETING MYSQL on node9.hanwei.infosphere.emulab.net + DONE RESETING MYSQL on node9.hanwei.infosphere.emulab.net +Start Browsing Only with rubbos.properties_1300 +Removing previous logs... + STARTING MYSQL on node9.hanwei.infosphere.emulab.net + MYSQL IS RUNNING on node9.hanwei.infosphere.emulab.net +Starting mysqld daemon with databases from /mnt/elba/rubbos/mysql-5.0.51a-linux-i686-glibc23/data + STARTING TOMCAT on node8.hanwei.infosphere.emulab.net + TOMCAT IS RUNNING on node8.hanwei.infosphere.emulab.net + STARTING APACHE on node7.hanwei.infosphere.emulab.net + APACHE IS RUNNING on node7.hanwei.infosphere.emulab.net +rm: cannot remove `20*': No such file or directory +Flushing 490000 KB of memory ... Done +Flushing 880000 KB of memory ... Done +Flushing 880000 KB of memory ... Done +Flushing 780000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +/mnt/elba/rubbos/jdk1.6.0_27/bin/java -classpath Client:Client/rubbos_client.jar:. -Xmx1300m -Dhttp.keepAlive=true -Dhttp.maxConnections=1000000 edu.rice.rubbos.client.ClientEmulator +RUBBoS client emulator - (C) Rice University/INRIA 2001 + +Creating report directory bench/2012-01-20@15-34-14/ +Redirecting output to '/mnt/elba/rubbos/RUBBoS/bench/2012-01-20@15-34-14/index.html' +Please wait while experiment is running ... +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +You cannot specify any performance counter events +because OProfile is in timer mode. +No vmlinux file specified. You must specify the correct vmlinux file, e.g. +opcontrol --vmlinux=/path/to/vmlinux +If you do not have a vmlinux file, use +opcontrol --no-vmlinux +Enter opcontrol --help for full options +/mnt/elba/rubbos/cpu_mem.sh: line 80: 15318 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 16875 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 16207 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 16063 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 17142 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 1047 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 15504 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 21502 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +Daemon not running +Daemon not running +opreport error: No sample file found: try running opcontrol --dump +or specify a session containing sample files + +The benchmark has finished. Now, collecting results... +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory + STOPPING APACHE on node7.hanwei.infosphere.emulab.net + APACHE IS STOPPED on node7.hanwei.infosphere.emulab.net + STOPPING TOMCAT on node8.hanwei.infosphere.emulab.net + TOMCAT IS STOPPED on node8.hanwei.infosphere.emulab.net + STOPPING MYSQL on node9.hanwei.infosphere.emulab.net +STOPPING server from pid file /mnt/elba/rubbos/mysql-5.0.51a-linux-i686-glibc23/run/mysqld.pid +120120 15:57:36 mysqld ended + + MYSQL IS STOPPED on node9.hanwei.infosphere.emulab.net +Connection to node2 closed by remote host. +Connection to node3 closed by remote host. +Connection to node4 closed by remote host. +Connection to node5 closed by remote host. +Connection to node6 closed by remote host. +Connection to node7 closed by remote host. +Connection to node8 closed by remote host. +Connection to node9 closed by remote host. +End Browsing Only with rubbos.properties_1300 +Resetting all data + RESETING MYSQL on node9.hanwei.infosphere.emulab.net + DONE RESETING MYSQL on node9.hanwei.infosphere.emulab.net +Start Browsing Only with rubbos.properties_1400 +Removing previous logs... + STARTING MYSQL on node9.hanwei.infosphere.emulab.net + MYSQL IS RUNNING on node9.hanwei.infosphere.emulab.net +Starting mysqld daemon with databases from /mnt/elba/rubbos/mysql-5.0.51a-linux-i686-glibc23/data + STARTING TOMCAT on node8.hanwei.infosphere.emulab.net + TOMCAT IS RUNNING on node8.hanwei.infosphere.emulab.net + STARTING APACHE on node7.hanwei.infosphere.emulab.net + APACHE IS RUNNING on node7.hanwei.infosphere.emulab.net +rm: cannot remove `20*': No such file or directory +Flushing 490000 KB of memory ... Done +Flushing 880000 KB of memory ... Done +Flushing 880000 KB of memory ... Done +Flushing 780000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +/mnt/elba/rubbos/jdk1.6.0_27/bin/java -classpath Client:Client/rubbos_client.jar:. -Xmx1300m -Dhttp.keepAlive=true -Dhttp.maxConnections=1000000 edu.rice.rubbos.client.ClientEmulator +RUBBoS client emulator - (C) Rice University/INRIA 2001 + +Creating report directory bench/2012-01-20@16-00-32/ +Redirecting output to '/mnt/elba/rubbos/RUBBoS/bench/2012-01-20@16-00-32/index.html' +Please wait while experiment is running ... +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +You cannot specify any performance counter events +because OProfile is in timer mode. +No vmlinux file specified. You must specify the correct vmlinux file, e.g. +opcontrol --vmlinux=/path/to/vmlinux +If you do not have a vmlinux file, use +opcontrol --no-vmlinux +Enter opcontrol --help for full options +/mnt/elba/rubbos/cpu_mem.sh: line 80: 18366 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 22513 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 19333 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 19199 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 20312 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 85: 4588 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 18720 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 24662 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +Daemon not running +Daemon not running +opreport error: No sample file found: try running opcontrol --dump +or specify a session containing sample files + +The benchmark has finished. Now, collecting results... +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory + STOPPING APACHE on node7.hanwei.infosphere.emulab.net + APACHE IS STOPPED on node7.hanwei.infosphere.emulab.net + STOPPING TOMCAT on node8.hanwei.infosphere.emulab.net + TOMCAT IS STOPPED on node8.hanwei.infosphere.emulab.net + STOPPING MYSQL on node9.hanwei.infosphere.emulab.net +STOPPING server from pid file /mnt/elba/rubbos/mysql-5.0.51a-linux-i686-glibc23/run/mysqld.pid +120120 16:24:19 mysqld ended + + MYSQL IS STOPPED on node9.hanwei.infosphere.emulab.net +Connection to node2 closed by remote host. +Connection to node3 closed by remote host. +Connection to node4 closed by remote host. +Connection to node5 closed by remote host. +Connection to node6 closed by remote host. +Connection to node7 closed by remote host. +Connection to node8 closed by remote host. +Connection to node9 closed by remote host. +End Browsing Only with rubbos.properties_1400 +Resetting all data + RESETING MYSQL on node9.hanwei.infosphere.emulab.net + DONE RESETING MYSQL on node9.hanwei.infosphere.emulab.net +Start Browsing Only with rubbos.properties_1500 +Removing previous logs... + STARTING MYSQL on node9.hanwei.infosphere.emulab.net + MYSQL IS RUNNING on node9.hanwei.infosphere.emulab.net +Starting mysqld daemon with databases from /mnt/elba/rubbos/mysql-5.0.51a-linux-i686-glibc23/data + STARTING TOMCAT on node8.hanwei.infosphere.emulab.net + TOMCAT IS RUNNING on node8.hanwei.infosphere.emulab.net + STARTING APACHE on node7.hanwei.infosphere.emulab.net + APACHE IS RUNNING on node7.hanwei.infosphere.emulab.net +rm: cannot remove `20*': No such file or directory +Flushing 490000 KB of memory ... Done +Flushing 880000 KB of memory ... Done +Flushing 880000 KB of memory ... Done +Flushing 780000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +/mnt/elba/rubbos/jdk1.6.0_27/bin/java -classpath Client:Client/rubbos_client.jar:. -Xmx1300m -Dhttp.keepAlive=true -Dhttp.maxConnections=1000000 edu.rice.rubbos.client.ClientEmulator +RUBBoS client emulator - (C) Rice University/INRIA 2001 + +Creating report directory bench/2012-01-20@16-27-15/ +Redirecting output to '/mnt/elba/rubbos/RUBBoS/bench/2012-01-20@16-27-15/index.html' +Please wait while experiment is running ... +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +You cannot specify any performance counter events +because OProfile is in timer mode. +No vmlinux file specified. You must specify the correct vmlinux file, e.g. +opcontrol --vmlinux=/path/to/vmlinux +If you do not have a vmlinux file, use +opcontrol --no-vmlinux +Enter opcontrol --help for full options +/mnt/elba/rubbos/cpu_mem.sh: line 80: 21413 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 28148 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 22478 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 22358 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 23503 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 8120 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 21958 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 27823 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +Daemon not running +Daemon not running +opreport error: No sample file found: try running opcontrol --dump +or specify a session containing sample files + +The benchmark has finished. Now, collecting results... +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory + STOPPING APACHE on node7.hanwei.infosphere.emulab.net + APACHE IS STOPPED on node7.hanwei.infosphere.emulab.net + STOPPING TOMCAT on node8.hanwei.infosphere.emulab.net + TOMCAT IS STOPPED on node8.hanwei.infosphere.emulab.net + STOPPING MYSQL on node9.hanwei.infosphere.emulab.net +STOPPING server from pid file /mnt/elba/rubbos/mysql-5.0.51a-linux-i686-glibc23/run/mysqld.pid +120120 16:50:12 mysqld ended + + MYSQL IS STOPPED on node9.hanwei.infosphere.emulab.net +Connection to node2 closed by remote host. +Connection to node3 closed by remote host. +Connection to node4 closed by remote host. +Connection to node5 closed by remote host. +Connection to node6 closed by remote host. +Connection to node7 closed by remote host. +Connection to node8 closed by remote host. +Connection to node9 closed by remote host. +End Browsing Only with rubbos.properties_1500 +Resetting all data + RESETING MYSQL on node9.hanwei.infosphere.emulab.net + DONE RESETING MYSQL on node9.hanwei.infosphere.emulab.net +Start Browsing Only with rubbos.properties_1600 +Removing previous logs... + STARTING MYSQL on node9.hanwei.infosphere.emulab.net + MYSQL IS RUNNING on node9.hanwei.infosphere.emulab.net +Starting mysqld daemon with databases from /mnt/elba/rubbos/mysql-5.0.51a-linux-i686-glibc23/data + STARTING TOMCAT on node8.hanwei.infosphere.emulab.net + TOMCAT IS RUNNING on node8.hanwei.infosphere.emulab.net + STARTING APACHE on node7.hanwei.infosphere.emulab.net + APACHE IS RUNNING on node7.hanwei.infosphere.emulab.net +rm: cannot remove `20*': No such file or directory +Flushing 490000 KB of memory ... Done +Flushing 880000 KB of memory ... Done +Flushing 880000 KB of memory ... Done +Flushing 780000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +/mnt/elba/rubbos/jdk1.6.0_27/bin/java -classpath Client:Client/rubbos_client.jar:. -Xmx1300m -Dhttp.keepAlive=true -Dhttp.maxConnections=1000000 edu.rice.rubbos.client.ClientEmulator +RUBBoS client emulator - (C) Rice University/INRIA 2001 + +Creating report directory bench/2012-01-20@16-53-08/ +Redirecting output to '/mnt/elba/rubbos/RUBBoS/bench/2012-01-20@16-53-08/index.html' +Please wait while experiment is running ... +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +You cannot specify any performance counter events +because OProfile is in timer mode. +No vmlinux file specified. You must specify the correct vmlinux file, e.g. +opcontrol --vmlinux=/path/to/vmlinux +If you do not have a vmlinux file, use +opcontrol --no-vmlinux +Enter opcontrol --help for full options +/mnt/elba/rubbos/cpu_mem.sh: line 80: 24450 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 85: 1316 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 25638 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 25528 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 26710 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 85: 11668 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 25209 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 30982 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +Daemon not running +Daemon not running +opreport error: No sample file found: try running opcontrol --dump +or specify a session containing sample files + +The benchmark has finished. Now, collecting results... +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory + STOPPING APACHE on node7.hanwei.infosphere.emulab.net + APACHE IS STOPPED on node7.hanwei.infosphere.emulab.net + STOPPING TOMCAT on node8.hanwei.infosphere.emulab.net + TOMCAT IS STOPPED on node8.hanwei.infosphere.emulab.net + STOPPING MYSQL on node9.hanwei.infosphere.emulab.net +STOPPING server from pid file /mnt/elba/rubbos/mysql-5.0.51a-linux-i686-glibc23/run/mysqld.pid +120120 17:15:55 mysqld ended + + MYSQL IS STOPPED on node9.hanwei.infosphere.emulab.net +Connection to node2 closed by remote host. +Connection to node3 closed by remote host. +Connection to node4 closed by remote host. +Connection to node5 closed by remote host. +Connection to node6 closed by remote host. +Connection to node7 closed by remote host. +Connection to node8 closed by remote host. +Connection to node9 closed by remote host. +End Browsing Only with rubbos.properties_1600 +Resetting all data + RESETING MYSQL on node9.hanwei.infosphere.emulab.net + DONE RESETING MYSQL on node9.hanwei.infosphere.emulab.net +Start Browsing Only with rubbos.properties_1700 +Removing previous logs... + STARTING MYSQL on node9.hanwei.infosphere.emulab.net + MYSQL IS RUNNING on node9.hanwei.infosphere.emulab.net +Starting mysqld daemon with databases from /mnt/elba/rubbos/mysql-5.0.51a-linux-i686-glibc23/data + STARTING TOMCAT on node8.hanwei.infosphere.emulab.net + TOMCAT IS RUNNING on node8.hanwei.infosphere.emulab.net + STARTING APACHE on node7.hanwei.infosphere.emulab.net + APACHE IS RUNNING on node7.hanwei.infosphere.emulab.net +rm: cannot remove `20*': No such file or directory +Flushing 490000 KB of memory ... Done +Flushing 880000 KB of memory ... Done +Flushing 880000 KB of memory ... Done +Flushing 780000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +Flushing 490000 KB of memory ... Done +/mnt/elba/rubbos/jdk1.6.0_27/bin/java -classpath Client:Client/rubbos_client.jar:. -Xmx1300m -Dhttp.keepAlive=true -Dhttp.maxConnections=1000000 edu.rice.rubbos.client.ClientEmulator +RUBBoS client emulator - (C) Rice University/INRIA 2001 + +Creating report directory bench/2012-01-20@17-18-51/ +Redirecting output to '/mnt/elba/rubbos/RUBBoS/bench/2012-01-20@17-18-51/index.html' +Please wait while experiment is running ... +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +/users/hanwei +You cannot specify any performance counter events +because OProfile is in timer mode. +No vmlinux file specified. You must specify the correct vmlinux file, e.g. +opcontrol --vmlinux=/path/to/vmlinux +If you do not have a vmlinux file, use +opcontrol --no-vmlinux +Enter opcontrol --help for full options +/mnt/elba/rubbos/cpu_mem.sh: line 80: 27694 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 85: 6980 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 28809 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 28714 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 29934 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 85: 15233 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +/mnt/elba/rubbos/cpu_mem.sh: line 80: 28464 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +Daemon not running +/mnt/elba/rubbos/cpu_mem.sh: line 85: 1679 Killed sudo nice -n -1 $SYSSTAT_HOME/bin/iostat -dxtk $delay >${iostat_filename} +Daemon not running +opreport error: No sample file found: try running opcontrol --dump +or specify a session containing sample files + +The benchmark has finished. Now, collecting results... +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory +scp: /mnt/elba/rubbos/sar-*: No such file or directory +scp: /mnt/elba/rubbos/ps-*: No such file or directory +scp: /mnt/elba/rubbos/mysql_mon-*: No such file or directory +scp: /mnt/elba/rubbos/postgres_lock-*: No such file or directory + STOPPING APACHE on node7.hanwei.infosphere.emulab.net + APACHE IS STOPPED on node7.hanwei.infosphere.emulab.net + STOPPING TOMCAT on node8.hanwei.infosphere.emulab.net + TOMCAT IS STOPPED on node8.hanwei.infosphere.emulab.net + STOPPING MYSQL on node9.hanwei.infosphere.emulab.net +STOPPING server from pid file /mnt/elba/rubbos/mysql-5.0.51a-linux-i686-glibc23/run/mysqld.pid +120120 17:41:47 mysqld ended + + MYSQL IS STOPPED on node9.hanwei.infosphere.emulab.net +Connection to node2 closed by remote host. +Connection to node3 closed by remote host. +Connection to node4 closed by remote host. +Connection to node5 closed by remote host. +Connection to node6 closed by remote host. +Connection to node7 closed by remote host. +Connection to node8 closed by remote host. +Connection to node9 closed by remote host. +End Browsing Only with rubbos.properties_1700 +Processing the results... +scp: /mnt/sdc/hanwei/Rubbos_1_1_1/calc-sarSummary.prl: No such file or directory +bash: line 4: ../calc-sarSummary.prl: No such file or directory +2012-01-20T081237-0700/ +2012-01-20T081237-0700/2012-01-20@10-50-00/ +2012-01-20T081237-0700/2012-01-20@10-50-00/index.html +2012-01-20T081237-0700/2012-01-20@10-50-00/trace_client0.html +2012-01-20T081237-0700/2012-01-20@10-50-00/client2.gz +2012-01-20T081237-0700/2012-01-20@10-50-00/trace_client1.html +2012-01-20T081237-0700/2012-01-20@10-50-00/stat_client1.html +2012-01-20T081237-0700/2012-01-20@10-50-00/trace_client2.html +2012-01-20T081237-0700/2012-01-20@10-50-00/stat_client2.html +2012-01-20T081237-0700/2012-01-20@10-50-00/trace_client3.html +2012-01-20T081237-0700/2012-01-20@10-50-00/stat_client3.html +2012-01-20T081237-0700/2012-01-20@10-50-00/trace_client4.html +2012-01-20T081237-0700/2012-01-20@10-50-00/stat_client4.html +2012-01-20T081237-0700/2012-01-20@10-50-00/perf.html +2012-01-20T081237-0700/2012-01-20@10-50-00/stat_client0.html +2012-01-20T081237-0700/2012-01-20@10-50-00/db_server.gz +2012-01-20T081237-0700/2012-01-20@10-50-00/iostat-node2.hanwei.infosphere.emulab.net-20120120105659.data +2012-01-20T081237-0700/2012-01-20@10-50-00/iostat-node3.hanwei.infosphere.emulab.net-20120120105659.data +2012-01-20T081237-0700/2012-01-20@10-50-00/iostat-node4.hanwei.infosphere.emulab.net-20120120105659.data +2012-01-20T081237-0700/2012-01-20@10-50-00/oprofile_db.log +2012-01-20T081237-0700/2012-01-20@10-50-00/servlets_server.gz +2012-01-20T081237-0700/2012-01-20@10-50-00/iostat-node5.hanwei.infosphere.emulab.net-20120120105659.data +2012-01-20T081237-0700/2012-01-20@10-50-00/iostat-node6.hanwei.infosphere.emulab.net-20120120105659.data +2012-01-20T081237-0700/2012-01-20@10-50-00/iostat-node7.hanwei.infosphere.emulab.net-20120120105659.data +2012-01-20T081237-0700/2012-01-20@10-50-00/oprofile_runtime.log +2012-01-20T081237-0700/2012-01-20@10-50-00/web_server.gz +2012-01-20T081237-0700/2012-01-20@10-50-00/iostat-node8.hanwei.infosphere.emulab.net-20120120105659.data +2012-01-20T081237-0700/2012-01-20@10-50-00/client0.gz +2012-01-20T081237-0700/2012-01-20@10-50-00/iostat-node9.hanwei.infosphere.emulab.net-20120120105659.data +2012-01-20T081237-0700/2012-01-20@10-50-00/client1.gz +2012-01-20T081237-0700/2012-01-20@10-50-00/client3.gz +2012-01-20T081237-0700/2012-01-20@10-50-00/client4.gz +2012-01-20T081237-0700/2012-01-20@11-16-30/ +2012-01-20T081237-0700/2012-01-20@11-16-30/index.html +2012-01-20T081237-0700/2012-01-20@11-16-30/trace_client0.html +2012-01-20T081237-0700/2012-01-20@11-16-30/client1.gz +2012-01-20T081237-0700/2012-01-20@11-16-30/trace_client1.html +2012-01-20T081237-0700/2012-01-20@11-16-30/stat_client1.html +2012-01-20T081237-0700/2012-01-20@11-16-30/trace_client2.html +2012-01-20T081237-0700/2012-01-20@11-16-30/stat_client2.html +2012-01-20T081237-0700/2012-01-20@11-16-30/trace_client3.html +2012-01-20T081237-0700/2012-01-20@11-16-30/stat_client3.html +2012-01-20T081237-0700/2012-01-20@11-16-30/trace_client4.html +2012-01-20T081237-0700/2012-01-20@11-16-30/stat_client4.html +2012-01-20T081237-0700/2012-01-20@11-16-30/perf.html +2012-01-20T081237-0700/2012-01-20@11-16-30/stat_client0.html +2012-01-20T081237-0700/2012-01-20@11-16-30/db_server.gz +2012-01-20T081237-0700/2012-01-20@11-16-30/client2.gz +2012-01-20T081237-0700/2012-01-20@11-16-30/client3.gz +2012-01-20T081237-0700/2012-01-20@11-16-30/oprofile_db.log +2012-01-20T081237-0700/2012-01-20@11-16-30/client4.gz +2012-01-20T081237-0700/2012-01-20@11-16-30/iostat-node2.hanwei.infosphere.emulab.net-20120120112330.data +2012-01-20T081237-0700/2012-01-20@11-16-30/iostat-node3.hanwei.infosphere.emulab.net-20120120112330.data +2012-01-20T081237-0700/2012-01-20@11-16-30/servlets_server.gz +2012-01-20T081237-0700/2012-01-20@11-16-30/iostat-node4.hanwei.infosphere.emulab.net-20120120112330.data +2012-01-20T081237-0700/2012-01-20@11-16-30/iostat-node5.hanwei.infosphere.emulab.net-20120120112330.data +2012-01-20T081237-0700/2012-01-20@11-16-30/iostat-node6.hanwei.infosphere.emulab.net-20120120112330.data +2012-01-20T081237-0700/2012-01-20@11-16-30/oprofile_runtime.log +2012-01-20T081237-0700/2012-01-20@11-16-30/web_server.gz +2012-01-20T081237-0700/2012-01-20@11-16-30/iostat-node7.hanwei.infosphere.emulab.net-20120120112330.data +2012-01-20T081237-0700/2012-01-20@11-16-30/iostat-node8.hanwei.infosphere.emulab.net-20120120112330.data +2012-01-20T081237-0700/2012-01-20@11-16-30/iostat-node9.hanwei.infosphere.emulab.net-20120120112330.data +2012-01-20T081237-0700/2012-01-20@11-16-30/client0.gz +2012-01-20T081237-0700/2012-01-20@11-42-29/ +2012-01-20T081237-0700/2012-01-20@11-42-29/index.html +2012-01-20T081237-0700/2012-01-20@11-42-29/trace_client0.html +2012-01-20T081237-0700/2012-01-20@11-42-29/client2.gz +2012-01-20T081237-0700/2012-01-20@11-42-29/trace_client1.html +2012-01-20T081237-0700/2012-01-20@11-42-29/stat_client1.html +2012-01-20T081237-0700/2012-01-20@11-42-29/trace_client2.html +2012-01-20T081237-0700/2012-01-20@11-42-29/stat_client2.html +2012-01-20T081237-0700/2012-01-20@11-42-29/trace_client3.html +2012-01-20T081237-0700/2012-01-20@11-42-29/stat_client3.html +2012-01-20T081237-0700/2012-01-20@11-42-29/trace_client4.html +2012-01-20T081237-0700/2012-01-20@11-42-29/stat_client4.html +2012-01-20T081237-0700/2012-01-20@11-42-29/perf.html +2012-01-20T081237-0700/2012-01-20@11-42-29/stat_client0.html +2012-01-20T081237-0700/2012-01-20@11-42-29/db_server.gz +2012-01-20T081237-0700/2012-01-20@11-42-29/client3.gz +2012-01-20T081237-0700/2012-01-20@11-42-29/iostat-node2.hanwei.infosphere.emulab.net-20120120114929.data +2012-01-20T081237-0700/2012-01-20@11-42-29/iostat-node3.hanwei.infosphere.emulab.net-20120120114929.data +2012-01-20T081237-0700/2012-01-20@11-42-29/iostat-node4.hanwei.infosphere.emulab.net-20120120114929.data +2012-01-20T081237-0700/2012-01-20@11-42-29/servlets_server.gz +2012-01-20T081237-0700/2012-01-20@11-42-29/iostat-node5.hanwei.infosphere.emulab.net-20120120114929.data +2012-01-20T081237-0700/2012-01-20@11-42-29/iostat-node6.hanwei.infosphere.emulab.net-20120120114929.data +2012-01-20T081237-0700/2012-01-20@11-42-29/iostat-node7.hanwei.infosphere.emulab.net-20120120114929.data +2012-01-20T081237-0700/2012-01-20@11-42-29/oprofile_db.log +2012-01-20T081237-0700/2012-01-20@11-42-29/web_server.gz +2012-01-20T081237-0700/2012-01-20@11-42-29/iostat-node8.hanwei.infosphere.emulab.net-20120120114929.data +2012-01-20T081237-0700/2012-01-20@11-42-29/oprofile_runtime.log +2012-01-20T081237-0700/2012-01-20@11-42-29/client0.gz +2012-01-20T081237-0700/2012-01-20@11-42-29/iostat-node9.hanwei.infosphere.emulab.net-20120120114929.data +2012-01-20T081237-0700/2012-01-20@11-42-29/client1.gz +2012-01-20T081237-0700/2012-01-20@11-42-29/client4.gz +2012-01-20T081237-0700/2012-01-20@12-08-10/ +2012-01-20T081237-0700/2012-01-20@12-08-10/index.html +2012-01-20T081237-0700/2012-01-20@12-08-10/trace_client0.html +2012-01-20T081237-0700/2012-01-20@12-08-10/client0.gz +2012-01-20T081237-0700/2012-01-20@12-08-10/trace_client1.html +2012-01-20T081237-0700/2012-01-20@12-08-10/stat_client1.html +2012-01-20T081237-0700/2012-01-20@12-08-10/trace_client2.html +2012-01-20T081237-0700/2012-01-20@12-08-10/stat_client2.html +2012-01-20T081237-0700/2012-01-20@12-08-10/trace_client3.html +2012-01-20T081237-0700/2012-01-20@12-08-10/stat_client3.html +2012-01-20T081237-0700/2012-01-20@12-08-10/trace_client4.html +2012-01-20T081237-0700/2012-01-20@12-08-10/stat_client4.html +2012-01-20T081237-0700/2012-01-20@12-08-10/perf.html +2012-01-20T081237-0700/2012-01-20@12-08-10/stat_client0.html +2012-01-20T081237-0700/2012-01-20@12-08-10/db_server.gz +2012-01-20T081237-0700/2012-01-20@12-08-10/client3.gz +2012-01-20T081237-0700/2012-01-20@12-08-10/client2.gz +2012-01-20T081237-0700/2012-01-20@12-08-10/client4.gz +2012-01-20T081237-0700/2012-01-20@12-08-10/iostat-node2.hanwei.infosphere.emulab.net-20120120121510.data +2012-01-20T081237-0700/2012-01-20@12-08-10/iostat-node3.hanwei.infosphere.emulab.net-20120120121510.data +2012-01-20T081237-0700/2012-01-20@12-08-10/oprofile_db.log +2012-01-20T081237-0700/2012-01-20@12-08-10/servlets_server.gz +2012-01-20T081237-0700/2012-01-20@12-08-10/iostat-node4.hanwei.infosphere.emulab.net-20120120121510.data +2012-01-20T081237-0700/2012-01-20@12-08-10/iostat-node5.hanwei.infosphere.emulab.net-20120120121510.data +2012-01-20T081237-0700/2012-01-20@12-08-10/iostat-node6.hanwei.infosphere.emulab.net-20120120121510.data +2012-01-20T081237-0700/2012-01-20@12-08-10/oprofile_runtime.log +2012-01-20T081237-0700/2012-01-20@12-08-10/web_server.gz +2012-01-20T081237-0700/2012-01-20@12-08-10/iostat-node7.hanwei.infosphere.emulab.net-20120120121510.data +2012-01-20T081237-0700/2012-01-20@12-08-10/iostat-node8.hanwei.infosphere.emulab.net-20120120121510.data +2012-01-20T081237-0700/2012-01-20@12-08-10/client1.gz +2012-01-20T081237-0700/2012-01-20@12-08-10/iostat-node9.hanwei.infosphere.emulab.net-20120120121510.data +2012-01-20T081237-0700/2012-01-20@12-33-53/ +2012-01-20T081237-0700/2012-01-20@12-33-53/index.html +2012-01-20T081237-0700/2012-01-20@12-33-53/trace_client0.html +2012-01-20T081237-0700/2012-01-20@12-33-53/client0.gz +2012-01-20T081237-0700/2012-01-20@12-33-53/trace_client1.html +2012-01-20T081237-0700/2012-01-20@12-33-53/stat_client1.html +2012-01-20T081237-0700/2012-01-20@12-33-53/trace_client2.html +2012-01-20T081237-0700/2012-01-20@12-33-53/stat_client2.html +2012-01-20T081237-0700/2012-01-20@12-33-53/trace_client3.html +2012-01-20T081237-0700/2012-01-20@12-33-53/stat_client3.html +2012-01-20T081237-0700/2012-01-20@12-33-53/trace_client4.html +2012-01-20T081237-0700/2012-01-20@12-33-53/stat_client4.html +2012-01-20T081237-0700/2012-01-20@12-33-53/perf.html +2012-01-20T081237-0700/2012-01-20@12-33-53/stat_client0.html +2012-01-20T081237-0700/2012-01-20@12-33-53/db_server.gz +2012-01-20T081237-0700/2012-01-20@12-33-53/client3.gz +2012-01-20T081237-0700/2012-01-20@12-33-53/client2.gz +2012-01-20T081237-0700/2012-01-20@12-33-53/client4.gz +2012-01-20T081237-0700/2012-01-20@12-33-53/iostat-node2.hanwei.infosphere.emulab.net-20120120124052.data +2012-01-20T081237-0700/2012-01-20@12-33-53/iostat-node3.hanwei.infosphere.emulab.net-20120120124052.data +2012-01-20T081237-0700/2012-01-20@12-33-53/oprofile_db.log +2012-01-20T081237-0700/2012-01-20@12-33-53/servlets_server.gz +2012-01-20T081237-0700/2012-01-20@12-33-53/iostat-node4.hanwei.infosphere.emulab.net-20120120124052.data +2012-01-20T081237-0700/2012-01-20@12-33-53/iostat-node5.hanwei.infosphere.emulab.net-20120120124052.data +2012-01-20T081237-0700/2012-01-20@12-33-53/iostat-node6.hanwei.infosphere.emulab.net-20120120124052.data +2012-01-20T081237-0700/2012-01-20@12-33-53/oprofile_runtime.log +2012-01-20T081237-0700/2012-01-20@12-33-53/web_server.gz +2012-01-20T081237-0700/2012-01-20@12-33-53/iostat-node7.hanwei.infosphere.emulab.net-20120120124052.data +2012-01-20T081237-0700/2012-01-20@12-33-53/iostat-node8.hanwei.infosphere.emulab.net-20120120124052.data +2012-01-20T081237-0700/2012-01-20@12-33-53/client1.gz +2012-01-20T081237-0700/2012-01-20@12-33-53/iostat-node9.hanwei.infosphere.emulab.net-20120120124052.data +2012-01-20T081237-0700/2012-01-20@12-59-33/ +2012-01-20T081237-0700/2012-01-20@12-59-33/index.html +2012-01-20T081237-0700/2012-01-20@12-59-33/trace_client0.html +2012-01-20T081237-0700/2012-01-20@12-59-33/client1.gz +2012-01-20T081237-0700/2012-01-20@12-59-33/trace_client1.html +2012-01-20T081237-0700/2012-01-20@12-59-33/stat_client1.html +2012-01-20T081237-0700/2012-01-20@12-59-33/trace_client2.html +2012-01-20T081237-0700/2012-01-20@12-59-33/stat_client2.html +2012-01-20T081237-0700/2012-01-20@12-59-33/trace_client3.html +2012-01-20T081237-0700/2012-01-20@12-59-33/stat_client3.html +2012-01-20T081237-0700/2012-01-20@12-59-33/trace_client4.html +2012-01-20T081237-0700/2012-01-20@12-59-33/stat_client4.html +2012-01-20T081237-0700/2012-01-20@12-59-33/perf.html +2012-01-20T081237-0700/2012-01-20@12-59-33/stat_client0.html +2012-01-20T081237-0700/2012-01-20@12-59-33/db_server.gz +2012-01-20T081237-0700/2012-01-20@12-59-33/client2.gz +2012-01-20T081237-0700/2012-01-20@12-59-33/client3.gz +2012-01-20T081237-0700/2012-01-20@12-59-33/client4.gz +2012-01-20T081237-0700/2012-01-20@12-59-33/iostat-node2.hanwei.infosphere.emulab.net-20120120130633.data +2012-01-20T081237-0700/2012-01-20@12-59-33/iostat-node3.hanwei.infosphere.emulab.net-20120120130633.data +2012-01-20T081237-0700/2012-01-20@12-59-33/oprofile_db.log +2012-01-20T081237-0700/2012-01-20@12-59-33/servlets_server.gz +2012-01-20T081237-0700/2012-01-20@12-59-33/iostat-node4.hanwei.infosphere.emulab.net-20120120130633.data +2012-01-20T081237-0700/2012-01-20@12-59-33/iostat-node5.hanwei.infosphere.emulab.net-20120120130633.data +2012-01-20T081237-0700/2012-01-20@12-59-33/iostat-node6.hanwei.infosphere.emulab.net-20120120130633.data +2012-01-20T081237-0700/2012-01-20@12-59-33/oprofile_runtime.log +2012-01-20T081237-0700/2012-01-20@12-59-33/web_server.gz +2012-01-20T081237-0700/2012-01-20@12-59-33/iostat-node7.hanwei.infosphere.emulab.net-20120120130633.data +2012-01-20T081237-0700/2012-01-20@12-59-33/iostat-node8.hanwei.infosphere.emulab.net-20120120130633.data +2012-01-20T081237-0700/2012-01-20@12-59-33/iostat-node9.hanwei.infosphere.emulab.net-20120120130633.data +2012-01-20T081237-0700/2012-01-20@12-59-33/client0.gz +2012-01-20T081237-0700/2012-01-20@13-25-16/ +2012-01-20T081237-0700/2012-01-20@13-25-16/index.html +2012-01-20T081237-0700/2012-01-20@13-25-16/trace_client0.html +2012-01-20T081237-0700/2012-01-20@13-25-16/client0.gz +2012-01-20T081237-0700/2012-01-20@13-25-16/trace_client1.html +2012-01-20T081237-0700/2012-01-20@13-25-16/stat_client1.html +2012-01-20T081237-0700/2012-01-20@13-25-16/trace_client2.html +2012-01-20T081237-0700/2012-01-20@13-25-16/stat_client2.html +2012-01-20T081237-0700/2012-01-20@13-25-16/trace_client3.html +2012-01-20T081237-0700/2012-01-20@13-25-16/stat_client3.html +2012-01-20T081237-0700/2012-01-20@13-25-16/trace_client4.html +2012-01-20T081237-0700/2012-01-20@13-25-16/stat_client4.html +2012-01-20T081237-0700/2012-01-20@13-25-16/perf.html +2012-01-20T081237-0700/2012-01-20@13-25-16/stat_client0.html +2012-01-20T081237-0700/2012-01-20@13-25-16/db_server.gz +2012-01-20T081237-0700/2012-01-20@13-25-16/client1.gz +2012-01-20T081237-0700/2012-01-20@13-25-16/client3.gz +2012-01-20T081237-0700/2012-01-20@13-25-16/client4.gz +2012-01-20T081237-0700/2012-01-20@13-25-16/iostat-node2.hanwei.infosphere.emulab.net-20120120133215.data +2012-01-20T081237-0700/2012-01-20@13-25-16/iostat-node3.hanwei.infosphere.emulab.net-20120120133215.data +2012-01-20T081237-0700/2012-01-20@13-25-16/oprofile_db.log +2012-01-20T081237-0700/2012-01-20@13-25-16/servlets_server.gz +2012-01-20T081237-0700/2012-01-20@13-25-16/iostat-node4.hanwei.infosphere.emulab.net-20120120133215.data +2012-01-20T081237-0700/2012-01-20@13-25-16/iostat-node5.hanwei.infosphere.emulab.net-20120120133215.data +2012-01-20T081237-0700/2012-01-20@13-25-16/iostat-node6.hanwei.infosphere.emulab.net-20120120133215.data +2012-01-20T081237-0700/2012-01-20@13-25-16/oprofile_runtime.log +2012-01-20T081237-0700/2012-01-20@13-25-16/web_server.gz +2012-01-20T081237-0700/2012-01-20@13-25-16/iostat-node7.hanwei.infosphere.emulab.net-20120120133215.data +2012-01-20T081237-0700/2012-01-20@13-25-16/iostat-node8.hanwei.infosphere.emulab.net-20120120133215.data +2012-01-20T081237-0700/2012-01-20@13-25-16/iostat-node9.hanwei.infosphere.emulab.net-20120120133215.data +2012-01-20T081237-0700/2012-01-20@13-25-16/client2.gz +2012-01-20T081237-0700/2012-01-20@13-50-58/ +2012-01-20T081237-0700/2012-01-20@13-50-58/index.html +2012-01-20T081237-0700/2012-01-20@13-50-58/trace_client0.html +2012-01-20T081237-0700/2012-01-20@13-50-58/client0.gz +2012-01-20T081237-0700/2012-01-20@13-50-58/trace_client1.html +2012-01-20T081237-0700/2012-01-20@13-50-58/stat_client1.html +2012-01-20T081237-0700/2012-01-20@13-50-58/trace_client2.html +2012-01-20T081237-0700/2012-01-20@13-50-58/stat_client2.html +2012-01-20T081237-0700/2012-01-20@13-50-58/trace_client3.html +2012-01-20T081237-0700/2012-01-20@13-50-58/stat_client3.html +2012-01-20T081237-0700/2012-01-20@13-50-58/trace_client4.html +2012-01-20T081237-0700/2012-01-20@13-50-58/stat_client4.html +2012-01-20T081237-0700/2012-01-20@13-50-58/perf.html +2012-01-20T081237-0700/2012-01-20@13-50-58/stat_client0.html +2012-01-20T081237-0700/2012-01-20@13-50-58/db_server.gz +2012-01-20T081237-0700/2012-01-20@13-50-58/client1.gz +2012-01-20T081237-0700/2012-01-20@13-50-58/client2.gz +2012-01-20T081237-0700/2012-01-20@13-50-58/iostat-node2.hanwei.infosphere.emulab.net-20120120135757.data +2012-01-20T081237-0700/2012-01-20@13-50-58/iostat-node3.hanwei.infosphere.emulab.net-20120120135757.data +2012-01-20T081237-0700/2012-01-20@13-50-58/oprofile_db.log +2012-01-20T081237-0700/2012-01-20@13-50-58/oprofile_runtime.log +2012-01-20T081237-0700/2012-01-20@13-50-58/servlets_server.gz +2012-01-20T081237-0700/2012-01-20@13-50-58/iostat-node4.hanwei.infosphere.emulab.net-20120120135757.data +2012-01-20T081237-0700/2012-01-20@13-50-58/iostat-node5.hanwei.infosphere.emulab.net-20120120135757.data +2012-01-20T081237-0700/2012-01-20@13-50-58/iostat-node6.hanwei.infosphere.emulab.net-20120120135757.data +2012-01-20T081237-0700/2012-01-20@13-50-58/web_server.gz +2012-01-20T081237-0700/2012-01-20@13-50-58/iostat-node7.hanwei.infosphere.emulab.net-20120120135757.data +2012-01-20T081237-0700/2012-01-20@13-50-58/iostat-node8.hanwei.infosphere.emulab.net-20120120135757.data +2012-01-20T081237-0700/2012-01-20@13-50-58/iostat-node9.hanwei.infosphere.emulab.net-20120120135757.data +2012-01-20T081237-0700/2012-01-20@13-50-58/client3.gz +2012-01-20T081237-0700/2012-01-20@13-50-58/client4.gz +2012-01-20T081237-0700/2012-01-20@14-16-42/ +2012-01-20T081237-0700/2012-01-20@14-16-42/index.html +2012-01-20T081237-0700/2012-01-20@14-16-42/trace_client0.html +2012-01-20T081237-0700/2012-01-20@14-16-42/client0.gz +2012-01-20T081237-0700/2012-01-20@14-16-42/trace_client1.html +2012-01-20T081237-0700/2012-01-20@14-16-42/stat_client1.html +2012-01-20T081237-0700/2012-01-20@14-16-42/trace_client2.html +2012-01-20T081237-0700/2012-01-20@14-16-42/stat_client2.html +2012-01-20T081237-0700/2012-01-20@14-16-42/trace_client3.html +2012-01-20T081237-0700/2012-01-20@14-16-42/stat_client3.html +2012-01-20T081237-0700/2012-01-20@14-16-42/trace_client4.html +2012-01-20T081237-0700/2012-01-20@14-16-42/stat_client4.html +2012-01-20T081237-0700/2012-01-20@14-16-42/perf.html +2012-01-20T081237-0700/2012-01-20@14-16-42/stat_client0.html +2012-01-20T081237-0700/2012-01-20@14-16-42/db_server.gz +2012-01-20T081237-0700/2012-01-20@14-16-42/client1.gz +2012-01-20T081237-0700/2012-01-20@14-16-42/client2.gz +2012-01-20T081237-0700/2012-01-20@14-16-42/client4.gz +2012-01-20T081237-0700/2012-01-20@14-16-42/iostat-node2.hanwei.infosphere.emulab.net-20120120142342.data +2012-01-20T081237-0700/2012-01-20@14-16-42/iostat-node3.hanwei.infosphere.emulab.net-20120120142342.data +2012-01-20T081237-0700/2012-01-20@14-16-42/oprofile_db.log +2012-01-20T081237-0700/2012-01-20@14-16-42/servlets_server.gz +2012-01-20T081237-0700/2012-01-20@14-16-42/iostat-node4.hanwei.infosphere.emulab.net-20120120142342.data +2012-01-20T081237-0700/2012-01-20@14-16-42/iostat-node5.hanwei.infosphere.emulab.net-20120120142342.data +2012-01-20T081237-0700/2012-01-20@14-16-42/iostat-node6.hanwei.infosphere.emulab.net-20120120142342.data +2012-01-20T081237-0700/2012-01-20@14-16-42/oprofile_runtime.log +2012-01-20T081237-0700/2012-01-20@14-16-42/web_server.gz +2012-01-20T081237-0700/2012-01-20@14-16-42/iostat-node7.hanwei.infosphere.emulab.net-20120120142342.data +2012-01-20T081237-0700/2012-01-20@14-16-42/iostat-node8.hanwei.infosphere.emulab.net-20120120142342.data +2012-01-20T081237-0700/2012-01-20@14-16-42/iostat-node9.hanwei.infosphere.emulab.net-20120120142342.data +2012-01-20T081237-0700/2012-01-20@14-16-42/client3.gz +2012-01-20T081237-0700/2012-01-20@14-42-25/ +2012-01-20T081237-0700/2012-01-20@14-42-25/index.html +2012-01-20T081237-0700/2012-01-20@14-42-25/trace_client0.html +2012-01-20T081237-0700/2012-01-20@14-42-25/client0.gz +2012-01-20T081237-0700/2012-01-20@14-42-25/trace_client1.html +2012-01-20T081237-0700/2012-01-20@14-42-25/stat_client1.html +2012-01-20T081237-0700/2012-01-20@14-42-25/trace_client2.html +2012-01-20T081237-0700/2012-01-20@14-42-25/stat_client2.html +2012-01-20T081237-0700/2012-01-20@14-42-25/trace_client3.html +2012-01-20T081237-0700/2012-01-20@14-42-25/stat_client3.html +2012-01-20T081237-0700/2012-01-20@14-42-25/trace_client4.html +2012-01-20T081237-0700/2012-01-20@14-42-25/stat_client4.html +2012-01-20T081237-0700/2012-01-20@14-42-25/perf.html +2012-01-20T081237-0700/2012-01-20@14-42-25/stat_client0.html +2012-01-20T081237-0700/2012-01-20@14-42-25/db_server.gz +2012-01-20T081237-0700/2012-01-20@14-42-25/client1.gz +2012-01-20T081237-0700/2012-01-20@14-42-25/client3.gz +2012-01-20T081237-0700/2012-01-20@14-42-25/client4.gz +2012-01-20T081237-0700/2012-01-20@14-42-25/iostat-node2.hanwei.infosphere.emulab.net-20120120144925.data +2012-01-20T081237-0700/2012-01-20@14-42-25/iostat-node3.hanwei.infosphere.emulab.net-20120120144925.data +2012-01-20T081237-0700/2012-01-20@14-42-25/oprofile_db.log +2012-01-20T081237-0700/2012-01-20@14-42-25/servlets_server.gz +2012-01-20T081237-0700/2012-01-20@14-42-25/iostat-node4.hanwei.infosphere.emulab.net-20120120144925.data +2012-01-20T081237-0700/2012-01-20@14-42-25/iostat-node5.hanwei.infosphere.emulab.net-20120120144925.data +2012-01-20T081237-0700/2012-01-20@14-42-25/iostat-node6.hanwei.infosphere.emulab.net-20120120144925.data +2012-01-20T081237-0700/2012-01-20@14-42-25/oprofile_runtime.log +2012-01-20T081237-0700/2012-01-20@14-42-25/web_server.gz +2012-01-20T081237-0700/2012-01-20@14-42-25/iostat-node7.hanwei.infosphere.emulab.net-20120120144925.data +2012-01-20T081237-0700/2012-01-20@14-42-25/iostat-node8.hanwei.infosphere.emulab.net-20120120144925.data +2012-01-20T081237-0700/2012-01-20@14-42-25/iostat-node9.hanwei.infosphere.emulab.net-20120120144925.data +2012-01-20T081237-0700/2012-01-20@14-42-25/client2.gz +2012-01-20T081237-0700/2012-01-20@15-08-15/ +2012-01-20T081237-0700/2012-01-20@15-08-15/index.html +2012-01-20T081237-0700/2012-01-20@15-08-15/trace_client0.html +2012-01-20T081237-0700/2012-01-20@15-08-15/client0.gz +2012-01-20T081237-0700/2012-01-20@15-08-15/trace_client1.html +2012-01-20T081237-0700/2012-01-20@15-08-15/stat_client1.html +2012-01-20T081237-0700/2012-01-20@15-08-15/trace_client2.html +2012-01-20T081237-0700/2012-01-20@15-08-15/stat_client2.html +2012-01-20T081237-0700/2012-01-20@15-08-15/trace_client3.html +2012-01-20T081237-0700/2012-01-20@15-08-15/stat_client3.html +2012-01-20T081237-0700/2012-01-20@15-08-15/trace_client4.html +2012-01-20T081237-0700/2012-01-20@15-08-15/stat_client4.html +2012-01-20T081237-0700/2012-01-20@15-08-15/perf.html +2012-01-20T081237-0700/2012-01-20@15-08-15/stat_client0.html +2012-01-20T081237-0700/2012-01-20@15-08-15/db_server.gz +2012-01-20T081237-0700/2012-01-20@15-08-15/oprofile_db.log +2012-01-20T081237-0700/2012-01-20@15-08-15/client2.gz +2012-01-20T081237-0700/2012-01-20@15-08-15/client3.gz +2012-01-20T081237-0700/2012-01-20@15-08-15/iostat-node2.hanwei.infosphere.emulab.net-20120120151514.data +2012-01-20T081237-0700/2012-01-20@15-08-15/iostat-node3.hanwei.infosphere.emulab.net-20120120151514.data +2012-01-20T081237-0700/2012-01-20@15-08-15/oprofile_runtime.log +2012-01-20T081237-0700/2012-01-20@15-08-15/servlets_server.gz +2012-01-20T081237-0700/2012-01-20@15-08-15/iostat-node4.hanwei.infosphere.emulab.net-20120120151514.data +2012-01-20T081237-0700/2012-01-20@15-08-15/iostat-node5.hanwei.infosphere.emulab.net-20120120151514.data +2012-01-20T081237-0700/2012-01-20@15-08-15/iostat-node6.hanwei.infosphere.emulab.net-20120120151514.data +2012-01-20T081237-0700/2012-01-20@15-08-15/web_server.gz +2012-01-20T081237-0700/2012-01-20@15-08-15/iostat-node7.hanwei.infosphere.emulab.net-20120120151514.data +2012-01-20T081237-0700/2012-01-20@15-08-15/iostat-node8.hanwei.infosphere.emulab.net-20120120151514.data +2012-01-20T081237-0700/2012-01-20@15-08-15/client1.gz +2012-01-20T081237-0700/2012-01-20@15-08-15/iostat-node9.hanwei.infosphere.emulab.net-20120120151514.data +2012-01-20T081237-0700/2012-01-20@15-08-15/client4.gz +2012-01-20T081237-0700/2012-01-20@15-34-14/ +2012-01-20T081237-0700/2012-01-20@15-34-14/index.html +2012-01-20T081237-0700/2012-01-20@15-34-14/trace_client0.html +2012-01-20T081237-0700/2012-01-20@15-34-14/client1.gz +2012-01-20T081237-0700/2012-01-20@15-34-14/trace_client1.html +2012-01-20T081237-0700/2012-01-20@15-34-14/stat_client1.html +2012-01-20T081237-0700/2012-01-20@15-34-14/trace_client2.html +2012-01-20T081237-0700/2012-01-20@15-34-14/stat_client2.html +2012-01-20T081237-0700/2012-01-20@15-34-14/trace_client3.html +2012-01-20T081237-0700/2012-01-20@15-34-14/stat_client3.html +2012-01-20T081237-0700/2012-01-20@15-34-14/trace_client4.html +2012-01-20T081237-0700/2012-01-20@15-34-14/stat_client4.html +2012-01-20T081237-0700/2012-01-20@15-34-14/perf.html +2012-01-20T081237-0700/2012-01-20@15-34-14/stat_client0.html +2012-01-20T081237-0700/2012-01-20@15-34-14/db_server.gz +2012-01-20T081237-0700/2012-01-20@15-34-14/client2.gz +2012-01-20T081237-0700/2012-01-20@15-34-14/client3.gz +2012-01-20T081237-0700/2012-01-20@15-34-14/oprofile_db.log +2012-01-20T081237-0700/2012-01-20@15-34-14/client4.gz +2012-01-20T081237-0700/2012-01-20@15-34-14/iostat-node2.hanwei.infosphere.emulab.net-20120120154113.data +2012-01-20T081237-0700/2012-01-20@15-34-14/iostat-node3.hanwei.infosphere.emulab.net-20120120154113.data +2012-01-20T081237-0700/2012-01-20@15-34-14/servlets_server.gz +2012-01-20T081237-0700/2012-01-20@15-34-14/iostat-node4.hanwei.infosphere.emulab.net-20120120154113.data +2012-01-20T081237-0700/2012-01-20@15-34-14/iostat-node5.hanwei.infosphere.emulab.net-20120120154113.data +2012-01-20T081237-0700/2012-01-20@15-34-14/iostat-node6.hanwei.infosphere.emulab.net-20120120154113.data +2012-01-20T081237-0700/2012-01-20@15-34-14/oprofile_runtime.log +2012-01-20T081237-0700/2012-01-20@15-34-14/web_server.gz +2012-01-20T081237-0700/2012-01-20@15-34-14/iostat-node7.hanwei.infosphere.emulab.net-20120120154113.data +2012-01-20T081237-0700/2012-01-20@15-34-14/iostat-node8.hanwei.infosphere.emulab.net-20120120154113.data +2012-01-20T081237-0700/2012-01-20@15-34-14/iostat-node9.hanwei.infosphere.emulab.net-20120120154113.data +2012-01-20T081237-0700/2012-01-20@15-34-14/client0.gz +2012-01-20T081237-0700/2012-01-20@16-00-32/ +2012-01-20T081237-0700/2012-01-20@16-00-32/index.html +2012-01-20T081237-0700/2012-01-20@16-00-32/trace_client0.html +2012-01-20T081237-0700/2012-01-20@16-00-32/client1.gz +2012-01-20T081237-0700/2012-01-20@16-00-32/trace_client1.html +2012-01-20T081237-0700/2012-01-20@16-00-32/stat_client1.html +2012-01-20T081237-0700/2012-01-20@16-00-32/trace_client2.html +2012-01-20T081237-0700/2012-01-20@16-00-32/stat_client2.html +2012-01-20T081237-0700/2012-01-20@16-00-32/trace_client3.html +2012-01-20T081237-0700/2012-01-20@16-00-32/stat_client3.html +2012-01-20T081237-0700/2012-01-20@16-00-32/trace_client4.html +2012-01-20T081237-0700/2012-01-20@16-00-32/stat_client4.html +2012-01-20T081237-0700/2012-01-20@16-00-32/perf.html +2012-01-20T081237-0700/2012-01-20@16-00-32/stat_client0.html +2012-01-20T081237-0700/2012-01-20@16-00-32/db_server.gz +2012-01-20T081237-0700/2012-01-20@16-00-32/client2.gz +2012-01-20T081237-0700/2012-01-20@16-00-32/client3.gz +2012-01-20T081237-0700/2012-01-20@16-00-32/client4.gz +2012-01-20T081237-0700/2012-01-20@16-00-32/iostat-node2.hanwei.infosphere.emulab.net-20120120160732.data +2012-01-20T081237-0700/2012-01-20@16-00-32/iostat-node3.hanwei.infosphere.emulab.net-20120120160732.data +2012-01-20T081237-0700/2012-01-20@16-00-32/oprofile_db.log +2012-01-20T081237-0700/2012-01-20@16-00-32/servlets_server.gz +2012-01-20T081237-0700/2012-01-20@16-00-32/iostat-node4.hanwei.infosphere.emulab.net-20120120160732.data +2012-01-20T081237-0700/2012-01-20@16-00-32/iostat-node5.hanwei.infosphere.emulab.net-20120120160732.data +2012-01-20T081237-0700/2012-01-20@16-00-32/iostat-node6.hanwei.infosphere.emulab.net-20120120160732.data +2012-01-20T081237-0700/2012-01-20@16-00-32/oprofile_runtime.log +2012-01-20T081237-0700/2012-01-20@16-00-32/web_server.gz +2012-01-20T081237-0700/2012-01-20@16-00-32/iostat-node7.hanwei.infosphere.emulab.net-20120120160732.data +2012-01-20T081237-0700/2012-01-20@16-00-32/iostat-node8.hanwei.infosphere.emulab.net-20120120160732.data +2012-01-20T081237-0700/2012-01-20@16-00-32/iostat-node9.hanwei.infosphere.emulab.net-20120120160732.data +2012-01-20T081237-0700/2012-01-20@16-00-32/client0.gz +2012-01-20T081237-0700/2012-01-20@16-27-15/ +2012-01-20T081237-0700/2012-01-20@16-27-15/index.html +2012-01-20T081237-0700/2012-01-20@16-27-15/trace_client0.html +2012-01-20T081237-0700/2012-01-20@16-27-15/client0.gz +2012-01-20T081237-0700/2012-01-20@16-27-15/trace_client1.html +2012-01-20T081237-0700/2012-01-20@16-27-15/stat_client1.html +2012-01-20T081237-0700/2012-01-20@16-27-15/trace_client2.html +2012-01-20T081237-0700/2012-01-20@16-27-15/stat_client2.html +2012-01-20T081237-0700/2012-01-20@16-27-15/trace_client3.html +2012-01-20T081237-0700/2012-01-20@16-27-15/stat_client3.html +2012-01-20T081237-0700/2012-01-20@16-27-15/trace_client4.html +2012-01-20T081237-0700/2012-01-20@16-27-15/stat_client4.html +2012-01-20T081237-0700/2012-01-20@16-27-15/perf.html +2012-01-20T081237-0700/2012-01-20@16-27-15/stat_client0.html +2012-01-20T081237-0700/2012-01-20@16-27-15/oprofile_db.log +2012-01-20T081237-0700/2012-01-20@16-27-15/oprofile_runtime.log +2012-01-20T081237-0700/2012-01-20@16-27-15/client4.gz +2012-01-20T081237-0700/2012-01-20@16-27-15/iostat-node2.hanwei.infosphere.emulab.net-20120120163415.data +2012-01-20T081237-0700/2012-01-20@16-27-15/iostat-node3.hanwei.infosphere.emulab.net-20120120163415.data +2012-01-20T081237-0700/2012-01-20@16-27-15/iostat-node4.hanwei.infosphere.emulab.net-20120120163415.data +2012-01-20T081237-0700/2012-01-20@16-27-15/iostat-node5.hanwei.infosphere.emulab.net-20120120163415.data +2012-01-20T081237-0700/2012-01-20@16-27-15/iostat-node6.hanwei.infosphere.emulab.net-20120120163415.data +2012-01-20T081237-0700/2012-01-20@16-27-15/iostat-node7.hanwei.infosphere.emulab.net-20120120163415.data +2012-01-20T081237-0700/2012-01-20@16-27-15/db_server.gz +2012-01-20T081237-0700/2012-01-20@16-27-15/web_server.gz +2012-01-20T081237-0700/2012-01-20@16-27-15/iostat-node8.hanwei.infosphere.emulab.net-20120120163415.data +2012-01-20T081237-0700/2012-01-20@16-27-15/servlets_server.gz +2012-01-20T081237-0700/2012-01-20@16-27-15/client1.gz +2012-01-20T081237-0700/2012-01-20@16-27-15/iostat-node9.hanwei.infosphere.emulab.net-20120120163415.data +2012-01-20T081237-0700/2012-01-20@16-27-15/client2.gz +2012-01-20T081237-0700/2012-01-20@16-27-15/client3.gz +2012-01-20T081237-0700/2012-01-20@16-53-08/ +2012-01-20T081237-0700/2012-01-20@16-53-08/index.html +2012-01-20T081237-0700/2012-01-20@16-53-08/trace_client0.html +2012-01-20T081237-0700/2012-01-20@16-53-08/client0.gz +2012-01-20T081237-0700/2012-01-20@16-53-08/trace_client1.html +2012-01-20T081237-0700/2012-01-20@16-53-08/stat_client1.html +2012-01-20T081237-0700/2012-01-20@16-53-08/trace_client2.html +2012-01-20T081237-0700/2012-01-20@16-53-08/stat_client2.html +2012-01-20T081237-0700/2012-01-20@16-53-08/trace_client3.html +2012-01-20T081237-0700/2012-01-20@16-53-08/stat_client3.html +2012-01-20T081237-0700/2012-01-20@16-53-08/trace_client4.html +2012-01-20T081237-0700/2012-01-20@16-53-08/stat_client4.html +2012-01-20T081237-0700/2012-01-20@16-53-08/perf.html +2012-01-20T081237-0700/2012-01-20@16-53-08/stat_client0.html +2012-01-20T081237-0700/2012-01-20@16-53-08/db_server.gz +2012-01-20T081237-0700/2012-01-20@16-53-08/client1.gz +2012-01-20T081237-0700/2012-01-20@16-53-08/client2.gz +2012-01-20T081237-0700/2012-01-20@16-53-08/client3.gz +2012-01-20T081237-0700/2012-01-20@16-53-08/client4.gz +2012-01-20T081237-0700/2012-01-20@16-53-08/iostat-node2.hanwei.infosphere.emulab.net-20120120170007.data +2012-01-20T081237-0700/2012-01-20@16-53-08/iostat-node3.hanwei.infosphere.emulab.net-20120120170007.data +2012-01-20T081237-0700/2012-01-20@16-53-08/oprofile_db.log +2012-01-20T081237-0700/2012-01-20@16-53-08/servlets_server.gz +2012-01-20T081237-0700/2012-01-20@16-53-08/iostat-node4.hanwei.infosphere.emulab.net-20120120170007.data +2012-01-20T081237-0700/2012-01-20@16-53-08/iostat-node5.hanwei.infosphere.emulab.net-20120120170007.data +2012-01-20T081237-0700/2012-01-20@16-53-08/iostat-node6.hanwei.infosphere.emulab.net-20120120170007.data +2012-01-20T081237-0700/2012-01-20@16-53-08/oprofile_runtime.log +2012-01-20T081237-0700/2012-01-20@16-53-08/web_server.gz +2012-01-20T081237-0700/2012-01-20@16-53-08/iostat-node7.hanwei.infosphere.emulab.net-20120120170007.data +2012-01-20T081237-0700/2012-01-20@16-53-08/iostat-node8.hanwei.infosphere.emulab.net-20120120170007.data +2012-01-20T081237-0700/2012-01-20@16-53-08/iostat-node9.hanwei.infosphere.emulab.net-20120120170007.data +2012-01-20T081237-0700/2012-01-20@17-18-51/ +2012-01-20T081237-0700/2012-01-20@17-18-51/index.html +2012-01-20T081237-0700/2012-01-20@17-18-51/trace_client0.html +2012-01-20T081237-0700/2012-01-20@17-18-51/client0.gz +2012-01-20T081237-0700/2012-01-20@17-18-51/trace_client1.html +2012-01-20T081237-0700/2012-01-20@17-18-51/stat_client1.html +2012-01-20T081237-0700/2012-01-20@17-18-51/trace_client2.html +2012-01-20T081237-0700/2012-01-20@17-18-51/stat_client2.html +2012-01-20T081237-0700/2012-01-20@17-18-51/trace_client3.html +2012-01-20T081237-0700/2012-01-20@17-18-51/stat_client3.html +2012-01-20T081237-0700/2012-01-20@17-18-51/trace_client4.html +2012-01-20T081237-0700/2012-01-20@17-18-51/stat_client4.html +2012-01-20T081237-0700/2012-01-20@17-18-51/perf.html +2012-01-20T081237-0700/2012-01-20@17-18-51/stat_client0.html +2012-01-20T081237-0700/2012-01-20@17-18-51/db_server.gz +2012-01-20T081237-0700/2012-01-20@17-18-51/oprofile_db.log +2012-01-20T081237-0700/2012-01-20@17-18-51/client4.gz +2012-01-20T081237-0700/2012-01-20@17-18-51/iostat-node2.hanwei.infosphere.emulab.net-20120120172550.data +2012-01-20T081237-0700/2012-01-20@17-18-51/iostat-node3.hanwei.infosphere.emulab.net-20120120172550.data +2012-01-20T081237-0700/2012-01-20@17-18-51/oprofile_runtime.log +2012-01-20T081237-0700/2012-01-20@17-18-51/servlets_server.gz +2012-01-20T081237-0700/2012-01-20@17-18-51/iostat-node4.hanwei.infosphere.emulab.net-20120120172550.data +2012-01-20T081237-0700/2012-01-20@17-18-51/iostat-node5.hanwei.infosphere.emulab.net-20120120172550.data +2012-01-20T081237-0700/2012-01-20@17-18-51/iostat-node6.hanwei.infosphere.emulab.net-20120120172550.data +2012-01-20T081237-0700/2012-01-20@17-18-51/web_server.gz +2012-01-20T081237-0700/2012-01-20@17-18-51/iostat-node7.hanwei.infosphere.emulab.net-20120120172550.data +2012-01-20T081237-0700/2012-01-20@17-18-51/iostat-node8.hanwei.infosphere.emulab.net-20120120172550.data +2012-01-20T081237-0700/2012-01-20@17-18-51/iostat-node9.hanwei.infosphere.emulab.net-20120120172550.data +2012-01-20T081237-0700/2012-01-20@17-18-51/client2.gz +2012-01-20T081237-0700/2012-01-20@17-18-51/client3.gz +2012-01-20T081237-0700/2012-01-20@17-18-51/client1.gz +Finish RUBBoS diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/manualCleanup.sh b/rubbos/rubbos_scripts/1-1-1/scripts/manualCleanup.sh new file mode 100755 index 00000000..0b93f757 --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/scripts/manualCleanup.sh @@ -0,0 +1,76 @@ +#!/bin/bash + +cd /bottlenecks/rubbos/rubbos_scripts/1-1-1 +source set_bottlenecks_rubbos_env.sh + +echo "Uninstalling ...." + +ssh $BENCHMARK_HOST /tmp/BENCHMARK_uninstall.sh +ssh $CLIENT1_HOST /tmp/CLIENT1_uninstall.sh +ssh $CLIENT2_HOST /tmp/CLIENT2_uninstall.sh +ssh $CLIENT3_HOST /tmp/CLIENT3_uninstall.sh +ssh $CLIENT4_HOST /tmp/CLIENT4_uninstall.sh +ssh $HTTPD_HOST /tmp/HTTPD_uninstall.sh +ssh $TOMCAT1_HOST /tmp/TOMCAT1_uninstall.sh +ssh $MYSQL1_HOST /tmp/MYSQL1_uninstall.sh + +echo "Cleaning up ...." +for i in "$BENCHMARK_HOST" "$CLIENT1_HOST" "$CLIENT2_HOST" "$CLIENT3_HOST" "$CLIENT4_HOST" "$HTTPD_HOST" "$TOMCAT1_HOST" "$MYSQL1_HOST" +do + ssh $i " + sudo \rm -r $RUBBOS_TOP + " +done + + +ssh $CONTROL_HOST rm -f /tmp/CONTROL_checkScp_exec.sh +ssh $CONTROL_HOST rm -f /tmp/CONTROL_emulabConf_exec.sh +ssh $CONTROL_HOST rm -f /tmp/CONTROL_rubbos_exec.sh +ssh $BENCHMARK_HOST rm -f /tmp/BENCHMARK_rubbos_install.sh +ssh $BENCHMARK_HOST rm -f /tmp/BENCHMARK_install.sh +ssh $BENCHMARK_HOST rm -f /tmp/BENCHMARK_configure.sh +ssh $BENCHMARK_HOST rm -f /tmp/BENCHMARK_uninstall.sh +ssh $BENCHMARK_HOST rm -f /tmp/BENCHMARK_rubbos_uninstall.sh +ssh $CLIENT1_HOST rm -f /tmp/CLIENT1_rubbos_install.sh +ssh $CLIENT1_HOST rm -f /tmp/CLIENT1_install.sh +ssh $CLIENT1_HOST rm -f /tmp/CLIENT1_configure.sh +ssh $CLIENT1_HOST rm -f /tmp/CLIENT1_uninstall.sh +ssh $CLIENT1_HOST rm -f /tmp/CLIENT1_rubbos_uninstall.sh +ssh $CLIENT2_HOST rm -f /tmp/CLIENT2_rubbos_install.sh +ssh $CLIENT2_HOST rm -f /tmp/CLIENT2_install.sh +ssh $CLIENT2_HOST rm -f /tmp/CLIENT2_configure.sh +ssh $CLIENT2_HOST rm -f /tmp/CLIENT2_uninstall.sh +ssh $CLIENT2_HOST rm -f /tmp/CLIENT2_rubbos_uninstall.sh +ssh $CLIENT3_HOST rm -f /tmp/CLIENT3_rubbos_install.sh +ssh $CLIENT3_HOST rm -f /tmp/CLIENT3_install.sh +ssh $CLIENT3_HOST rm -f /tmp/CLIENT3_configure.sh +ssh $CLIENT3_HOST rm -f /tmp/CLIENT3_uninstall.sh +ssh $CLIENT3_HOST rm -f /tmp/CLIENT3_rubbos_uninstall.sh +ssh $CLIENT4_HOST rm -f /tmp/CLIENT4_rubbos_install.sh +ssh $CLIENT4_HOST rm -f /tmp/CLIENT4_install.sh +ssh $CLIENT4_HOST rm -f /tmp/CLIENT4_configure.sh +ssh $CLIENT4_HOST rm -f /tmp/CLIENT4_uninstall.sh +ssh $CLIENT4_HOST rm -f /tmp/CLIENT4_rubbos_uninstall.sh +ssh $HTTPD_HOST rm -f /tmp/HTTPD_install.sh +ssh $HTTPD_HOST rm -f /tmp/HTTPD_rubbos_install.sh +ssh $HTTPD_HOST rm -f /tmp/HTTPD_configure.sh +ssh $HTTPD_HOST rm -f /tmp/HTTPD_ignition.sh +ssh $HTTPD_HOST rm -f /tmp/HTTPD_stop.sh +ssh $HTTPD_HOST rm -f /tmp/HTTPD_rubbos_uninstall.sh +ssh $HTTPD_HOST rm -f /tmp/HTTPD_uninstall.sh +ssh $TOMCAT1_HOST rm -f /tmp/TOMCAT1_install.sh +ssh $TOMCAT1_HOST rm -f /tmp/TOMCAT1_rubbos_install.sh +ssh $TOMCAT1_HOST rm -f /tmp/TOMCAT1_configure.sh +ssh $TOMCAT1_HOST rm -f /tmp/TOMCAT1_rubbosSL_configure.sh +ssh $TOMCAT1_HOST rm -f /tmp/TOMCAT1_ignition.sh +ssh $TOMCAT1_HOST rm -f /tmp/TOMCAT1_stop.sh +ssh $TOMCAT1_HOST rm -f /tmp/TOMCAT1_rubbos_uninstall.sh +ssh $TOMCAT1_HOST rm -f /tmp/TOMCAT1_uninstall.sh +ssh $MYSQL1_HOST rm -f /tmp/MYSQL1_install.sh +ssh $MYSQL1_HOST rm -f /tmp/MYSQL1_rubbos_install.sh +ssh $MYSQL1_HOST rm -f /tmp/MYSQL1_configure.sh +ssh $MYSQL1_HOST rm -f /tmp/MYSQL1_reset.sh +ssh $MYSQL1_HOST rm -f /tmp/MYSQL1_ignition.sh +ssh $MYSQL1_HOST rm -f /tmp/MYSQL1_stop.sh +ssh $MYSQL1_HOST rm -f /tmp/MYSQL1_rubbos_uninstall.sh +ssh $MYSQL1_HOST rm -f /tmp/MYSQL1_uninstall.sh diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/reset_all.sh b/rubbos/rubbos_scripts/1-1-1/scripts/reset_all.sh new file mode 100755 index 00000000..f26761fe --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/scripts/reset_all.sh @@ -0,0 +1,8 @@ +#!/bin/bash + +cd /bottlenecks/rubbos/rubbos_scripts/1-1-1 +source set_bottlenecks_rubbos_env.sh + +#ssh $MYSQL1_HOST /tmp/MYSQL1_reset.sh & +#sleep 120 + diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/run.sh b/rubbos/rubbos_scripts/1-1-1/scripts/run.sh new file mode 100755 index 00000000..559d159b --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/scripts/run.sh @@ -0,0 +1,196 @@ +cd /bottlenecks/rubbos/rubbos_scripts/1-1-1 +source set_bottlenecks_rubbos_env.sh +cd /bottlenecks/rubbos/rubbos_scripts/1-1-1/scripts +# Transfer all sub scripts to target hosts +echo "*** scp scripts *************************************************" + +scp -o StrictHostKeyChecking=no -o BatchMode=yes CONTROL_checkScp_exec.sh $CONTROL_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes CONTROL_emulabConf_exec.sh $CONTROL_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes CONTROL_rubbos_exec.sh $CONTROL_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes BENCHMARK_rubbos_install.sh $BENCHMARK_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes BENCHMARK_install.sh $BENCHMARK_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes BENCHMARK_configure.sh $BENCHMARK_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes BENCHMARK_uninstall.sh $BENCHMARK_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes BENCHMARK_rubbos_uninstall.sh $BENCHMARK_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes CLIENT1_rubbos_install.sh $CLIENT1_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes CLIENT1_install.sh $CLIENT1_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes CLIENT1_configure.sh $CLIENT1_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes CLIENT1_uninstall.sh $CLIENT1_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes CLIENT1_rubbos_uninstall.sh $CLIENT1_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes CLIENT2_rubbos_install.sh $CLIENT2_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes CLIENT2_install.sh $CLIENT2_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes CLIENT2_configure.sh $CLIENT2_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes CLIENT2_uninstall.sh $CLIENT2_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes CLIENT2_rubbos_uninstall.sh $CLIENT2_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes CLIENT3_rubbos_install.sh $CLIENT3_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes CLIENT3_install.sh $CLIENT3_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes CLIENT3_configure.sh $CLIENT3_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes CLIENT3_uninstall.sh $CLIENT3_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes CLIENT3_rubbos_uninstall.sh $CLIENT3_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes CLIENT4_rubbos_install.sh $CLIENT4_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes CLIENT4_install.sh $CLIENT4_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes CLIENT4_configure.sh $CLIENT4_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes CLIENT4_uninstall.sh $CLIENT4_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes CLIENT4_rubbos_uninstall.sh $CLIENT4_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes HTTPD_install.sh $HTTPD_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes HTTPD_rubbos_install.sh $HTTPD_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes HTTPD_configure.sh $HTTPD_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes HTTPD_ignition.sh $HTTPD_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes HTTPD_stop.sh $HTTPD_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes HTTPD_rubbos_uninstall.sh $HTTPD_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes HTTPD_uninstall.sh $HTTPD_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes TOMCAT1_install.sh $TOMCAT1_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes TOMCAT1_rubbos_install.sh $TOMCAT1_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes TOMCAT1_configure.sh $TOMCAT1_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes TOMCAT1_rubbosSL_configure.sh $TOMCAT1_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes TOMCAT1_ignition.sh $TOMCAT1_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes TOMCAT1_stop.sh $TOMCAT1_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes TOMCAT1_rubbos_uninstall.sh $TOMCAT1_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes TOMCAT1_uninstall.sh $TOMCAT1_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes MYSQL1_install.sh $MYSQL1_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes MYSQL1_rubbos_install.sh $MYSQL1_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes MYSQL1_configure.sh $MYSQL1_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes MYSQL1_reset.sh $MYSQL1_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes MYSQL1_ignition.sh $MYSQL1_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes MYSQL1_stop.sh $MYSQL1_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes MYSQL1_rubbos_uninstall.sh $MYSQL1_HOST:/tmp + +scp -o StrictHostKeyChecking=no -o BatchMode=yes MYSQL1_uninstall.sh $MYSQL1_HOST:/tmp + + +# Install and Configure and run Apache, Tomcat, CJDBC, and MySQL +echo "*** install scripts & configure & execute ***********************" + +#ssh root@$CONTROL_HOST chmod 777 /tmp/CONTROL_checkScp_exe.sh +#ssh $CONTROL_HOST /tmp/CONTROL_checkScp_exec.sh +#ssh root@$CONTROL_HOST chmod 777 /tmp/CONTROL_emulabConf_exec.sh +#ssh $CONTROL_HOST /tmp/CONTROL_emulabConf_exec.sh + +ssh root@$MYSQL1_HOST chmod 777 /tmp/MYSQL1_install.sh +ssh $MYSQL1_HOST /tmp/MYSQL1_install.sh + +ssh root@$TOMCAT1_HOST chmod 777 /tmp/TOMCAT1_install.sh +ssh $TOMCAT1_HOST /tmp/TOMCAT1_install.sh + + +ssh $HTTPD_HOST /tmp/HTTPD_install.sh + +ssh root@$MYSQL1_HOST chmod 777 /tmp/MYSQL1_rubbos_install.sh +ssh $MYSQL1_HOST /tmp/MYSQL1_rubbos_install.sh + +ssh root@$TOMCAT1_HOST chmod 777 /tmp/TOMCAT1_rubbos_install.sh +ssh $TOMCAT1_HOST /tmp/TOMCAT1_rubbos_install.sh + + +ssh $HTTPD_HOST /tmp/HTTPD_rubbos_install.sh + +ssh root@$BENCHMARK_HOST chmod 777 /tmp/BENCHMARK_rubbos_install.sh +ssh $BENCHMARK_HOST /tmp/BENCHMARK_rubbos_install.sh + +ssh root@$CLIENT1_HOST chmod 777 /tmp/CLIENT1_rubbos_install.sh +ssh $CLIENT1_HOST /tmp/CLIENT1_rubbos_install.sh + +ssh root@$CLIENT2_HOST chmod 777 /tmp/CLIENT2_rubbos_install.sh +ssh $CLIENT2_HOST /tmp/CLIENT2_rubbos_install.sh + +ssh root@$CLIENT3_HOST chmod 777 /tmp/CLIENT3_rubbos_install.sh +ssh $CLIENT3_HOST /tmp/CLIENT3_rubbos_install.sh + +ssh root@$CLIENT4_HOST chmod 777 /tmp/CLIENT4_rubbos_install.sh +ssh $CLIENT4_HOST /tmp/CLIENT4_rubbos_install.sh + +ssh root@$BENCHMARK_HOST chmod 777 /tmp/BENCHMARK_install.sh +ssh $BENCHMARK_HOST /tmp/BENCHMARK_install.sh + +ssh root@$CLIENT1_HOST chmod 777 /tmp/CLIENT1_install.sh +ssh $CLIENT1_HOST /tmp/CLIENT1_install.sh + +#ssh root@$CLIENT2_HOST chmod 777 /tmp/CLIENT2_install.sh +#ssh $CLIENT2_HOST /tmp/CLIENT2_install.sh + +#ssh root@$CLIENT3_HOST chmod 777 /tmp/CLIENT3_install.sh +#ssh $CLIENT3_HOST /tmp/CLIENT3_install.sh + +#ssh root@$CLIENT4_HOST chmod 777 /tmp/CLIENT4_install.sh +#ssh $CLIENT4_HOST /tmp/CLIENT4_install.sh + +ssh root@$MYSQL1_HOST chmod 777 /tmp/MYSQL1_configure.sh +ssh $MYSQL1_HOST /tmp/MYSQL1_configure.sh & +sleep 60 + +ssh root@$TOMCAT1_HOST chmod 777 /tmp/TOMCAT1_configure.sh +ssh $TOMCAT1_HOST /tmp/TOMCAT1_configure.sh + + +ssh $HTTPD_HOST /tmp/HTTPD_configure.sh + +ssh root@$BENCHMARK_HOST chmod 777 /tmp/BENCHMARK_configure.sh +ssh $BENCHMARK_HOST /tmp/BENCHMARK_configure.sh + +ssh root@$CLIENT1_HOST chmod 777 /tmp/CLIENT1_configure.sh +ssh $CLIENT1_HOST /tmp/CLIENT1_configure.sh + +#ssh root@$CLIENT2_HOST chmod 777 /tmp/CLIENT2_configure.sh +#ssh $CLIENT2_HOST /tmp/CLIENT2_configure.sh + +#ssh root@$CLIENT3_HOST chmod 777 /tmp/CLIENT3_configure.sh +#ssh $CLIENT3_HOST /tmp/CLIENT3_configure.sh + +#ssh root@$CLIENT4_HOST chmod 777 /tmp/CLIENT4_configure.sh +#ssh $CLIENT4_HOST /tmp/CLIENT4_configure.sh + +ssh root@$TOMCAT1_HOST chmod 777 /tmp/TOMCAT1_rubbosSL_configure.sh +ssh $TOMCAT1_HOST /tmp/TOMCAT1_rubbosSL_configure.sh + + +#ssh $CONTROL_HOST /tmp/CONTROL_rubbos_exec.sh + diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/run_mysql.sh b/rubbos/rubbos_scripts/1-1-1/scripts/run_mysql.sh new file mode 100644 index 00000000..e9760362 --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/scripts/run_mysql.sh @@ -0,0 +1,19 @@ +#!/bin/bash + + +ssh $MYSQL1_HOST /tmp/MYSQL1_install.sh + + + + +ssh $MYSQL1_HOST /tmp/MYSQL1_rubbos_install.sh + + + + +ssh $MYSQL1_HOST /tmp/MYSQL1_configure.sh & +sleep 60 + + +#ssh $CONTROL_HOST /tmp/CONTROL_rubbos_exec.sh + diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/start_all.sh b/rubbos/rubbos_scripts/1-1-1/scripts/start_all.sh new file mode 100755 index 00000000..605e1a58 --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/scripts/start_all.sh @@ -0,0 +1,13 @@ +#!/bin/bash + +cd /bottlenecks/rubbos/rubbos_scripts/1-1-1 +source set_bottlenecks_rubbos_env.sh + +ssh $MYSQL1_HOST /tmp/MYSQL1_ignition.sh & +sleep 10 + +ssh $TOMCAT1_HOST /tmp/TOMCAT1_ignition.sh +sleep 10 + +ssh $HTTPD_HOST /tmp/HTTPD_ignition.sh +sleep 5 diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/stop_all.sh b/rubbos/rubbos_scripts/1-1-1/scripts/stop_all.sh new file mode 100755 index 00000000..84f5165b --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/scripts/stop_all.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +cd /bottlenecks/rubbos/rubbos_scripts/1-1-1 +source set_bottlenecks_rubbos_env.sh + +ssh $HTTPD_HOST /tmp/HTTPD_stop.sh + +ssh $TOMCAT1_HOST /tmp/TOMCAT1_stop.sh + +ssh $MYSQL1_HOST /tmp/MYSQL1_stop.sh diff --git a/rubbos/rubbos_scripts/1-1-1/set_bottlenecks_rubbos_env.sh b/rubbos/rubbos_scripts/1-1-1/set_bottlenecks_rubbos_env.sh index 0b04f994..b1cef518 100755 --- a/rubbos/rubbos_scripts/1-1-1/set_bottlenecks_rubbos_env.sh +++ b/rubbos/rubbos_scripts/1-1-1/set_bottlenecks_rubbos_env.sh @@ -1,13 +1,4 @@ - #!/bin/bash -############################################################################## -# Copyright (c) 2015 Huawei -# hongbo.tianhongbo@huawei.com -# All rights reserved. This program and the accompanying materials -# are made available under the terms of the Apache License, Version 2.0 -# which accompanies this distribution, and is available at -# http://www.apache.org/licenses/LICENSE-2.0 -############################################################################## set -o allexport @@ -36,8 +27,8 @@ RUBBOS_RESULTS_DIR_BASE=/bottlenecks/rubbos/rubbos_results RUBBOS_RESULTS_DIR_NAME=2015-01-20T081237-0700 # Target directories -BOTTLNECKS_TOP=/bottlenecks -RUBBOS_TOP=$BOTTLNECKS_TOP/rubbos +BOTTLENECKS_TOP=/bottlenecks +RUBBOS_TOP=$BOTTLENECKS_TOP/rubbos RUBBOS_APP=$RUBBOS_TOP/app TMP_RESULTS_DIR_BASE=$RUBBOS_TOP/tmp_results RUBBOS_HOME=$RUBBOS_APP/RUBBoS @@ -52,7 +43,7 @@ SERVLET_API_PATH=$CATALINA_HOME/common/lib/servlet-api.jar CATALINA_BASE=$CATALINA_HOME CJDBC_HOME= -MYSQL_HOME=$RUBBOS_APP/mysql-5.0.51a-linux-i686-glibc23 +MYSQL_HOME=$RUBBOS_APP/mysql-5.5.46-linux2.6-x86_64 # Java & Ant JAVA_HOME=$RUBBOS_APP/jdk1.6.0_27 @@ -69,7 +60,7 @@ HTTPD_TARBALL=httpd-2.0.64.tar.gz MOD_JK_TARBALL=tomcat-connectors-1.2.32-src.tar.gz TOMCAT_TARBALL=apache-tomcat-5.5.17.tar.gz CJDBC_TARBALL= -MYSQL_TARBALL=mysql-5.0.51a-linux-i686-glibc23.tar.gz +MYSQL_TARBALL=mysql-5.5.46-linux2.6-x86_64.tar.gz RUBBOS_TARBALL=RUBBoS-servlets.tar.gz RUBBOS_DATA_TARBALL=rubbos_data.tar.gz RUBBOS_DATA_TEXTFILES_TARBALL=smallDB-rubbos-modified.tgz @@ -82,10 +73,14 @@ MYSQL_DATA_DIR=$MYSQL_HOME/data MYSQL_ERR_LOG=$MYSQL_HOME/data/mysql.log MYSQL_PID_FILE=$MYSQL_HOME/run/mysqld.pid +# for DBs & C-JDBC +ROOT_PASSWORD=new-password +BOTTLENECKS_USER=bottlenecks +BOTTLENECKS_PASSWORD=bottlenecks + CLASSPATH=$CLASSPATH:$JONAS_ROOT/bin/unix/registry:$JAVA_HOME:$JAVA_HOME/lib/tools.jar:$SERVLET_API_PATH:. PATH=$JAVA_HOME/bin:$JONAS_ROOT/bin/unix:$ANT_HOME/bin:$CATALINA_HOME/bin:$PATH - set +o allexport diff --git a/rubbos/rubbos_scripts/1-1-1/sysstat_conf/CONFIG b/rubbos/rubbos_scripts/1-1-1/sysstat_conf/CONFIG new file mode 100644 index 00000000..24bfca3a --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/sysstat_conf/CONFIG @@ -0,0 +1,46 @@ + +# Configuration file for sysstat +# (C) 2000-2006 Sebastien GODARD (sysstat wanadoo.fr) + +# Directories +PREFIX = /bottlenecks/rubbos/app/sysstat-9.0.6 +SA_LIB_DIR = /bottlenecks/rubbos/app/sysstat-9.0.6/lib/sa +SADC_PATH = ${SA_LIB_DIR}/sadc +SA_DIR = /bottlenecks/rubbos/app/sysstat-9.0.6/var/log/sa +MAN_DIR = /bottlenecks/rubbos/app/sysstat-9.0.6/man +CLEAN_SA_DIR = n +YESTERDAY = +HISTORY = 7 + +DFLAGS = +SAS_DFLAGS = + +ENABLE_NLS = y +ENABLE_SMP_WRKARD = n + +ifeq ($(ENABLE_NLS),y) +# NLS (National Language Support) +REQUIRE_NLS = -DUSE_NLS -DPACKAGE=\"$(PACKAGE)\" -DLOCALEDIR=\"$(PREFIX)/share/locale\" +endif +ifdef REQUIRE_NLS + DFLAGS += $(REQUIRE_NLS) +endif + +ifeq ($(ENABLE_SMP_WRKARD),y) +# Uncomment this to enable workaround for Linux kernel SMP race condition +SAS_DFLAGS += -DSMP_RACE +endif + +# Man page group +MAN_GROUP = man + +# Crontab owner +CRON_OWNER = adm + +# Run-command directories +RC_DIR = /etc +INIT_DIR = /etc/init.d +INITD_DIR = init.d + +INSTALL_CRON = n + diff --git a/rubbos/rubbos_scripts/1-1-1/tomcat_conf/server.xml-ubuntu b/rubbos/rubbos_scripts/1-1-1/tomcat_conf/server.xml-ubuntu new file mode 100644 index 00000000..0998a819 --- /dev/null +++ b/rubbos/rubbos_scripts/1-1-1/tomcat_conf/server.xml-ubuntu @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +