Problem with alias in Dutch

Hi all,
I keep having trouble with the alias construction in Dutch. In English, it works perfectly fine, but if I translate the rule into Dutch (of course, in another - Dutch - rulebase project) it won't compile.
English rule:
the person's ID is a match with the other ID if
ExistsScope(the persons, the other person)
the person ID = the other person ID
and
InstanceNotEquals(the person, the other person)
Dutch rule:
het ID nummer van de persoon komt overeen met het andere ID als
BestaatBereik(de personen, de andere persoon)
het ID-nummer van de persoon= het ID-nummer van de andere persoon
en
InstantieNietGelijkaan(de persoon, de andere persoon)
Compile error in Dutch version:
"Unable to parse 'InstantieNietGelijkAan(de persoon, de andere persoon)'. Expected: expression, variable, statement"
Any help?
Cheers, Els

Hi Els!
It seems to be working in a basic rulebase we tried. Normally that error occurs when OPA doesn't recognise the entity text for the <instance 1> or <instance 2> argument.
It might be worth deleting the .xgen file and creating a new document and starting again as something may have become corrupted.
Failing that, feel free to send the rulebase over - are you using 10.4?
Cheers,
Ben

Similar Messages

  • Problem with alias

    I've two tables.
    Table One contains 3 columns A,B,C where A is the Primary key.
    Table Two contains A,D,E where A is the foreign key.
    Select * from One,Two where One.A=Two.A
    So when I create a custom folder using above SQL ,it would say it is Not Valid. Since the column A is present in both the tables. In my case Both table contains 30columsn each, I want to know is there anyway other than using alias to tell the column names.

    Hi there,
    If you are creating a custom folder in Discoverer, it would NOT be good practice to display all columns anyway. Column A, being the primary key, should be invisibile to the user and therefore it should not be in the custom SQL.
    So, be selective and put the desired columns required in the sequence that is logical to the user. Additionally, put in user-friendly alias for the columns selected.
    Hope that helps.
    John

  • Problem with alias table loading

    I am trying to load an alias table. As far as I know the .alt file needs to be kept on the server where Essbase is installed, not on the client machine.
    i have Remote connected to the server machine and kept the file ALT.alt directly under in the C drive.
    when running the following script:
    alter database 'APP'.'DB' load alias_table 'S' from data_file "C:\ALT.alt";
    I get the error that the file does not exist..
    Could you guys please clarify the situation.

    This file you were hoping to load: it's on the server, right? Not on the computer where the applet is running in a browser?
    (At least that's a common mistake made by people when they write their first applet.)
    If that's the case then you can't use a File object to access a file on a different computer. To access a file on the server, first you will have to put the file in a place on the server where it can be downloaded. Then in your applet you need to get a URL for the file. (The getDocumentBase() method can be used to prevent you from having to hard-code the full URL for the file.) Next, "this.getClass().getResourceAsStream(URL)" gets you an InputStream from which you can read the data from the file.

  • I how problems with delete/ fix alias

    I how problems with delete/fix alias. Somehow, I am trying to delete or fix alias by clicking the icon it show a pop-up saying to click "delete alias" or "fix alias." When I click "delete alias", it wouldn't let me. When I click "fix alias" I could not find what I am looking for. I try clicking different icon, but is show a pop-up saying "it could not be found (error code-43). Can someone help out????

    Moved to InDesign forum.
    You can start by telling us what the problem is.

  • Problem with htmldb 2 (Sorry APEX)!

    I installed htmldb 2 on a windows XP, Oracle 10gR1 (which has enhanced by companion CD downloaded form Oracle's site). Everything went OK but when I want to connect to it by this url: http://localhost:7777/pls/htmldb it takes my username,pass but says:
    "Service Temporarily Unavailable
    The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.
    Oracle-HTTP-Server/1.3.28 Server at localhost Port 7777"
    I noticed many differences between my installed Apache and documents of htmldb. I run a 9.0.4.0.0 Apache server and the dads.conf and httpd.conf are as following:
    # ============================================================================
    # mod_plsql DAD Configuration File
    # ============================================================================
    # 1. Please refer to dads.README for a description of this file
    # ============================================================================
    # Note: This file should typically be included in your plsql.conf file with
    # the "include" directive.
    # Hint: You can look at some sample DADs in the dads.README file
    # ============================================================================
    Alias /i/ "E:\oracle\product\10.1.0\Companion\Apache\Apache\images/"
    <Location /pls/htmldb>
    SetHandler pls_handler
    Order deny,allow
    Allow from all
    AllowOverride None
    PlsqlDatabaseUsername HTMLDB_PUBLIC_USER     
    PlsqlDatabasePassword @BI+fAonVS+7xU8G04irVINWznM6s+A9fuQ==
    PlsqlDatabaseConnectString chagh
    PlsqlDefaultPage htmldb
    PlsqlDocumentTablename wwv_flow_file_objects$
    PlsqlDocumentPath docs
    PlsqlDocumentProcedure wwv_flow_file_mgr.process_download
    PlsqlAuthenticationMode Basic
    PlsqlNLSLanguage AMERICAN_AMERICA.AL32UTF8
    </Location>
    # 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 <URL:http://www.apache.org/docs/> 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.
    # After this file is processed, the server will look for and process
    # E:\oracle\product\10.1.0\Companion\Apache\Apache/conf/srm.conf and then E:\oracle\product\10.1.0\Companion\Apache\Apache/conf/access.conf
    # unless you have overridden these with ResourceConfig and/or
    # AccessConfig directives here.
    # 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 "E:\oracle\product\10.1.0\Companion\Apache\Apache" will be interpreted by the
    # server as "E:\oracle\product\10.1.0\Companion\Apache\Apache/logs/foo.log".
    # NOTE: Where filenames are specified, you must use forward slashes
    # instead of backslashes (e.g., "c:/apache" instead of "c:\apache").
    # If a drive letter is omitted, the drive on which Apache.exe is located
    # will be used by default. It is recommended that you always supply
    # an explicit drive letter in absolute paths, however, to avoid
    # confusion.
    ### 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.
    # ServerType is either inetd, or standalone. Inetd mode is only supported on
    # Unix platforms.
    ServerType standalone
    # ServerRoot: The top of the directory tree under which the server's
    # configuration, error, and log files are kept.
    # Do NOT add a slash at the end of the directory path.
    ServerRoot "E:\oracle\product\10.1.0\Companion\Apache\Apache"
    # PidFile: The file in which the server should record its process
    # identification number when it starts.
    PidFile logs/httpd.pid
    # ScoreBoardFile: File used to store internal server process information.
    # Not all architectures require this. But if yours does (you'll know because
    # this file will be created when you run Apache) then you must ensure that
    # no two invocations of Apache share the same scoreboard file.
    ScoreBoardFile logs/httpd.scoreboard
    # In the standard configuration, the server will process httpd.conf (this
    # file, specified by the -f command line option), srm.conf, and access.conf
    # in that order. The latter two files are now distributed empty, as it is
    # recommended that all directives be kept in a single file for simplicity.
    # The commented-out values below are the built-in defaults. You can have the
    # server ignore these files altogether by using "/dev/null" (for Unix) or
    # "nul" (for Win32) for the arguments to the directives.
    #ResourceConfig conf/srm.conf
    #AccessConfig conf/access.conf
    # Timeout: The number of seconds before receives and sends time out.
    Timeout 300
    # SendBufferSize: controls setsockopt() call made to set send buffer size on
    # all sockets. Default OS value on most Windows platforms is too small.
    # Larger values can help if the average page size served by OHS is
    # large (~64 k)
    SendBufferSize 16384
    # KeepAlive: Whether or not to allow persistent connections (more than
    # one request per connection). Set to "Off" to deactivate.
    KeepAlive On
    # 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
    # Apache on Win32 always creates one child process to handle requests. If it
    # dies, another child process is created automatically. Within the child
    # process multiple threads handle incoming requests. The next two
    # directives control the behaviour of the threads and processes.
    # MaxRequestsPerChild: the number of requests each child process is
    # allowed to process before the child dies. The child will exit so
    # as to avoid problems after prolonged use when Apache (and maybe the
    # libraries it uses) leak memory or other resources. On most systems, this
    # isn't really needed, but a few (such as Solaris) do have notable leaks
    # in the libraries. For Win32, set this value to zero (unlimited)
    # unless advised otherwise.
    # NOTE: This value does not include keepalive requests after the initial
    # request per connection. For example, if a child process handles
    # an initial request and 10 subsequent "keptalive" requests, it
    # would only count as 1 request towards this limit.
    MaxRequestsPerChild 0
    # Number of concurrent threads (i.e., requests) the server will allow.
    # Set this value according to the responsiveness of the server (more
    # requests active at once means they're all handled more slowly) and
    # the amount of system resources you'll allow the server to consume.
    ThreadsPerChild 50
    # Server-pool size regulation. Rather than making you guess how many
    # server processes you need, Apache dynamically adapts to the load it
    # sees --- that is, it tries to maintain enough server processes to
    # handle the current load, plus a few spare servers to handle transient
    # load spikes (e.g., multiple simultaneous requests from a single
    # Netscape browser).
    # It does this by periodically checking how many servers are waiting
    # for a request. If there are fewer than MinSpareServers, it creates
    # a new spare. If there are more than MaxSpareServers, some of the
    # spares die off. The default values are probably OK for most sites.
    #MinSpareServers 5
    #MaxSpareServers 20
    # Limit on total number of servers running, i.e., limit on the number
    # of clients who can simultaneously connect --- if this limit is ever
    # reached, clients will be LOCKED OUT, so it should NOT BE SET TOO LOW.
    # It is intended mainly as a brake to keep a runaway server from taking
    # the system with it as it spirals down...
    #MaxClients 150
    # Listen: Allows you to bind Apache to specific IP addresses and/or
    # ports, in addition to the default. See also the <VirtualHost>
    # directive.
    #Listen 3000
    #Listen 12.34.56.78:80
    # BindAddress: You can support virtual hosts with this option. This directive
    # is used to tell the server which IP address to listen to. It can either
    # contain "*", an IP address, or a fully qualified Internet domain name.
    # See also the <VirtualHost> and Listen directives.
    #BindAddress *
    # 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.
    # Please read the file README.DSO in the Apache 1.3 distribution for more
    # details about the DSO mechanism and run `apache -l' for the list of already
    # built-in (statically linked and thus always available) modules in your Apache
    # binary.
    # Note: The order in which modules are loaded is important. Don't change
    # the order below without expert advice.
    # Example:
    # LoadModule foo_module libexec/mod_foo.dll
    LoadModule mime_magic_module      modules/ApacheModuleMimeMagic.dll
    LoadModule mime_module          modules/ApacheModuleMime.dll
    LoadModule dbm_auth_module     modules/ApacheModuleAuthDBM.dll
    LoadModule digest_auth_module     modules/ApacheModuleAuthDigest.dll
    LoadModule anon_auth_module      modules/ApacheModuleAuthAnon.dll
    LoadModule cern_meta_module      modules/ApacheModuleCERNMeta.dll
    LoadModule digest_module      modules/ApacheModuleDigest.dll
    LoadModule expires_module      modules/ApacheModuleExpires.dll
    LoadModule headers_module      modules/ApacheModuleHeaders.dll
    LoadModule proxy_module      modules/ApacheModuleProxy.dll
    LoadModule speling_module      modules/ApacheModuleSpeling.dll
    LoadModule status_module      modules/ApacheModuleStatus.dll
    LoadModule info_module          modules/ApacheModuleInfo.dll
    LoadModule usertrack_module      modules/ApacheModuleUserTrack.dll
    LoadModule vhost_alias_module     modules/ApacheModuleVhostAlias.dll
    LoadModule agent_log_module     modules/ApacheModuleLogAgent.dll
    LoadModule referer_log_module     modules/ApacheModuleLogReferer.dll
    LoadModule perl_module      modules/ApacheModulePerl.DLL
    LoadModule fastcgi_module      modules/ApacheModuleFastCGI.dll
    LoadModule onsint_module      modules/ApacheModuleOnsint.dll
    LoadModule wchandshake_module     modules/ApacheModuleWchandshake.dll
    ClearModuleList
    AddModule mod_so.c
    AddModule mod_onsint.c
    AddModule mod_mime_magic.c
    AddModule mod_mime.c
    AddModule mod_access.c
    AddModule mod_auth.c
    AddModule mod_negotiation.c
    AddModule mod_include.c
    AddModule mod_autoindex.c
    AddModule mod_dir.c
    AddModule mod_cgi.c
    AddModule mod_userdir.c
    AddModule mod_alias.c
    AddModule mod_env.c
    AddModule mod_log_config.c
    AddModule mod_asis.c
    AddModule mod_imap.c
    AddModule mod_actions.c
    AddModule mod_setenvif.c
    AddModule mod_isapi.c
    AddModule mod_vhost_alias.c
    AddModule mod_log_referer.c
    AddModule mod_log_agent.c
    AddModule mod_auth_anon.c
    AddModule mod_auth_dbm.c
    AddModule mod_auth_digest.c
    AddModule mod_cern_meta.c
    AddModule mod_digest.c
    AddModule mod_expires.c
    AddModule mod_headers.c
    AddModule mod_proxy.c
    AddModule mod_speling.c
    AddModule mod_info.c
    AddModule mod_status.c
    AddModule mod_usertrack.c
    AddModule mod_perl.c
    AddModule mod_fastcgi.c
    AddModule mod_wchandshake.c
    <IfDefine SSL>
    LoadModule ossl_module      modules/ApacheModuleOSSL.DLL
    </IfDefine>
    # 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
    # <VirtualHost> definition. These values also provide defaults for
    # any <VirtualHost> containers you may define later in the file.
    # All of these directives may appear inside <VirtualHost> containers,
    # in which case these default settings will be overridden for the
    # virtual host being defined.
    # Port: The port to which the standalone server listens. Certain firewall
    # products must be configured before Apache can listen to a specific port.
    # Other running httpd servers will also interfere with this port. Disable
    # all firewall, security, and other services if you encounter problems.
    # To help diagnose problems use the Windows NT command NETSTAT -a
    Port 7777
    Listen 7777
    # ServerAdmin: Your address, where problems with the server should be
    # e-mailed. This address appears on some server-generated pages, such
    # as error documents.
    ServerAdmin [email protected]
    # ServerName allows you to set a host name which is sent back to clients for
    # your server if it's different than the one the program would get (i.e., use
    # "www" instead of the host's real name).
    # Note: You cannot just invent host names and hope they work. The name you
    # define here must be a valid DNS name for your host. If you don't understand
    # this, ask your network administrator.
    # If your host doesn't have a registered DNS name, enter its IP address here.
    # You will have to access it by its address (e.g., http://123.45.67.89/)
    # anyway, and this will make redirections work in a sensible way.
    # 127.0.0.1 is the TCP/IP local loop-back address, often named localhost. Your
    # machine always knows itself by this address. If you use Apache strictly for
    # local testing and development, you may use 127.0.0.1 as the server name.
    ServerName localhost
    # 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 "E:\oracle\product\10.1.0\Companion\Apache\Apache\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
    # permissions.
    <Directory />
    Options FollowSymLinks
    AllowOverride None
    </Directory>
    # 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.
    <Directory "E:\oracle\product\10.1.0\Companion\Apache\Apache\htdocs">
    # This may also be "None", "All", or any combination of "Indexes",
    # "Includes", "FollowSymLinks", "ExecCGI", or "MultiViews".
    # Note that "MultiViews" must be named explicitly --- "Options All"
    # doesn't give it to you.
    Options Indexes FollowSymLinks MultiViews
    # This controls which options the .htaccess files in directories can
    # override. Can also be "All", or any combination of "Options", "FileInfo",
    # "AuthConfig", and "Limit"
    AllowOverride None
    # Controls who can get stuff from this server.
    Order allow,deny
    Allow from all
    </Directory>
    # UserDir: The name of the directory which is appended onto a user's home
    # directory if a ~user request is received.
    # Under Win32, we do not currently try to determine the home directory of
    # a Windows login, so a format such as that below needs to be used. See
    # the UserDir documentation for details.
    <IfModule mod_userdir.c>
         UserDir "E:\oracle\product\10.1.0\Companion\Apache\Apache\users\"
    </IfModule>
    # Control access to UserDir directories. The following is an example
    # for a site where these directories are restricted to read-only.
    #<Directory /home/*/public_html>
    # AllowOverride FileInfo AuthConfig Limit
    # Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
    # <Limit GET POST OPTIONS PROPFIND>
    # Order allow,deny
    # Allow from all
    # </Limit>
    # <LimitExcept GET POST OPTIONS PROPFIND>
    # Order deny,allow
    # Deny from all
    # </LimitExcept>
    #</Directory>
    # DirectoryIndex: Name of the file or files to use as a pre-written HTML
    # directory index. Separate multiple entries with spaces.
    <IfModule mod_dir.c>
    DirectoryIndex index.html
    </IfModule>
    # AccessFileName: The name of the file to look for in each directory
    # for access control information.
    AccessFileName .htaccess
    # The following lines prevent .htaccess files from being viewed by
    # Web clients. Since .htaccess files often contain authorization
    # information, access is disallowed for security reasons. Comment
    # these lines out if you want Web visitors to see the contents of
    # .htaccess files. If you change the AccessFileName directive above,
    # be sure to make the corresponding changes here.
    # Also, folks tend to use names such as .htpasswd for password
    # files, so this will protect those as well.
    <Files ~ "^\.ht">
    Order allow,deny
    Deny from all
    </Files>
    # CacheNegotiatedDocs: By default, Apache sends "Pragma: no-cache" with each
    # document that was negotiated on the basis of content. This asks proxy
    # servers not to cache the document. Uncommenting the following line disables
    # this behavior, and proxies will be allowed to cache the documents.
    #CacheNegotiatedDocs
    # UseCanonicalName: (new for 1.3) With this setting turned on, whenever
    # Apache needs to construct a self-referencing URL (a URL that refers back
    # to the server the response is coming from) it will use ServerName and
    # Port to form a "canonical" name. With this setting off, Apache will
    # use the hostname:port that the client supplied, when possible. This
    # also affects SERVER_NAME and SERVER_PORT in CGI scripts.
    UseCanonicalName On
    # TypesConfig describes where the mime.types file (or equivalent) is
    # to be found.
    <IfModule mod_mime.c>
    TypesConfig conf/mime.types
    </IfModule>
    # 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.
    # mod_mime_magic is not part of the default server (you have to add
    # it yourself with a LoadModule [see the DSO paragraph in the 'Global
    # Environment' section], or recompile the server and include mod_mime_magic
    # as part of the configuration), so it's enclosed in an <IfModule> container.
    # This means that the MIMEMagicFile directive will only be processed if the
    # module is part of the server.
    <IfModule mod_mime_magic.c>
    MIMEMagicFile conf/magic
    </IfModule>
    # 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
    # ErrorLog: The location of the error log file.
    # If you do not specify an ErrorLog directive within a <VirtualHost>
    # container, error messages relating to that virtual host will be
    # logged here. If you do define an error logfile for a <VirtualHost>
    # container, that host's errors will be logged there and not here.
    ErrorLog "|E:\oracle\product\10.1.0\Companion\Apache\Apache\bin\rotatelogs logs/error_log 43200"
    # 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).
    # Alternate "common" format to use when fronted by webcache:
    # LogFormat "%{ClientIP}i %l %u %t \"%r\" %>s %b %h" common_webcache
    # When webcache is forwarding requests to OHS, %h becomes the IP of
    # the originating webcache server and the real client IP is stored
    # in the ClientIP header. The common_webcache format can be used
    # in place of the common format when using webcache but with one
    # important caveat: if clients are capable of bypassing webcache
    # then it is possible to spoof the client IP by manually setting
    # the ClientIP header so the %h field should be monitored in such
    # an environment. Another alternative to specifying the ClientIP
    # header directly in a LogFormat is to use the "UseWebCacheIp"
    # directive:
    # UseWebCacheIp On
    # When this is specified, %h is derived internally from the ClientIP
    # header and the access log format does not need to be modified.
    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
    # The location and format of the access logfile (Common Logfile Format).
    # If you do not define any access logfiles within a <VirtualHost>
    # container, they will be logged here. Contrariwise, if you do
    # define per-<VirtualHost> access logfiles, transactions will be
    # logged therein and not in this file.
    CustomLog "|E:\oracle\product\10.1.0\Companion\Apache\Apache\bin\rotatelogs logs/access_log 43200" 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
    # Optionally add a line containing the server version and virtual host
    # name to server-generated pages (error documents, FTP directory listings,
    # mod_status and mod_info output etc., but not CGI generated documents).
    # Set to "EMail" to also include a mailto: link to the ServerAdmin.
    # Set to one of: On | Off | EMail
    ServerSignature On
    # Apache parses all CGI scripts for the shebang line by default.
    # This comment line, the first line of the script, consists of the symbols
    # pound (#) and exclamation (!) followed by the path of the program that
    # can execute this specific script. For a perl script, with perl.exe in
    # the C:\Program Files\Perl directory, the shebang line should be:
    #!c:/program files/perl/perl
    # Note you mustnot_ indent the actual shebang line, and it must be the
    # first line of the file. Of course, CGI processing must be enabled by
    # the appropriate ScriptAlias or Options ExecCGI directives for the files
    # or directory in question.
    # However, Apache on Windows allows either the Unix behavior above, or can
    # use the Registry to match files by extention. The command to execute
    # a file of this type is retrieved from the registry by the same method as
    # the Windows Explorer would use to handle double-clicking on a file.
    # These script actions can be configured from the Windows Explorer View menu,
    # 'Folder Options', and reviewing the 'File Types' tab. Clicking the Edit
    # button allows you to modify the Actions, of which Apache 1.3 attempts to
    # perform the 'Open' Action, and failing that it will try the shebang line.
    # This behavior is subject to change in Apache release 2.0.
    # Each mechanism has it's own specific security weaknesses, from the means
    # to run a program you didn't intend the website owner to invoke, and the
    # best method is a matter of great debate.
    # To enable the this Windows specific behavior (and therefore -disable- the
    # equivilant Unix behavior), uncomment the following directive:
    #ScriptInterpreterSource registry
    # The directive above can be placed in individual <Directory> blocks or the
    # .htaccess file, with either the 'registry' (Windows behavior) or 'script'
    # (Unix behavior) option, and will override this server default option.
    # Aliases: Add here as many aliases as you need (with no limit). The format is
    # Alias fakename realname
    <IfModule mod_alias.c>
    # 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/"..
    Alias /jservdocs/ "E:\oracle\product\10.1.0\Companion\Apache\Jserv\docs/"
    Alias /javacachedocs/ "E:\oracle\product\10.1.0\Companion\javacache\javadoc/"
    Alias /icons/ "E:\oracle\product\10.1.0\Companion\Apache\Apache\icons/"
    Alias /i/ "E:\oracle\product\10.1.0\Companion\Apache\Apache\images/"
    <Directory "icons">
    Options Indexes MultiViews
    AllowOverride None
    Order allow,deny
    Allow from all
    </Directory>
    <IfModule mod_perl.c>
         Alias /perl/ "E:\oracle\product\10.1.0\Companion\Apache\Apache/cgi-bin/"
    </IfModule>
    # 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/ "E:\oracle\product\10.1.0\Companion\Apache\Apache\cgi-bin/"
    # "E:\oracle\product\10.1.0\Companion\Apache\Apache/cgi-bin" should be changed to whatever your ScriptAliased
    # CGI directory exists, if you have that configured.
    <Directory "E:\oracle\product\10.1.0\Companion\Apache\Apache\cgi-bin">
    AllowOverride None
    Options None
    Order allow,deny
    Allow from all
    </Directory>
    </IfModule>
    # End of aliases.
    # 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.
    # Format: Redirect old-URI new-URL
    # Directives controlling the display of server-generated directory listings.
    <IfModule mod_autoindex.c>
    # FancyIndexing is whether you want fancy directory indexing or standard
    # Note, add the option TrackModified to the IndexOptions default list only
    # if all indexed directories reside on NTFS volumes. The TrackModified flag
    # will report the Last-Modified date to assist caches and proxies to properly
    # track directory changes, but it does not work on FAT volumes.
    IndexOptions FancyIndexing
    # 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.
    # If MultiViews are amongst the Options in effect, the server will
    # first look for name.html and include it if found. If name.html
    # doesn't exist, the server will then look for name.txt and include
    # it as plaintext if found.
    ReadmeName README
    HeaderName HEADER
    # 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
    </IfModule>
    # End of indexing directives.
    # Document types.
    <IfModule mod_mime.c>
    # AddEncoding allows you to have certain browsers (Mosaic/X 2.1+) 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
    # 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
    # it can understand.
    # 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 quite
    # some cases the two character 'Language' abbriviation 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. But there is 'work in progress' to fix this and get
    # the reference data for rfc1766 cleaned up.
    # Danish (da) - Dutch (nl) - English (en) - Estonian (ee)
    # French (fr) - German (de) - Greek-Modern (el)
    # Italian (it) - Korean (kr) - Norwegian (no)
    # Portugese (pt) - Luxembourgeois* (ltz)
    # Spanish (es) - Swedish (sv) - Catalan (ca) - Czech(cz)
    # Polish (pl) - Brazilian Portuguese (pt-br) - Japanese (ja)
    # Russian (ru)
    AddLanguage ar .ar
    AddLanguage da .dk .da
    AddLanguage nl .nl
    AddLanguage en .en
    AddLanguage et .ee
    AddLanguage fi .fi
    AddLanguage fr .fr
    AddLanguage de .de
    AddLanguage el .el
    AddLanguage es .es_ES .es
    AddLanguage he .he .iw
    AddLanguage hu .hu
    AddCharset ISO-8859-8 .iso8859-8
    AddLanguage it .it
    AddLanguage ja .ja
    AddCharset ISO-2022-JP .jis
    AddLanguage ko .ko
    AddLanguage kr .kr
    AddCharset ISO-2022-KR .iso-kr
    AddLanguage nn .nn
    AddLanguage no .no
    AddLanguage pl .po
    AddCharset ISO-8859-2 .iso-pl
    AddLanguage pt .pt
    AddLanguage pt-br .pt_BR .pt-br
    AddLanguage ltz .lu
    AddLanguage ca .ca
    AddLanguage sk .sk
    AddLanguage sv .sv
    AddLanguage th .th
    AddLanguage tr .tr
    AddLanguage cz .cz .cs
    AddLanguage ro .ro
    AddLanguage ru .ru
    AddLanguage zh-cn .zh_CN
    AddLanguage zh-tw .zh_TW
    AddCharset Big5 .Big5 .big5
    AddCharset WINDOWS-1251 .cp-1251
    AddCharset CP866 .cp866
    AddCharset ISO-8859-5 .iso-ru
    AddCharset KOI8-R .koi8-r
    AddCharset UCS-2 .ucs2
    AddCharset UCS-4 .ucs4
    AddCharset UTF-8 .utf8
    # 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.
    <IfModule mod_negotiation.c>
    LanguagePriority ar en da nl et fi fr de el it ja ko kr no pl pt pt-br ro ru ltz ca es sk sv th tr zh-cn zh-tw zh-cn
    </IfModule>
    # AddType allows you to tweak mime.types without actually editing it, or to
    # make certain files to be certain types.
    # For example, the PHP 3.x module (not part of the Apache distribution - see
    # http://www.php.net) will typically use:
    #AddType application/x-httpd-php3 .php3
    #AddType application/x-httpd-php3-source .phps
    # And for PHP 4.x, use:
    #AddType application/x-httpd-php .php
    #AddType application/x-httpd-php-source .phps
    AddType application/x-tar .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 command (see below)
    # If you want to use server side includes, or CGI outside
    # ScriptAliased directories, uncomment the following lines.
    # To use CGI scripts:
    #AddHandler cgi-script .cgi
    # To use server-parsed HTML files
    #AddType text/html .shtml
    #AddHandler server-parsed .shtml
    AddType text/xml xbl
    AddType text/x-component htc
    # Uncomment the following line to enable Apache's send-asis HTTP file
    # feature
    #AddHandler send-as-is asis
    # If you wish to use server-parsed imagemap files, use
    #AddHandler imap-file map
    # To enable type maps, you might want to use
    #AddHandler type-map var
    </IfModule>
    # End of document types.
    # 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
    # MetaDir: specifies the name of the directory in which Apache can find
    # meta information files. These files contain additional HTTP headers
    # to include when sending the document
    #MetaDir .web
    # MetaSuffix: specifies the file name suffix for the file containing the
    # meta information.
    #MetaSuffix .meta
    # Customizable error response (Apache style)
    # these come in three flavors
    # 1) plain text
    #ErrorDocument 500 "The server made a boo boo.
    # n.b. the single leading (") marks it as text, it does not get output
    # 2) local redirects
    #ErrorDocument 404 /missing.html
    # to redirect to local URL /missing.html
    #ErrorDocument 404 /cgi-bin/missing_handler.pl
    # N.B.: You can redirect to a script or a document using server-side-includes.
    # 3) external redirects
    #ErrorDocument 402 http://some.other_server.com/subscription_info.html
    # N.B.: Many of the environment variables associated with the original
    # request will not be available to such a script.
    # Customize behaviour based on the browser
    <IfModule mod_setenvif.c>
    # The following directives modify normal HTTP response behavior.
    # The first directive disables keepalive for Netscape 2.x and browsers that
    # spoof it. There are known problems with these browser implementations.
    # The second directive is for Microsoft Internet Explorer 4.0b2
    # which has a broken HTTP/1.1 implementation and does not properly
    # support keepalive when it is used on 301 or 302 (redirect) responses.
    BrowserMatch "Mozilla/2" nokeepalive
    BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0
    # The following directive disables HTTP/1.1 responses to browsers which
    # are in violation of the HTTP/1.0 spec by not being able to grok a
    # basic 1.1 response.
    BrowserMatch "RealPlayer 4\.0" force-response-1.0
    BrowserMatch "Java/1\.0" force-response-1.0
    BrowserMatch "JDK/1\.0" force-response-1.0
    </IfModule>
    # End of browser customization directives
    # Allow server status reports, with the URL of http://servername/server-status
    # Change the ".your_domain.com" to match your domain to enable.
    <Location /server-status>
    SetHandler server-status
    Order deny,allow
    Deny from all
    Allow from localhost localhost localhost
    </Location>
    # Allow remote server configuration reports, with the URL of
    # http://servername/server-info (requires that mod_info.c be loaded).
    # Change the ".your_domain.com" to match your domain to enable.
    #<Location /server-info>
    # SetHandler server-info
    # Order deny,allow
    # Deny from all
    # Allow from .your_domain.com
    #</Location>
    # There have been reports of people trying to abuse an old bug from pre-1.1
    # days. This bug involved a CGI script distributed as a part of Apache.
    # By uncommenting these lines you can redirect these attacks to a logging
    # script on phf.apache.org. Or, you can record them yourself, using the script
    # support/phf_abuse_log.cgi.
    #<Location /cgi-bin/phf*>
    # Deny from all
    # ErrorDocument 403 http://phf.apache.org/phf_abuse_log.cgi
    #</Location>
    # Proxy Server directives. Uncomment the following lines to
    # enable the proxy server:
    #<IfModule mod_proxy.c>
    # ProxyRequests On
    # <Directory proxy:*>
    # Order deny,allow
    # Deny from all
    # Allow from .your_domain.com
    # </Directory>
    # Enable/disable the handling of HTTP/1.1 "Via:" headers.
    # ("Full" adds the server version; "Block" removes all outgoing Via: headers)
    # Set to one of: Off | On | Full | Block
    # ProxyVia On
    # To enable the cache as well, edit and uncomment the following lines:
    # (no cacheing without CacheRoot)
    # CacheRoot "E:\oracle\product\10.1.0\Companion\Apache\Apache\proxy"
    # CacheSize 5
    # CacheGcInterval 4
    # CacheMaxExpire 24
    # CacheLastModifiedFactor 0.1
    # CacheDefaultExpire 1
    # NoCache a_domain.com another_domain.edu joes.garage_sale.com
    #</IfModule>
    # End of proxy directives.
    ### 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 <URL:http://www.apache.org/docs/vhosts/>
    # 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 *
    #NameVirtualHost 12.34.56.78:80
    #NameVirtualHost 12.34.56.78
    # 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.
    #<VirtualHost *>
    # ServerAdmin [email protected]
    # 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
    #</VirtualHost>
    #<VirtualHost default:*>
    #</VirtualHost>
    SetEnv PERL5LIB "E:\oracle\product\10.1.0\Companion\perl\5.6.1\lib:E:\oracle\product\10.1.0\Companion\perl\site\5.6.1\lib"
    <IfModule mod_perl.c>
    # Perl Directives
    # PerlWarn On
    # PerlFreshRestart On
    # PerlSetEnv PERL5OPT Tw
    # PerlSetEnv PERL5LIB "E:\oracle\product\10.1.0\Companion\perl\5.6.1\lib:E:\oracle\product\10.1.0\Companion\perl\site\5.6.1\lib"
    PerlModule Apache
    # PerlModule Apache::Status
    PerlModule Apache::Registry
    # PerlModule Apache::CGI
    # PerlModule Apache::DBI
    # PerlRequire
    <Location /perl>
    SetHandler perl-script
    PerlHandler Apache::Registry
    AddHandler perl-script .pl
    Options +ExecCGI
    PerlSendHeader On
    </Location>
    # <Location /perl-status>
    # SetHandler perl-script
    # PerlHandler Apache::Status
    # order deny,allow
    # deny from all
    # allow from localhost
    # </Location>
    </IfModule>
    #Protect WEB-INF directory
    <DirectoryMatch /WEB-INF/>
    Order deny,allow
    Deny from all
    </DirectoryMatch>
    # Setup of FastCGI module
    <IfModule mod_fastcgi.c>
    Alias /fastcgi/ "E:\oracle\product\10.1.0\Companion\Apache\fastcgi/"
    ScriptAlias /fcgi-bin/ "E:\oracle\product\10.1.0\Companion\Apache\Apache\fcgi-bin/"
    <Directory "E:\oracle\product\10.1.0\Companion\Apache\Apache\fcgi-bin">
         AllowOverride None
         Options None
         Order allow,deny
         Allow from all
         SetHandler fastcgi-script
         <IfModule mod_ossl.c>
         SSLOptions +StdEnvVars
         </IfModule>
    </Directory>
    </IfModule>
    # Include the configuration for Apache JServ 1.1
    #include "E:\oracle\product\10.1.0\Companion\Apache\Jserv\conf\jserv.conf"
    # Setup of oprocmgr module.
    # This directive identifies each remote apache instance that will be
    # sending requests to processes (e.g., JServs), managed by local Apache
    # instances. This directive is used by the local process manager to share
    # routing information with remote apache instances via non-SSL HTTP messages.
    # The directive is repeated for each remote apache instance that will be
    # sending requests. The ProcNode directive that refers to the local apache
    # instance will be ignored, but may be supplied to facilitate uniformity
    # in configuration across apache instances. Arguments to the ProcNode must
    # be sufficient to reach the remote instance of apache via non-SSL HTTP
    # messages. It is not considered an error if the remote apache instance is
    # unreachable, as no assumption is made about the starting order or
    # availability of apache instances.
    # Syntax: ProcNode <hostname> <port>
    # Example: ProcNode abc.com 7777
    <IfModule mod_oprocmgr.c>
    <Location /oprocmgr-service>
    SetHandler oprocmgr-service
    Order deny,allow
    Deny from all
    Allow from localhost localhost localhost
    </Location>
    <Location /oprocmgr-status>
    SetHandler oprocmgr-status
    Order deny,allow
    Deny from all
    Allow from localhost localhost localhost
    </Location>
    </IfModule>
    # Include the mod_oc4j configuration file
    include "E:\oracle\product\10.1.0\Companion\Apache\Apache\conf\mod_oc4j.conf"
    # Include the mod_dms configuration file
    include "E:\oracle\product\10.1.0\Companion\Apache\Apache\conf\dms.conf"
    # Loading rewrite_module here so it loads before mod_oc4j
    LoadModule rewrite_module      modules/ApacheModuleRewrite.dll
    # Include the SSL definitions and Virtual Host container
    include "E:\oracle\product\10.1.0\Companion\Apache\Apache\conf\ssl.conf"
    # Include the mod_osso configuration file
    #include "E:\oracle\product\10.1.0\Companion\Apache\Apache\conf\mod_osso.conf"
    # Include the Oracle configuration file for custom settings
    include "E:\oracle\product\10.1.0\Companion\Apache\Apache\conf\oracle_apache.conf"
    ------------------------------------------------------------------------------------------------------------------

    Firstly, there's no such thing as Apache 9.3, there's Apache 1 (and subversions) and Apache 2 (and subversions). Your error message -
    Oracle-HTTP-Server/1.3.28Shows you're using Apache 1.3.28
    Secondly, I'm confused by your comment -
    I do not have Apache 9.3 or higher but I think oracle should offer this in its companion CDOracle does offer the Apache server, if you're saying you didn't get it from Oracle then where did your Apache server come from?
    Thirdly, I notice from your config file -
    ErrorLog "|E:\oracle\product\10.1.0\Companion\Apache\Apache\bin\rotatelogs logs/error_log 43200"That you're piping the logs through rotatelogs, are you sure the logfiles haven't just been renamed?

  • Unable open Project details or a project from PWA Project server 2010 with Alias name

    Hi,
    I am unable to open the Projects from Project center with the Alias name with the server name i am able to open the projects, version is  project server 2010,
    My system is ABC.DC.IN  alias name i have given is DEF.AD.COM  
    With the system name i can able access PWA and all are working fine.
    As i have observed with alias name i can able to login to  pwa and all the server  setting approval center all are working fine but only in the project center i am not able to open the projects (http://DEF.AD.COM/pwa/ProjectDrillDown.aspx .xxxx)
    its is coming in the below of the ie. 
    But with Alias name these are the issues i am facing,
    1.when longing with alias name its asking two times for user name and password
    2.when i click on a project from project center its taking some time and asking for user name and password after i enter user name and password "PAGE cannot displayed" error i am getting.
    can any one Help me. 
    vijay kommireddi

    Hi Eric,
    Thanks for your Reply.
    As you said i have added in Manged Path as  (Testpwa/projects.aspx as <Wildcard inclusion>) But still problem is there it is asking user
    name password again if click on any project in project center and  and showing page cannot be displayed error. 
    This is url its is showing in the below of the IE ( http://def.ad.com/testpwa/projectdrilldown.aspx?ProjUid=e28c6d43-85b6-478d-9542-2961cc81a69e)
    I have observed one more thing if click on Project
    details then only this issue  is coming project schedule and project information
    is also opening with Alias name.
    My farm version is 14.0.7015.1000
    Vijay Kommireddi

  • [Solved] Problem with upgrading polkit or filesystem

    Ok so first off they do "upgrade" but the problem has me worried that something is wrong.
    A week or so ago after converting to systemd I tried getting rid of ConsoleKit and installing polkit 0.107 from the [testing] repo but it caused pacman to get stuck at "(1/1) upgrading polkit"  So I tried that a couple of times but I could never get pacman to finish and get past that.  I had to control + c to get out of that then type exit in the console (no text was visible that I typed however but typing exit + enter worked for closing it).  So I then opened a new terminal and downgraded polkit back to 0.105 and waited for polkit to get pushed from testing to see if it would fix my issue.  Fast forward to today and I go to upgrade my system.  Among the 83 updates or so was polkit and filesystem.  What do you know it gets stuck at "(15/83) upgrading polkit".  Fuck so I control + c, open new terminal and then do the upgrade again and it continues to update but this time it gets stuck doing the same thing for filesystem.  I control + c, open new terminal and continue the upgrade until it finishes, which it does this time, and I reboot.
    I tried re-installing polkit again and filesystem again but they continue to get stuck.  I cannot "complete" the upgrade even though they show the appropriate version when I check.
    Terminal
    [507] shauder@arch-desktop [~] $ sudo pacman -S polkit
    warning: polkit-0.107-4 is up to date -- reinstalling
    resolving dependencies...
    looking for inter-conflicts...
    Targets (1): polkit-0.107-4
    Total Installed Size: 1.77 MiB
    Net Upgrade Size: 0.00 MiB
    Proceed with installation? [Y/n]
    (1/1) checking package integrity [########################################################] 100%
    (1/1) loading package files [########################################################] 100%
    (1/1) checking for file conflicts [########################################################] 100%
    (1/1) checking available disk space [########################################################] 100%
    (1/1) upgrading polkit
    /var/log/pacman.log
    [2012-07-18 18:27] installed filesystem (2012.6-4)
    [2012-07-18 18:27] installed findutils (4.4.2-4)
    [2012-07-18 18:27] installed gawk (4.0.1-1)
    [2012-07-18 18:27] installed gettext (0.18.1.1-4)
    [2012-07-18 18:27] installed grep (2.13-2)
    [2012-07-18 18:27] installed sed (4.2.1-4)
    [2012-07-18 18:27] installed grub (0.97-21)
    [2012-07-18 18:27] installed gzip (1.5-1)
    [2012-07-18 18:27] installed gdbm (1.10-1)
    [2012-07-18 18:27] installed perl (5.16.0-2)
    [2012-07-18 18:27] installed openssl (1.0.1.c-1)
    [2012-07-18 18:27] installed libsasl (2.1.23-9)
    [2012-07-18 18:27] installed libldap (2.4.31-4)
    [2012-07-18 18:27] installed keyutils (1.5.5-3)
    [2012-07-18 18:27] installed krb5 (1.10.2-2)
    [2012-07-18 18:27] installed heirloom-mailx (12.5-3)
    [2012-07-18 18:27] installed inetutils (1.9.1-2)
    [2012-07-18 18:27] installed iproute2 (3.4.0-2)
    [2012-07-18 18:27] installed sysvinit (2.88-6)
    [2012-07-18 18:27] installed initscripts (2012.06.3-2)
    [2012-07-18 18:27] installed sysfsutils (2.1.0-8)
    [2012-07-18 18:27] >> Traceroute is now provided by core/traceroute
    [2012-07-18 18:27] installed iputils (20101006-4)
    [2012-07-18 18:27] installed jfsutils (1.1.15-3)
    [2012-07-18 18:27] installed less (444-3)
    [2012-07-18 18:27] installed licenses (2.9-1)
    [2012-07-18 18:27] installed linux-firmware (20120625-1)
    [2012-07-18 18:27] installed mkinitcpio-busybox (1.20.1-1)
    [2012-07-18 18:27] installed expat (2.1.0-1)
    [2012-07-18 18:27] installed libarchive (3.0.4-1)
    [2012-07-18 18:27] installed mkinitcpio (0.9.2-2)
    [2012-07-18 18:27] >>> Updating module dependencies. Please wait ...
    [2012-07-18 18:27] >>> Generating initial ramdisk, using mkinitcpio. Please wait...
    [2012-07-18 18:27] ==> Building image from preset: 'default'
    [2012-07-18 18:27] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux.img
    [2012-07-18 18:27] ==> Starting build: 3.4.5-1-ARCH
    [2012-07-18 18:27] -> Running build hook: [base]
    [2012-07-18 18:27] -> Running build hook: [udev]
    [2012-07-18 18:27] -> Running build hook: [autodetect]
    [2012-07-18 18:27] -> Running build hook: [pata]
    [2012-07-18 18:27] -> Running build hook: [scsi]
    [2012-07-18 18:27] -> Running build hook: [sata]
    [2012-07-18 18:27] -> Running build hook: [filesystems]
    [2012-07-18 18:27] -> Running build hook: [usbinput]
    [2012-07-18 18:27] -> Running build hook: [fsck]
    [2012-07-18 18:27] ==> Generating module dependencies
    [2012-07-18 18:27] ==> Creating gzip initcpio image: /boot/initramfs-linux.img
    [2012-07-18 18:27] bsdcpio: Failed to set default locale
    [2012-07-18 18:27] ==> Image generation successful
    [2012-07-18 18:27] ==> Building image from preset: 'fallback'
    [2012-07-18 18:27] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-fallback.img -S autodetect
    [2012-07-18 18:27] ==> Starting build: 3.4.5-1-ARCH
    [2012-07-18 18:27] -> Running build hook: [base]
    [2012-07-18 18:27] -> Running build hook: [udev]
    [2012-07-18 18:27] -> Running build hook: [pata]
    [2012-07-18 18:27] -> Running build hook: [scsi]
    [2012-07-18 18:27] -> Running build hook: [sata]
    [2012-07-18 18:27] -> Running build hook: [filesystems]
    [2012-07-18 18:27] -> Running build hook: [usbinput]
    [2012-07-18 18:27] -> Running build hook: [fsck]
    [2012-07-18 18:27] ==> Generating module dependencies
    [2012-07-18 18:27] ==> Creating gzip initcpio image: /boot/initramfs-linux-fallback.img
    [2012-07-18 18:27] bsdcpio: Failed to set default locale
    [2012-07-18 18:27] ==> Image generation successful
    [2012-07-18 18:27] installed linux (3.4.5-1)
    [2012-07-18 18:27] installed logrotate (3.8.1-2)
    [2012-07-18 18:27] installed lvm2 (2.02.96-3)
    [2012-07-18 18:27] installed texinfo (4.13a-7)
    [2012-07-18 18:27] installed groff (1.21-2)
    [2012-07-18 18:27] installed libpipeline (1.2.1-1)
    [2012-07-18 18:27] it's recommended to create an initial
    [2012-07-18 18:27] database running as root:
    [2012-07-18 18:27] "/usr/bin/mandb --quiet"
    [2012-07-18 18:27] installed man-db (2.6.2-1)
    [2012-07-18 18:27] installed man-pages (3.41-1)
    [2012-07-18 18:27] installed mdadm (3.2.5-2)
    [2012-07-18 18:27] installed nano (2.2.6-2)
    [2012-07-18 18:27] installed ca-certificates (20120623-1)
    [2012-07-18 18:27] installed libssh2 (1.4.2-1)
    [2012-07-18 18:27] installed curl (7.26.0-1)
    [2012-07-18 18:27] installed pth (2.0.7-4)
    [2012-07-18 18:27] installed libksba (1.2.0-2)
    [2012-07-18 18:27] installed libassuan (2.0.3-1)
    [2012-07-18 18:27] installed pinentry (0.8.1-4)
    [2012-07-18 18:27] installed dirmngr (1.1.0-4)
    [2012-07-18 18:27] installed gnupg (2.0.19-2)
    [2012-07-18 18:27] installed gpgme (1.3.1-4)
    [2012-07-18 18:27] installed pacman-mirrorlist (20120626-1)
    [2012-07-18 18:27] installed archlinux-keyring (20120622-1)
    [2012-07-18 18:27] >>> Run `pacman-key --init; pacman-key --populate archlinux`
    [2012-07-18 18:27] >>> to import the data required by pacman for package verification.
    [2012-07-18 18:27] >>> See: https://www.archlinux.org/news/having-pacman-verify-packages
    [2012-07-18 18:27] installed pacman (4.0.3-3)
    [2012-07-18 18:27] installed pciutils (3.1.10-1)
    [2012-07-18 18:27] installed pcmciautils (018-4)
    [2012-07-18 18:27] installed libnl (3.2.11-1)
    [2012-07-18 18:27] installed libusbx (1.0.12-2)
    [2012-07-18 18:27] installed libpcap (1.3.0-1)
    [2012-07-18 18:27] installed ppp (2.4.5-3)
    [2012-07-18 18:27] installed procps-ng (3.3.3-3)
    [2012-07-18 18:27] installed psmisc (22.19-1)
    [2012-07-18 18:27] installed reiserfsprogs (3.6.21-4)
    [2012-07-18 18:27] installed shadow (4.1.5.1-1)
    [2012-07-18 18:27] installed eventlog (0.2.12-3)
    [2012-07-18 18:27] installed syslog-ng (3.3.5-2)
    [2012-07-18 18:27] installed tar (1.26-2)
    [2012-07-18 18:27] installed usbutils (006-1)
    [2012-07-18 18:27] installed vi (1:050325-2)
    [2012-07-18 18:27] installed wget (1.13.4-1)
    [2012-07-18 18:27] installed which (2.20-5)
    [2012-07-18 18:27] installed dbus-core (1.6.2-2)
    [2012-07-18 18:27] installed wpa_supplicant (1.0-1)
    [2012-07-18 18:27] installed xfsprogs (3.1.8-2)
    [2012-07-18 18:27] installed m4 (1.4.16-2)
    [2012-07-18 18:27] installed autoconf (2.69-1)
    [2012-07-18 18:27] installed automake (1.12.2-1)
    [2012-07-18 18:27] installed binutils (2.22-9)
    [2012-07-18 18:27] installed bison (2.5.1-1)
    [2012-07-18 18:27] installed fakeroot (1.18.4-1)
    [2012-07-18 18:27] installed flex (2.5.35-5)
    [2012-07-18 18:27] installed mpfr (3.1.1-1)
    [2012-07-18 18:27] installed libmpc (0.9-2)
    [2012-07-18 18:27] installed isl (0.10-1)
    [2012-07-18 18:27] installed cloog (0.17.0-2)
    [2012-07-18 18:27] installed ppl (1.0-1)
    [2012-07-18 18:27] installed gcc (4.7.1-4)
    [2012-07-18 18:27] installed libltdl (2.4.2-6)
    [2012-07-18 18:27] installed libtool (2.4.2-6)
    [2012-07-18 18:27] installed make (3.82-4)
    [2012-07-18 18:27] installed patch (2.6.1-3)
    [2012-07-18 18:27] installed pkg-config (0.27-1)
    [2012-07-18 18:37] Running 'pacman -Syy'
    [2012-07-18 18:37] synchronizing package lists
    [2012-07-18 18:38] Running 'pacman -Syy'
    [2012-07-18 18:38] synchronizing package lists
    [2012-07-18 18:39] Running 'pacman -S sudo'
    [2012-07-18 18:43] Running 'pacman -S sudo'
    [2012-07-18 18:44] Running 'pacman -S sudo'
    [2012-07-18 18:44] installed sudo (1.8.5.p2-1)
    [2012-07-18 18:45] Running 'pacman -S alsa-utils'
    [2012-07-18 18:46] installed alsa-lib (1.0.25-1)
    [2012-07-18 18:46] installed dialog (1.1_20120706-1)
    [2012-07-18 18:46] installed libogg (1.3.0-1)
    [2012-07-18 18:46] installed flac (1.2.1-3)
    [2012-07-18 18:46] installed libvorbis (1.3.3-1)
    [2012-07-18 18:46] installed libsndfile (1.0.25-2)
    [2012-07-18 18:46] installed libsamplerate (0.1.8-1)
    [2012-07-18 18:46] installed alsa-utils (1.0.25-3)
    [2012-07-18 18:46] Running 'pacman -S alsa-plugins'
    [2012-07-18 18:46] installed alsa-plugins (1.0.25-2)
    [2012-07-18 18:48] Running 'pacman -S xorg-server xorg-xinit xorg-server-utils'
    [2012-07-18 18:48] installed xproto (7.0.23-1)
    [2012-07-18 18:48] installed libxdmcp (1.1.1-1)
    [2012-07-18 18:48] installed freetype2 (2.4.10-1)
    [2012-07-18 18:48] installed libfontenc (1.1.1-1)
    [2012-07-18 18:48] installed fontsproto (2.1.2-1)
    [2012-07-18 18:48] installed libxfont (1.4.5-1)
    [2012-07-18 18:48] installed libpciaccess (0.13.1-1)
    [2012-07-18 18:48] installed libdrm (2.4.37-1)
    [2012-07-18 18:48] installed pixman (0.26.2-1)
    [2012-07-18 18:48] installed libxau (1.0.7-1)
    [2012-07-18 18:48] installed xcb-proto (1.7.1-1)
    [2012-07-18 18:48] installed libxcb (1.8.1-1)
    [2012-07-18 18:48] installed kbproto (1.0.6-1)
    [2012-07-18 18:48] installed libx11 (1.5.0-1)
    [2012-07-18 18:48] installed libxkbfile (1.0.8-1)
    [2012-07-18 18:48] installed xorg-xkbcomp (1.2.4-1)
    [2012-07-18 18:48] installed xkeyboard-config (2.6-1)
    [2012-07-18 18:48] installed xorg-setxkbmap (1.3.0-1)
    [2012-07-18 18:48] installed xorg-fonts-encodings (1.0.4-3)
    [2012-07-18 18:48] installed xorg-fonts-alias (1.0.2-2)
    [2012-07-18 18:48] installed xorg-bdftopcf (1.0.3-2)
    [2012-07-18 18:48] installed xorg-mkfontscale (1.1.0-1)
    [2012-07-18 18:48] installed xorg-mkfontdir (1.0.7-1)
    [2012-07-18 18:48] installed xorg-font-util (1.3.0-1)
    [2012-07-18 18:48] installed xorg-font-utils (7.6-3)
    [2012-07-18 18:48] updating font cache... done.
    [2012-07-18 18:48] installed fontconfig (2.8.0-2)
    [2012-07-18 18:49] Updating font cache... done.
    [2012-07-18 18:49] installed xorg-fonts-misc (1.0.1-2)
    [2012-07-18 18:49] installed xorg-server-common (1.12.3-1)
    [2012-07-18 18:49] installed xf86-input-evdev (2.7.0-2)
    [2012-07-18 18:49] installed xorg-server (1.12.3-1)
    [2012-07-18 18:49] installed xextproto (7.2.1-1)
    [2012-07-18 18:49] installed libxext (1.3.1-1)
    [2012-07-18 18:49] installed libice (1.0.8-1)
    [2012-07-18 18:49] installed libsm (1.2.1-1)
    [2012-07-18 18:49] installed libxt (1.1.3-1)
    [2012-07-18 18:49] installed libxmu (1.1.1-1)
    [2012-07-18 18:49] installed xorg-xauth (1.0.7-1)
    [2012-07-18 18:49] installed xorg-xinit (1.3.2-1)
    [2012-07-18 18:49] installed xorg-iceauth (1.0.5-1)
    [2012-07-18 18:49] installed xorg-sessreg (1.0.7-1)
    [2012-07-18 18:49] installed xorg-xcmsdb (1.0.4-1)
    [2012-07-18 18:49] installed renderproto (0.11.1-2)
    [2012-07-18 18:49] installed libxrender (0.9.7-1)
    [2012-07-18 18:49] installed randrproto (1.3.2-2)
    [2012-07-18 18:49] installed libxrandr (1.3.2-2)
    [2012-07-18 18:49] installed xorg-xbacklight (1.1.2-3)
    [2012-07-18 18:49] installed xf86vidmodeproto (2.3.1-2)
    [2012-07-18 18:49] installed libxxf86vm (1.1.2-1)
    [2012-07-18 18:49] installed xorg-xgamma (1.0.5-1)
    [2012-07-18 18:49] installed xorg-xhost (1.0.5-1)
    [2012-07-18 18:49] installed xorg-xrandr (1.3.5-1)
    [2012-07-18 18:49] installed inputproto (2.2-1)
    [2012-07-18 18:49] installed libxi (1.6.1-1)
    [2012-07-18 18:49] installed xineramaproto (1.2.1-2)
    [2012-07-18 18:49] installed libxinerama (1.1.2-1)
    [2012-07-18 18:49] installed xorg-xinput (1.6.0-1)
    [2012-07-18 18:49] installed xorg-xmodmap (1.0.7-1)
    [2012-07-18 18:49] installed mcpp (2.7.2-4)
    [2012-07-18 18:49] installed xorg-xrdb (1.0.9-2)
    [2012-07-18 18:49] installed xorg-xrefresh (1.0.4-3)
    [2012-07-18 18:49] installed xorg-xset (1.2.2-1)
    [2012-07-18 18:49] installed fixesproto (5.0-2)
    [2012-07-18 18:49] installed libxfixes (5.0-2)
    [2012-07-18 18:49] installed libxcursor (1.1.13-1)
    [2012-07-18 18:49] installed xorg-xsetroot (1.1.0-3)
    [2012-07-18 18:49] installed xorg-server-utils (7.6-3)
    [2012-07-18 18:50] Running 'pacman -S nvidia nvidia-utils'
    [2012-07-18 18:50] Running 'pacman -S nvidia nvidia-utils lib32-nvidia-utils'
    [2012-07-18 18:51] installed videoproto (2.3.1-2)
    [2012-07-18 18:51] installed libxv (1.0.7-1)
    [2012-07-18 18:51] installed libxvmc (1.0.7-1)
    [2012-07-18 18:51] installed nvidia-utils (302.17-1)
    [2012-07-18 18:51] In order to use nvidia module, reboot the system.
    [2012-07-18 18:51] installed nvidia (302.17-3)
    [2012-07-18 18:51] installed lib32-glibc (2.16.0-2)
    [2012-07-18 18:51] installed lib32-libxdmcp (1.1.1-1)
    [2012-07-18 18:51] installed lib32-libxau (1.0.7-1)
    [2012-07-18 18:51] installed lib32-libxcb (1.8.1-2)
    [2012-07-18 18:51] installed lib32-libx11 (1.5.0-1)
    [2012-07-18 18:51] installed lib32-libxext (1.3.1-1)
    [2012-07-18 18:51] installed lib32-libxv (1.0.7-1)
    [2012-07-18 18:51] installed lib32-libxvmc (1.0.7-1)
    [2012-07-18 18:51] installed lib32-zlib (1.2.7-1)
    [2012-07-18 18:51] installed lib32-gcc-libs (4.7.1-4.1)
    [2012-07-18 18:51] installed lib32-nvidia-utils (302.17-1)
    [2012-07-18 18:55] Running 'pacman -S xorg-twm xorg-xclock xterm'
    [2012-07-18 18:55] installed xorg-twm (1.0.7-1)
    [2012-07-18 18:55] installed libxpm (3.5.10-1)
    [2012-07-18 18:55] installed libxaw (1.0.11-1)
    [2012-07-18 18:55] installed libxft (2.3.1-1)
    [2012-07-18 18:55] installed xorg-xclock (1.0.6-1)
    [2012-07-18 18:55] installed xorg-luit (1.1.1-1)
    [2012-07-18 18:55] installed xbitmaps (1.1.1-2)
    [2012-07-18 18:55] installed xterm (281-1)
    [2012-07-18 18:55] Running 'pacman -S dbus'
    [2012-07-18 18:55] installed dbus (1.6.2-1)
    [2012-07-18 18:56] Running 'pacman -S ttf-dejavu'
    [2012-07-18 18:56] installed ttf-dejavu (2.33-3)
    [2012-07-18 18:57] Running 'pacman -S awesome'
    [2012-07-18 18:57] installed libpng (1.5.11-1)
    [2012-07-18 18:57] installed cairo (1.12.2-2)
    [2012-07-18 18:57] installed libjpeg-turbo (1.2.1-1)
    [2012-07-18 18:57] installed libtiff (4.0.2-1)
    [2012-07-18 18:57] installed giflib (4.1.6-5)
    [2012-07-18 18:57] installed libid3tag (0.15.1b-7)
    [2012-07-18 18:57] installed imlib2 (1.4.5-2)
    [2012-07-18 18:57] installed libev (4.11-1)
    [2012-07-18 18:57] installed libxdg-basedir (1.2.0-1)
    [2012-07-18 18:57] installed lua (5.1.5-2)
    [2012-07-18 18:57] installed libdatrie (0.2.5-1)
    [2012-07-18 18:57] installed libthai (0.1.17-1)
    [2012-07-18 18:57] installed pango (1.30.1-1)
    [2012-07-18 18:57] installed xcb-util (0.3.9-1)
    [2012-07-18 18:57] installed startup-notification (0.12-3)
    [2012-07-18 18:57] installed xcb-util-image (0.3.9-1)
    [2012-07-18 18:57] installed xcb-util-keysyms (0.3.9-1)
    [2012-07-18 18:57] installed xcb-util-wm (0.3.9-1)
    [2012-07-18 18:57] installed xorg-xmessage (1.0.3-2)
    [2012-07-18 18:57] installed awesome (3.4.13-1)
    [2012-07-18 18:58] Running 'pacman -S rlwrap feh'
    [2012-07-18 18:58] installed rlwrap (0.37-2)
    [2012-07-18 18:58] installed giblib (1.2.4-5)
    [2012-07-18 18:58] installed libexif (0.6.20-2)
    [2012-07-18 18:58] installed feh (2.5-1)
    [2012-07-18 18:59] Running 'pacman -S packer'
    [2012-07-18 18:59] Running 'pacman -S lightdm'
    [2012-07-18 19:01] Running 'pacman -S fakeroot'
    [2012-07-18 19:01] upgraded fakeroot (1.18.4-1 -> 1.18.4-1)
    [2012-07-18 19:08] Running 'pacman -S git'
    [2012-07-18 19:08] installed perl-error (0.17018-1)
    [2012-07-18 19:08] installed git (1.7.11.2-1)
    [2012-07-18 19:08] Running 'pacman -S jshon'
    [2012-07-18 19:08] installed jansson (2.3-1)
    [2012-07-18 19:08] installed jshon (20111222-1)
    [2012-07-18 19:08] Running 'pacman -U packer-20120718-1-any.pkg.tar.xz'
    [2012-07-18 19:08] installed packer (20120718-1)
    [2012-07-18 19:10] Running 'pacman --noconfirm --asdeps -S -- accountsservice dbus-glib gobject-introspection intltool itstool libxklavier'
    [2012-07-18 19:10] installed polkit (0.105-1)
    [2012-07-18 19:10] installed accountsservice (0.6.22-1)
    [2012-07-18 19:10] installed dbus-glib (0.100-1)
    [2012-07-18 19:10] installed sqlite (3.7.13-1)
    [2012-07-18 19:10] installed python2 (2.7.3-2)
    [2012-07-18 19:10] installed gobject-introspection (1.32.1-2)
    [2012-07-18 19:10] installed perl-xml-parser (2.41-3)
    [2012-07-18 19:10] installed intltool (0.50.2-1)
    [2012-07-18 19:10] installed libxml2 (2.7.8-2)
    [2012-07-18 19:10] installed itstool (1.1.2-1)
    [2012-07-18 19:10] installed iso-codes (3.34-1)
    [2012-07-18 19:10] installed libxklavier (5.2.1-2)
    [2012-07-18 19:13] Running 'pacman -U lightdm-1.3.1-4-x86_64.pkg.tar.xz'
    [2012-07-18 19:14] You need to install lightdm-gtk-greeter to run the default and most stable greeter
    [2012-07-18 19:14] installed lightdm (1.3.1-4)
    [2012-07-18 19:14] Running 'pacman --noconfirm --asdeps -S -- archlinux-wallpaper bzr gnome-common gnome-doc-utils gtk-doc gtk-engines libwebkit vala'
    [2012-07-18 19:15] ==> Wallpapers have been installed to /usr/share/archlinux/wallpaper
    [2012-07-18 19:15] installed archlinux-wallpaper (1.4-1)
    [2012-07-18 19:15] installed bzr (2.5.1-1)
    [2012-07-18 19:15] installed gnome-common (3.4.0.1-2)
    [2012-07-18 19:15] installed libxslt (1.1.26-3)
    [2012-07-18 19:15] installed docbook-xml (4.5-5)
    [2012-07-18 19:15] installed rarian (0.8.1-2)
    [2012-07-18 19:15] installed gnome-doc-utils (0.20.10-1)
    [2012-07-18 19:15] installed docbook-xsl (1.77.1-2)
    [2012-07-18 19:15] installed gtk-doc (1.18-1)
    [2012-07-18 19:15] installed atk (2.4.0-1)
    [2012-07-18 19:15] installed compositeproto (0.4.2-2)
    [2012-07-18 19:15] installed libxcomposite (0.4.3-2)
    [2012-07-18 19:15] installed damageproto (1.2.1-2)
    [2012-07-18 19:15] installed libxdamage (1.1.3-2)
    [2012-07-18 19:15] installed shared-mime-info (1.0-1)
    [2012-07-18 19:15] installed libtasn1 (2.13-1)
    [2012-07-18 19:15] installed nettle (2.5-1)
    [2012-07-18 19:15] installed p11-kit (0.12-1)
    [2012-07-18 19:15] installed gnutls (3.0.21-1)
    [2012-07-18 19:15] installed libdaemon (0.14-2)
    [2012-07-18 19:15] ==> The following daemons may be added to DAEMONS in /etc/rc.conf:
    [2012-07-18 19:15] ==> avahi-daemon: the mdns responder, you probably want this.
    [2012-07-18 19:15] ==> dbus needs to be running when you start it.
    [2012-07-18 19:15] ==> avahi-dnsconfd: daemon used for peer-to-peer automatic dns
    [2012-07-18 19:15] ==> configuration on dhcp-less networks.
    [2012-07-18 19:15]
    [2012-07-18 19:15] ==> To use some of the client applications you will have to install python.
    [2012-07-18 19:15] ==> In addition, pygtk is required for the graphical ones and
    [2012-07-18 19:15] ==> twisted for avahi-bookmarks.
    [2012-07-18 19:15] installed avahi (0.6.31-3)
    [2012-07-18 19:15] installed libcups (1.5.3-5)
    [2012-07-18 19:15] installed gdk-pixbuf2 (2.26.1-1)
    [2012-07-18 19:15] installed gtk-update-icon-cache (2.24.10-3)
    [2012-07-18 19:15] installed gtk2 (2.24.10-3)
    [2012-07-18 19:15] installed gtk-engines (2.21.0-1)
    [2012-07-18 19:15] installed icu (49.1.2-1)
    [2012-07-18 19:15] installed gstreamer0.10 (0.10.36-1)
    [2012-07-18 19:15] installed orc (0.4.16-1)
    [2012-07-18 19:15] installed gstreamer0.10-base (0.10.36-1)
    [2012-07-18 19:15] installed libproxy (0.4.7-2)
    [2012-07-18 19:15] installed gsettings-desktop-schemas (3.4.2-1)
    [2012-07-18 19:15] installed glib-networking (2.32.3-1)
    [2012-07-18 19:15] installed libsoup (2.38.1-1)
    [2012-07-18 19:15] ==> aspell comes with no default dictionary
    [2012-07-18 19:15] installed aspell (0.60.6.1-1)
    [2012-07-18 19:15] installed hunspell (1.3.2-1)
    [2012-07-18 19:15] installed hspell (1.1-2)
    [2012-07-18 19:15] installed enchant (1.6.0-4)
    [2012-07-18 19:15] installed geoclue (0.12.0-5)
    [2012-07-18 19:15] installed libwebkit (1.8.1-1)
    [2012-07-18 19:15] installed vala (0.16.1-1)
    [2012-07-18 19:16] Running 'pacman -U lightdm-webkit-greeter-bzr-13-3-x86_64.pkg.tar.xz'
    [2012-07-18 19:16] Running 'pacman -U lightdm-webkit-greeter-0.1.2-3-x86_64.pkg.tar.xz'
    [2012-07-18 19:16] installed lightdm-webkit-greeter (0.1.2-3)
    [2012-07-18 19:47] Running 'pacman -R lightdm'
    [2012-07-18 19:48] Running 'pacman -R lightdm-webkit-greeter lightdm accountsservice dbus-glib libxklavier'
    [2012-07-18 19:48] Running 'pacman -R lightdm-webkit-greeter lightdm accountsservice enchant geoclue dbus-glib libxklavier'
    [2012-07-18 19:48] Running 'pacman -R lightdm-webkit-greeter lightdm accountsservice libwebkite enchant geoclue dbus-glib libxklavier'
    [2012-07-18 19:48] Running 'pacman -R lightdm-webkit-greeter lightdm accountsservice libwebkit enchant geoclue dbus-glib libxklavier'
    [2012-07-18 19:49] removed lightdm-webkit-greeter (0.1.2-3)
    [2012-07-18 19:49] removed libwebkit (1.8.1-1)
    [2012-07-18 19:49] removed geoclue (0.12.0-5)
    [2012-07-18 19:49] removed enchant (1.6.0-4)
    [2012-07-18 19:49] userdel: user lightdm is currently used by process 657
    [2012-07-18 19:49] groupdel: cannot remove the primary group of user 'lightdm'
    [2012-07-18 19:49] removed lightdm (1.3.1-4)
    [2012-07-18 19:49] removed libxklavier (5.2.1-2)
    [2012-07-18 19:49] removed dbus-glib (0.100-1)
    [2012-07-18 19:49] removed accountsservice (0.6.22-1)
    [2012-07-18 19:50] Running 'pacman -S chromium'
    [2012-07-18 19:50] installed dbus-glib (0.100-1)
    [2012-07-18 19:50] installed nspr (4.9.1-1)
    [2012-07-18 19:50] installed nss (3.13.5-1)
    [2012-07-18 19:50] installed xdg-utils (1.1.0-2.20120520)
    [2012-07-18 19:50] installed libevent (2.0.19-1)
    [2012-07-18 19:50] installed scrnsaverproto (1.2.2-1)
    [2012-07-18 19:50] installed libxss (1.2.2-1)
    [2012-07-18 19:50] installed desktop-file-utils (0.20-1)
    [2012-07-18 19:50] installed hicolor-icon-theme (0.12-2)
    [2012-07-18 19:50] installed chromium (20.0.1132.57-1)
    [2012-07-18 19:50] Running 'pacman -Sy abs'
    [2012-07-18 19:50] synchronizing package lists
    [2012-07-18 19:51] installed rsync (3.0.9-3)
    [2012-07-18 19:51] installed abs (2.4.3-2)
    [2012-07-18 19:52] Running 'pacman -S openjdk6 perl git gnupg flex bison gperf zip unzip wxgtk squashfs-tools ncurses libpng zlib libusb libusb-compat readline'
    [2012-07-18 19:53] installed ca-certificates-java (20120608-1)
    [2012-07-18 19:53] installed recordproto (1.14.2-1)
    [2012-07-18 19:53] installed libxtst (1.2.1-1)
    [2012-07-18 19:53] upgraded zlib (1.2.7-1 -> 1.2.7-1)
    [2012-07-18 19:53] upgraded libpng (1.5.11-1 -> 1.5.11-1)
    [2012-07-18 19:53] Warning: there was a problem reading the certificate file /etc/ssl/certs/NetLock_Arany_=Class_Gold=_F?tan?s?tv?ny.pem. Message:
    [2012-07-18 19:53] /etc/ssl/certs/NetLock_Arany_=Class_Gold=_F?tan?s?tv?ny.pem (No such file or directory)
    [2012-07-18 19:53] Warning: there was a problem reading the certificate file /etc/ssl/certs/AC_Ra?z_Certic?mara_S.A..pem. Message:
    [2012-07-18 19:53] /etc/ssl/certs/AC_Ra?z_Certic?mara_S.A..pem (No such file or directory)
    [2012-07-18 19:53] Warning: there was a problem reading the certificate file /etc/ssl/certs/Certinomis_-_Autorit?_Racine.pem. Message:
    [2012-07-18 19:53] /etc/ssl/certs/Certinomis_-_Autorit?_Racine.pem (No such file or directory)
    [2012-07-18 19:53] Warning: there was a problem reading the certificate file /etc/ssl/certs/T?B?TAK_UEKAE_K?k_Sertifika_Hizmet_Sa?lay?c?s?_-_S?r?m_3.pem. Message:
    [2012-07-18 19:53] /etc/ssl/certs/T?B?TAK_UEKAE_K?k_Sertifika_Hizmet_Sa?lay?c?s?_-_S?r?m_3.pem (No such file or directory)
    [2012-07-18 19:53] Warning: there was a problem reading the certificate file /etc/ssl/certs/EBG_Elektronik_Sertifika_Hizmet_Sa?lay?c?s?.pem. Message:
    [2012-07-18 19:53] /etc/ssl/certs/EBG_Elektronik_Sertifika_Hizmet_Sa?lay?c?s?.pem (No such file or directory)
    [2012-07-18 19:53] done.
    [2012-07-18 19:53] when you use a non-reparenting window manager
    [2012-07-18 19:53] set _JAVA_AWT_WM_NONREPARENTING=1 in
    [2012-07-18 19:53] /etc/profile.d/openjdk6.sh
    [2012-07-18 19:53] installed openjdk6 (6.b24_1.11.3-1)
    [2012-07-18 19:53] upgraded perl (5.16.0-2 -> 5.16.0-2)
    [2012-07-18 19:53] upgraded git (1.7.11.2-1 -> 1.7.11.2-1)
    [2012-07-18 19:53] upgraded ncurses (5.9-3 -> 5.9-3)
    [2012-07-18 19:53] upgraded readline (6.2.003-2 -> 6.2.003-2)
    [2012-07-18 19:53] upgraded gnupg (2.0.19-2 -> 2.0.19-2)
    [2012-07-18 19:53] upgraded flex (2.5.35-5 -> 2.5.35-5)
    [2012-07-18 19:53] upgraded bison (2.5.1-1 -> 2.5.1-1)
    [2012-07-18 19:53] installed gperf (3.0.4-4)
    [2012-07-18 19:53] installed zip (3.0-3)
    [2012-07-18 19:53] installed unzip (6.0-6)
    [2012-07-18 19:53] installed wxgtk (2.8.12.1-3)
    [2012-07-18 19:53] installed lzo2 (2.06-1)
    [2012-07-18 19:53] installed squashfs-tools (4.2-2)
    [2012-07-18 19:53] upgraded libusbx (1.0.12-2 -> 1.0.12-2)
    [2012-07-18 19:53] installed libusb-compat (0.1.4-2)
    [2012-07-18 19:53] Running 'pacman -S -- esdl schedtool'
    [2012-07-18 19:54] installed erlang (R15B01-1)
    [2012-07-18 19:54] installed sdl (1.2.15-1)
    [2012-07-18 19:54] installed dri2proto (2.6-1)
    [2012-07-18 19:54] installed glproto (1.4.15-1)
    [2012-07-18 19:54] installed mesa (8.0.4-1)
    [2012-07-18 19:54] installed esdl (2:1.2-1)
    [2012-07-18 19:54] installed schedtool (1.3.0-2)
    [2012-07-18 19:55] Running 'pacman -U pngcrush-1.7.31-1-x86_64.pkg.tar.xz'
    [2012-07-18 19:55] installed pngcrush (1.7.31-1)
    [2012-07-18 19:55] Running 'pacman -U repo-1.17-1-x86_64.pkg.tar.xz'
    [2012-07-18 19:55] installed repo (1.17-1)
    [2012-07-18 19:59] Running 'pacman -S terminator'
    [2012-07-18 19:59] installed vte-common (0.32.2-1)
    [2012-07-18 19:59] installed vte (0.28.2-3)
    [2012-07-18 19:59] installed libglade (2.6.4-3)
    [2012-07-18 19:59] installed python2-cairo (1.10.0-1)
    [2012-07-18 19:59] installed pygobject2-devel (2.28.6-6)
    [2012-07-18 19:59] installed python2-gobject2 (2.28.6-6)
    [2012-07-18 19:59] installed pygtk (2.24.0-3)
    [2012-07-18 19:59] installed terminator (0.96-1)
    [2012-07-18 20:00] Running 'pacman -Sy gcc-multilib gcc-libs-multilib binutils-multilib libtool-multilib lib32-libusb lib32-libusb-compat lib32-readline lib32-glibc lib32-zlib'
    [2012-07-18 20:00] synchronizing package lists
    [2012-07-18 20:00] Running 'pacman -Sy gcc-multilib gcc-libs-multilib binutils-multilib libtool-multilib lib32-libusb-compat lib32-readline lib32-glibc lib32-zlib'
    [2012-07-18 20:00] synchronizing package lists
    [2012-07-18 20:00] Running 'pacman -Sy gcc-multilib gcc-libs-multilib binutils-multilib libtool-multilib lib32-readline lib32-glibc lib32-zlib'
    [2012-07-18 20:00] synchronizing package lists
    [2012-07-18 20:01] removed gcc-libs (4.7.1-4)
    [2012-07-18 20:01] removed binutils (2.22-9)
    [2012-07-18 20:01] removed gcc (4.7.1-4)
    [2012-07-18 20:01] removed libtool (2.4.2-6)
    [2012-07-18 20:01] installed gcc-libs-multilib (4.7.1-4.1)
    [2012-07-18 20:01] installed binutils-multilib (2.22-8)
    [2012-07-18 20:01] installed gcc-multilib (4.7.1-4.1)
    [2012-07-18 20:01] upgraded lib32-glibc (2.16.0-2 -> 2.16.0-2)
    [2012-07-18 20:01] installed lib32-libltdl (2.4.2-6)
    [2012-07-18 20:01] installed libtool-multilib (2.4.2-6)
    [2012-07-18 20:01] installed lib32-ncurses (5.9-1)
    [2012-07-18 20:01] installed lib32-readline (6.2.003-1)
    [2012-07-18 20:01] upgraded lib32-zlib (1.2.7-1 -> 1.2.7-1)
    [2012-07-18 20:07] Running 'pacman -S ssh'
    [2012-07-18 20:10] Running 'pacman -S ssh-keygen'
    [2012-07-18 20:10] Running 'pacman -S openssh'
    [2012-07-18 20:10] installed libedit (20120311_3.0-1)
    [2012-07-18 20:10] installed dnssec-anchors (20120422-1)
    [2012-07-18 20:10] installed ldns (1.6.13-1)
    [2012-07-18 20:10] installed openssh (6.0p1-3)
    [2012-07-18 20:11] Running 'pacman -S pbcopy'
    [2012-07-18 20:11] Running 'pacman -S copy'
    [2012-07-18 20:13] Running 'pacman -S gedit'
    [2012-07-18 20:13] installed lcms2 (2.3-2)
    [2012-07-18 20:13] installed libgusb (0.1.3-1)
    [2012-07-18 20:13] installed gd (2.0.36RC1-5)
    [2012-07-18 20:13] installed libgphoto2 (2.4.14-1)
    [2012-07-18 20:13] installed libieee1284 (0.2.11-4)
    [2012-07-18 20:13] installed v4l-utils (0.8.8-1)
    [2012-07-18 20:13] installed net-snmp (5.7.1-3)
    [2012-07-18 20:13] NOTE
    [2012-07-18 20:13] ----
    [2012-07-18 20:13] Add your user to group 'scanner' to use scanner devices.
    [2012-07-18 20:13] installed sane (1.0.22-9)
    [2012-07-18 20:13] installed shared-color-profiles (0.1.5-1)
    [2012-07-18 20:13] installed colord (0.1.21-2)
    [2012-07-18 20:13] installed gtk3 (3.4.3-1)
    [2012-07-18 20:13] installed gtksourceview3 (3.4.2-1)
    [2012-07-18 20:13] installed libpeas (1.4.0-2)
    [2012-07-18 20:13] installed enchant (1.6.0-4)
    [2012-07-18 20:13] installed pygobject-devel (3.2.2-1)
    [2012-07-18 20:13] installed python2-gobject (3.2.2-1)
    [2012-07-18 20:13] installed dconf (0.12.1-2)
    [2012-07-18 20:13] installed gedit (3.4.2-1)
    [2012-07-18 20:15] Running 'pacman -S python'
    [2012-07-18 20:16] installed python (3.2.3-3)
    [2012-07-18 20:26] Running 'pacman -S xclip'
    [2012-07-18 20:26] installed xclip (0.12-3)
    [2012-07-18 20:37] Running 'pacman --noconfirm --asdeps -S -- lib32-alsa-lib lib32-libstdc++5 lib32-openal lib32-sdl swt'
    [2012-07-18 20:37] installed lib32-alsa-lib (1.0.25-1)
    [2012-07-18 20:37] installed lib32-libstdc++5 (3.3.6-6)
    [2012-07-18 20:37] installed openal (1.14-1)
    [2012-07-18 20:37] installed lib32-openal (1.14-1)
    [2012-07-18 20:37] installed lib32-libxrender (0.9.7-1)
    [2012-07-18 20:37] installed lib32-sdl (1.2.15-2)
    [2012-07-18 20:37] installed swt (3.7.2-1)
    [2012-07-18 20:45] Running 'pacman --asdeps -U android-sdk-r20-2-x86_64.pkg.tar.xz'
    [2012-07-18 20:50] You need to source /etc/profile or relogin to add the Android SDK tools to your path.
    [2012-07-18 20:50] The android group has been removed, install android packages as root.
    [2012-07-18 20:50] installed android-sdk (r20-2)
    [2012-07-18 20:51] Running 'pacman -U android-sdk-r20-2-x86_64.pkg.tar.xz'
    [2012-07-18 20:54] You need to source /etc/profile or relogin to add the Android SDK tools to your path.
    [2012-07-18 20:54] The android group has been removed, install android packages as root.
    [2012-07-18 20:54] upgraded android-sdk (r20-2 -> r20-2)
    [2012-07-18 20:59] Running 'pacman -U android-sdk-platform-tools-r12-1-any.pkg.tar.xz'
    [2012-07-18 20:59] installed android-sdk-platform-tools (r12-1)
    [2012-07-18 21:10] Running 'pacman -S perl-switch'
    [2012-07-18 21:10] installed perl-switch (2.16-1)
    [2012-07-21 03:29] Running 'pacman -S flashplugin'
    [2012-07-21 03:29] relogin or source /etc/profile.d/mozilla-common.sh
    [2012-07-21 03:29] installed mozilla-common (1.4-3)
    [2012-07-21 03:29] >>
    [2012-07-21 03:29] >> If you have an NVIDIA card that supports libvdpau or Broadcom Crystal HD chips,
    [2012-07-21 03:29] >> uncomment EnableLinuxHWVideoDecode=1 from /etc/adobe/mms.cfg.
    [2012-07-21 03:29] >> If you run into problems, please contact nVidia or Broadcom along with your system config info / driver version.
    [2012-07-21 03:29] >>
    [2012-07-21 03:29] installed flashplugin (11.2.202.236-1)
    [2012-07-21 03:32] Running 'pacman -S libvdpau'
    [2012-07-21 03:32] installed libvdpau (0.4.1-2)
    [2012-07-21 14:53] Running 'pacman -S gedit-common'
    [2012-07-21 14:55] Running 'pacman -S gtk-theme-switch2'
    [2012-07-21 14:56] installed gtk-theme-switch2 (2.1.0-2)
    [2012-07-21 15:00] Running 'pacman -S gtk-icons'
    [2012-07-21 15:04] Running 'pacman -R gtk-theme-switch2 gedit dconf desktop-file-utils enchant gsettings-desktop-schemas gtksourceview3 iso-codes libpeas libsm python2-gobject'
    [2012-07-21 15:06] Running 'pacman -R gtk-theme-switch2 gedit dconf enchant gtksourceview3 iso-codes libpeas python2-gobject'
    [2012-07-21 15:06] removed gedit (3.4.2-1)
    [2012-07-21 15:06] removed python2-gobject (3.2.2-1)
    [2012-07-21 15:06] removed libpeas (1.4.0-2)
    [2012-07-21 15:06] removed iso-codes (3.34-1)
    [2012-07-21 15:06] removed gtksourceview3 (3.4.2-1)
    [2012-07-21 15:06] removed enchant (1.6.0-4)
    [2012-07-21 15:06] removed dconf (0.12.1-2)
    [2012-07-21 15:06] removed gtk-theme-switch2 (2.1.0-2)
    [2012-07-21 15:06] Running 'pacman -R glib-networking gsettings-desktop-schemas'
    [2012-07-21 15:06] Running 'pacman -R libsoup glib-networking gsettings-desktop-schemas'
    [2012-07-21 15:06] removed libsoup (2.38.1-1)
    [2012-07-21 15:06] removed glib-networking (2.32.3-1)
    [2012-07-21 15:06] removed gsettings-desktop-schemas (3.4.2-1)
    [2012-07-21 15:07] Running 'pacman -R wxgtk'
    [2012-07-21 15:07] removed wxgtk (2.8.12.1-3)
    [2012-07-21 15:07] Running 'pacman -R libxt libsm'
    [2012-07-21 15:11] Running 'pacman -S ranger'
    [2012-07-21 15:11] installed ranger (1.5.4-1)
    [2012-07-21 15:32] Running 'pacman -S irssi'
    [2012-07-21 15:32] installed irssi (0.8.15-6)
    [2012-07-24 20:20] Running 'pacman -U sublime-text-2.0.1-1-x86_64.pkg.tar.xz'
    [2012-07-24 20:20] installed sublime-text (2.0.1-1)
    [2012-07-24 23:41] Running 'pacman -U dropbox-1.4.11-1-x86_64.pkg.tar.xz'
    [2012-07-24 23:41] installed dropbox (1.4.11-1)
    [2012-07-24 23:41] Running 'pacman -U dropbox-daemon-0.8-8-any.pkg.tar.xz'
    [2012-07-24 23:41] >> Configure the Dropbox daemon script by editing /etc/conf.d/dropboxd.conf
    [2012-07-24 23:41] installed dropbox-daemon (0.8-8)
    [2012-07-24 23:48] Running 'pacman -U dropbox-cli-1-12-x86_64.pkg.tar.xz'
    [2012-07-24 23:48] installed dropbox-cli (1-12)
    [2012-07-24 23:49] Running 'pacman -S nautilus'
    [2012-07-24 23:56] Running 'pacman -S ranger'
    [2012-07-24 23:57] upgraded ranger (1.5.4-1 -> 1.5.4-1)
    [2012-07-25 00:23] Running 'pacman --noconfirm --asdeps -S -- gconf qt qtwebkit'
    [2012-07-25 00:23] Running 'pacman --noconfirm --asdeps -S -- gconf qt qtwebkit'
    [2012-07-25 00:23] Running 'pacman -Sy'
    [2012-07-25 00:23] synchronizing package lists
    [2012-07-25 00:24] Running 'pacman --noconfirm --asdeps -S -- gconf qt qtwebkit'
    [2012-07-25 00:25] installed gconf (3.2.5-2)
    [2012-07-25 00:25] installed libmng (1.0.10-4)
    [2012-07-25 00:25] installed qt (4.8.2-3)
    [2012-07-25 00:25] installed qtwebkit (2.2.2-1)
    [2012-07-25 00:27] Running 'pacman --asdeps -U openssl098-0.9.8.x-1-x86_64.pkg.tar.xz'
    [2012-07-25 00:27] installed openssl098 (0.9.8.x-1)
    [2012-07-25 00:28] Running 'pacman --asdeps -U libpng12-1.2.49-1-x86_64.pkg.tar.xz'
    [2012-07-25 00:28] installed libpng12 (1.2.49-1)
    [2012-07-25 00:30] Running 'pacman -U spotify-0.8.4.103-1-x86_64.pkg.tar.xz'
    [2012-07-25 00:31] installed spotify (0.8.4.103-1)
    [2012-07-29 16:57] Running 'pacman --noconfirm --asdeps -S -- ffmpeg libmediainfo mencoder mplayer'
    [2012-07-29 16:58] Running 'pacman --noconfirm --asdeps -S -- ffmpeg libmediainfo mencoder mplayer'
    [2012-07-29 16:58] Running 'pacman -Syy'
    [2012-07-29 16:58] synchronizing package lists
    [2012-07-29 17:00] Running 'pacman --noconfirm --asdeps -S -- ffmpeg libmediainfo mencoder mplayer'
    [2012-07-29 17:00] installed gsm (1.0.13-7)
    [2012-07-29 17:00] installed lame (3.99.5-1)
    [2012-07-29 17:00] installed libasyncns (0.8-4)
    [2012-07-29 17:00] installed json-c (0.9-1)
    [2012-07-29 17:00] installed libpulse (2.1-1)
    [2012-07-29 17:00] installed libtheora (1.1.1-2)
    [2012-07-29 17:00] installed libglapi (8.0.4-2)
    [2012-07-29 17:00] installed khrplatform-devel (8.0.4-2)
    [2012-07-29 17:00] installed libegl (8.0.4-2)
    [2012-07-29 17:00] installed libva (1.1.0-1)
    [2012-07-29 17:00] installed libvpx (1.1.0-1)
    [2012-07-29 17:00] installed opencore-amr (0.1.3-1)
    [2012-07-29 17:00] installed openjpeg (1.5.0-1)
    [2012-07-29 17:00] installed rtmpdump (2.4-1)
    [2012-07-29 17:00] installed schroedinger (1.0.11-1)
    [2012-07-29 17:00] installed speex (1.2rc1-2)
    [2012-07-29 17:00] installed x264 (20120705-1)
    [2012-07-29 17:00] installed xvidcore (1.3.2-1)
    [2012-07-29 17:00] installed ffmpeg (1:0.11.1-1)
    [2012-07-29 17:00] installed libmms (0.6.2-1)
    [2012-07-29 17:00] installed libzen (0.4.26-1)
    [2012-07-29 17:00] installed libmediainfo (0.7.58-1)
    [2012-07-29 17:00] installed recode (3.6-7)
    [2012-07-29 17:00] installed enca (1.13-2)
    [2012-07-29 17:00] installed a52dec (0.7.4-6)
    [2012-07-29 17:00] installed libdca (0.0.5-3)
    [2012-07-29 17:00] installed talloc (2.0.7-1)
    [2012-07-29 17:00] installed libwbclient (3.6.6-1)
    [2012-07-29 17:00] installed libcap-ng (0.6.6-1)
    [2012-07-29 17:00] installed cifs-utils (5.5-1)
    [2012-07-29 17:00] installed tdb (1.2.9-2)
    [2012-07-29 17:00] installed smbclient (3.6.6-1)
    [2012-07-29 17:00] installed libmad (0.15.1b-6)
    [2012-07-29 17:00] installed fribidi (0.19.2-2)
    [2012-07-29 17:00] installed libmp4v2 (2.0.0-2)
    [2012-07-29 17:00] installed faac (1.28-4)
    [2012-07-29 17:00] installed faad2 (2.7-3)
    [2012-07-29 17:00] installed mpg123 (1.14.4-1)
    [2012-07-29 17:00] installed libass (0.10.0-3)
    [2012-07-29 17:00] installed libbluray (0.2.2-1)
    [2012-07-29 17:00] installed libcddb (1.3.2-3)
    [2012-07-29 17:00] installed libcdio (0.83-1)
    [2012-07-29 17:00] installed mencoder (35014-1)
    [2012-07-29 17:00] installed libftdi (0.20-1)
    [2012-07-29 17:00] installed libirman (0.4.5-3)
    [2012-07-29 17:00] installed lirc-utils (1:0.9.0-22)
    [2012-07-29 17:00] installed gpm (1.20.6-10)
    [2012-07-29 17:00] installed aalib (1.4rc5-9)
    [2012-07-29 17:00] installed jack (0.121.3-6)
    [2012-07-29 17:00] installed libcaca (0.99.beta18-1)
    [2012-07-29 17:00] installed xf86dgaproto (2.1-2)
    [2012-07-29 17:00] installed libxxf86dga (1.1.3-1)
    [2012-07-29 17:00] installed mplayer (35014-1)
    [2012-07-29 17:00] Running 'pacman -U pms-1.60.0-1-x86_64.pkg.tar.xz'
    [2012-07-29 17:00] installed pms (1.60.0-1)
    [2012-07-29 17:20] Running 'pacman -S netstat'
    [2012-07-29 17:31] Running 'pacman -S ntfs-3g'
    [2012-07-29 17:31] installed fuse (2.9.0-1)
    [2012-07-29 17:31] installed ntfs-3g (2012.1.15-3)
    [2012-07-29 17:45] Running 'pacman -S tsmuxer'
    [2012-07-29 17:45] Running 'pacman -S tsMuxeR'
    [2012-07-29 17:45] Running 'pacman --noconfirm --asdeps -S -- lib32-freetype2'
    [2012-07-29 17:45] installed lib32-bzip2 (1.0.6-1)
    [2012-07-29 17:45] installed lib32-freetype2 (2.4.10-1)
    [2012-07-29 17:48] Running 'pacman -U tsmuxer-1.10.6-12-x86_64.pkg.tar.xz'
    [2012-07-29 17:48] The tsmuxer package is licensed software.
    [2012-07-29 17:48] You MUST read and agree to the license stored in
    [2012-07-29 17:48] /opt/tsmuxer/LICENSE before using it.
    [2012-07-29 17:48] installed tsmuxer (1.10.6-12)
    [2012-07-29 18:23] Running 'pacman -S icedtea-web-java7'
    [2012-07-29 18:23] Running 'pacman -S icedtea-web-java6'
    [2012-07-29 18:24] Running 'pacman -S openjre'
    [2012-07-29 18:25] Running 'pacman -S jre'
    [2012-07-29 18:25] Running 'pacman -S icetea-plugin'
    [2012-07-29 18:27] Running 'pacman -S icedtea-web'
    [2012-07-29 18:27] installed icedtea-web (1.2-1)
    [2012-07-29 18:35] Running 'pacman -S ccache'
    [2012-07-29 18:35] installed ccache (3.1.7-1)
    [2012-07-29 18:50] Running 'pacman -S rtorrent'
    [2012-07-29 18:50] installed libsigc++ (2.2.10-2)
    [2012-07-29 18:50] installed libtorrent (0.13.2-2)
    [2012-07-29 18:50] installed xmlrpc-c (1:1.31.02-2)
    [2012-07-29 18:50] installed rtorrent (0.9.2-2)
    [2012-07-29 18:52] Running 'pacman -S rutorrent'
    [2012-07-29 18:52] Running 'pacman --noconfirm --asdeps -S -- php'
    [2012-07-29 18:52] installed php (5.4.5-1)
    [2012-07-29 18:52] Running 'pacman -U rutorrent-3.4-2-any.pkg.tar.xz'
    [2012-07-29 18:53] installed rutorrent (3.4-2)
    [2012-07-29 18:53] Running 'pacman -R rtorrent'
    [2012-07-29 18:53] removed rtorrent (0.9.2-2)
    [2012-07-29 18:53] Running 'pacman -S rtorrent-svn'
    [2012-07-29 18:54] Running 'pacman -S rtorrent'
    [2012-07-29 18:54] installed rtorrent (0.9.2-2)
    [2012-07-29 18:54] Running 'pacman -S apache php-apache php-cgi mod-scgi php-xsl rutorrent-plugins php-geoip screen'
    [2012-07-29 18:55] Running 'pacman -S apache php-apache php-cgi php-xsl rutorrent-plugins php-geoip screen'
    [2012-07-29 18:55] Running 'pacman -S apache php-apache php-cgi php-xsl php-geoip screen'
    [2012-07-29 18:55] installed apr (1.4.6-1)
    [2012-07-29 18:55] installed unixodbc (2.3.1-1)
    [2012-07-29 18:55] installed apr-util (1.4.1-1)
    [2012-07-29 18:55] installed apache (2.2.22-4)
    [2012-07-29 18:55] installed php-apache (5.4.5-1)
    [2012-07-29 18:55] installed php-cgi (5.4.5-1)
    [2012-07-29 18:55] installed php-xsl (5.4.5-1)
    [2012-07-29 18:55] installed geoip-database (20120706-1)
    [2012-07-29 18:55] installed geoip (1.4.8-2)
    [2012-07-29 18:55] installed php-geoip (1.0.8-2)
    [2012-07-29 18:55] installed screen (4.0.3-13)
    [2012-07-29 19:03] Running 'pacman -U mod_scgi-1.14-1-x86_64.pkg.tar.xz'
    [2012-07-29 19:03] installed mod_scgi (1.14-1)
    [2012-07-29 19:03] Running 'pacman -U rutorrent-plugins-3.4-2-any.pkg.tar.xz'
    [2012-07-29 19:03] installed rutorrent-plugins (3.4-2)
    [2012-07-29 19:04] Running 'pacman -U rutorrent-3.4-2-any.pkg.tar.xz'
    [2012-07-29 19:04] upgraded rutorrent (3.4-2 -> 3.4-2)
    [2012-07-29 19:46] Running 'pacman -S unrar unzip'
    [2012-07-29 19:46] installed unrar (4.2.4-1)
    [2012-07-29 19:46] upgraded unzip (6.0-6 -> 6.0-6)
    [2012-07-29 20:00] Running 'pacman -S php-apache mysql'
    [2012-07-29 20:02] upgraded php-apache (5.4.5-1 -> 5.4.5-1)
    [2012-07-29 20:02] installed libmysqlclient (5.5.25.a-1)
    [2012-07-29 20:02] installed mysql-clients (5.5.25.a-1)
    [2012-07-29 20:02] Installing MySQL system tables...
    [2012-07-29 20:02] OK
    [2012-07-29 20:02] Filling help tables...
    [2012-07-29 20:02] OK
    [2012-07-29 20:02]
    [2012-07-29 20:02] To start mysqld at boot time you have to copy
    [2012-07-29 20:02] support-files/mysql.server to the right place for your system
    [2012-07-29 20:02]
    [2012-07-29 20:02] PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !
    [2012-07-29 20:02] To do so, start the server, then issue the following commands:
    [2012-07-29 20:02]
    [2012-07-29 20:02] /usr/bin/mysqladmin -u root password 'new-password'
    [2012-07-29 20:02] /usr/bin/mysqladmin -u root -h arch-shauder password 'new-password'
    [2012-07-29 20:02]
    [2012-07-29 20:02] Alternatively you can run:
    [2012-07-29 20:02] /usr/bin/mysql_secure_installation
    [2012-07-29 20:02]
    [2012-07-29 20:02] which will also give you the option of removing the test
    [2012-07-29 20:02] databases and anonymous user created by default. This is
    [2012-07-29 20:02] strongly recommended for production servers.
    [2012-07-29 20:02]
    [2012-07-29 20:02] See the manual for more instructions.
    [2012-07-29 20:02]
    [2012-07-29 20:02] You can start the MySQL daemon with:
    [2012-07-29 20:02] cd /usr ; /usr/bin/mysqld_safe &
    [2012-07-29 20:02]
    [2012-07-29 20:02] You can test the MySQL daemon with mysql-test-run.pl
    [2012-07-29 20:02] cd /usr/mysql-test ; perl mysql-test-run.pl
    [2012-07-29 20:02]
    [2012-07-29 20:02] Please report any problems with the /usr/scripts/mysqlbug script!
    [2012-07-29 20:02]
    [2012-07-29 20:02] installed mysql (5.5.25.a-1)
    [2012-07-29 20:49] Running 'pacman -Syyu'
    [2012-07-29 20:49] synchronizing package lists
    [2012-07-29 20:50] starting full system upgrade
    [2012-07-29 20:52] upgraded readline (6.2.003-2 -> 6.2.004-1)
    [2012-07-29 20:52] upgraded bash (4.2.036-1 -> 4.2.037-1)
    [2012-07-29 20:52] upgraded bison (2.5.1-1 -> 2.6-1)
    [2012-07-29 20:52] upgraded lib32-gcc-libs (4.7.1-4.1 -> 4.7.1-5)
    [2012-07-29 20:52] upgraded gcc-libs-multilib (4.7.1-4.1 -> 4.7.1-5)
    [2012-07-29 20:52] upgraded gnutls (3.0.21-1 -> 3.0.21-2)
    [2012-07-29 20:52] upgraded libpng (1.5.11-1 -> 1.5.12-1)
    [2012-07-29 20:52] upgraded libcups (1.5.3-5 -> 1.5.4-1)
    [2012-07-29 20:52] upgraded gtk-update-icon-cache (2.24.10-3 -> 2.24.11-2)
    [2012-07-29 20:52] upgraded gtk2 (2.24.10-3 -> 2.24.11-2)
    [2012-07-29 20:52] upgraded chromium (20.0.1132.57-1 -> 20.0.1132.57-2)
    [2012-07-29 20:52] warning: /etc/protocols installed as /etc/protocols.pacnew
    [2012-07-29 20:52] warning: /etc/services installed as /etc/services.pacnew
    [2012-07-29 20:52] upgraded iana-etc (2.30-2 -> 2.30-3)
    [2012-07-29 20:52] upgraded filesystem (2012.6-4 -> 2012.7-1)
    [2012-07-29 20:52] upgraded libsystemd (186-2 -> 187-2)
    [2012-07-29 20:52] upgraded glib2 (2.32.3-1 -> 2.32.4-1)
    [2012-07-29 20:52] upgraded systemd-tools (186-2 -> 187-2)
    [2012-07-29 20:52] upgraded dbus-core (1.6.2-2 -> 1.6.4-1)
    [2012-07-29 20:52] upgraded dbus (1.6.2-1 -> 1.6.4-1)
    [2012-07-29 20:52] upgraded flex (2.5.35-5 -> 2.5.36-1)
    [2012-07-29 20:52] upgraded gcc-multilib (4.7.1-4.1 -> 4.7.1-5)
    [2012-07-29 20:52] upgraded git (1.7.11.2-1 -> 1.7.11.3-1)
    [2012-07-29 20:52] upgraded glproto (1.4.15-1 -> 1.4.16-1)
    [2012-07-29 20:52] upgraded gtk3 (3.4.3-1 -> 3.4.4-1)
    [2012-07-29 20:52] upgraded icu (49.1.2-1 -> 49.1.2-2)
    [2012-07-29 20:52] warning: /etc/rc.conf installed as /etc/rc.conf.pacnew
    [2012-07-29 20:52] upgraded initscripts (2012.06.3-2 -> 2012.07.5-1)
    [2012-07-29 20:52] upgraded lib32-readline (6.2.003-1 -> 6.2.004-1)
    [2012-07-29 20:52] >>> Updating module dependencies. Please wait ...
    [2012-07-29 20:52] >>> Generating initial ramdisk, using mkinitcpio. Please wait...
    [2012-07-29 20:52] ==> Building image from preset: 'default'
    [2012-07-29 20:52] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux.img
    [2012-07-29 20:52] ==> Starting build: 3.4.6-1-ARCH
    [2012-07-29 20:52] -> Running build hook: [base]
    [2012-07-29 20:52] -> Running build hook: [udev]
    [2012-07-29 20:52] -> Running build hook: [autodetect]
    [2012-07-29 20:52] -> Running build hook: [pata]
    [2012-07-29 20:52] -> Running build hook: [scsi]
    [2012-07-29 20:52] -> Running build hook: [sata]
    [2012-07-29 20:52] -> Running build hook: [filesystems]
    [2012-07-29 20:52] -> Running build hook: [usbinput]
    [2012-07-29 20:52] -> Running build hook: [fsck]
    [2012-07-29 20:52] ==> Generating module dependencies
    [2012-07-29 20:52] ==> Creating gzip initcpio image: /boot/initramfs-linux.img
    [2012-07-29 20:52] ==> Image generation successful
    [2012-07-29 20:52] ==> Building image from preset: 'fallback'
    [2012-07-29 20:52] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-fallback.img -S autodetect
    [2012-07-29 20:52] ==> Starting build: 3.4.6-1-ARCH
    [2012-07-29 20:52] -> Running build hook: [base]
    [2012-07-29 20:52] -> Running build hook: [udev]
    [2012-07-29 20:52] -> Running build hook: [pata]
    [2012-07-29 20:52] -> Running build hook: [scsi]
    [2012-07-29 20:52] -> Running build hook: [sata]
    [2012-07-29 20:52] -> Running build hook: [filesystems]
    [2012-07-29 20:52] -> Running build hook: [usbinput]
    [2012-07-29 20:52] -> Running build hook: [fsck]
    [2012-07-29 20:52] ==> Generating module dependencies
    [2012-07-29 20:52] ==> Creating gzip initcpio image: /boot/initramfs-linux-fallback.img
    [2012-07-29 20:52] ==> Image generation successful
    [2012-07-29 20:52] upgraded linux (3.4.5-1 -> 3.4.6-1)
    [2012-07-29 20:52] upgraded linux-api-headers (3.4.4-1 -> 3.4.6-1)
    [2012-07-29 20:52] upgraded mesa (8.0.4-1 -> 8.0.4-2)
    [2012-07-29 20:52] upgraded nvidia (302.17-3 -> 302.17-4)
    [2012-07-29 20:52] upgraded tzdata (2012c-1 -> 2012d-1)
    [2012-07-29 20:52] upgraded xf86-input-evdev (2.7.0-2 -> 2.7.1-1)
    [2012-08-03 12:40] Running 'pacman -S filezilla'
    [2012-08-03 12:40] installed wxgtk (2.8.12.1-3)
    [2012-08-03 12:40] installed libidn (1.25-1)
    [2012-08-03 12:40] installed filezilla (3.5.3-1)
    [2012-08-06 13:55] Running 'pacman -R openjdk'
    [2012-08-06 13:55] Running 'pacman -R openjdk6'
    [2012-08-06 13:55] Running 'pacman -R icedtea-web'
    [2012-08-06 13:55] removed icedtea-web (1.2-1)
    [2012-08-06 13:56] Running 'pacman -S jdk'
    [2012-08-06 13:57] Running 'pacman --asdeps -U jre-7.5-2-x86_64.pkg.tar.xz'
    [2012-08-06 13:58] removed openjdk6 (6.b24_1.11.3-1)
    [2012-08-06 13:58]
    [2012-08-06 13:58] The jre package is licensed software.
    [2012-08-06 13:58] You MUST read and agree to the license stored in
    [2012-08-06 13:58] /usr/share/licenses/jre/LICENSE before using it.
    [2012-08-06 13:58] Please relogin to include jre in your PATH.
    [2012-08-06 13:58]
    [2012-08-06 13:58] installed jre (7.5-2)
    [2012-08-06 14:01] Running 'pacman -U jdk-7.5-2-x86_64.pkg.tar.xz'
    [2012-08-06 14:01]
    [2012-08-06 14:01] The jdk package is licensed software.
    [2012-08-06 14:01] You MUST read and agree to the license stored in
    [2012-08-06 14:01] /usr/share/licenses/jdk/LICENSE before using it.
    [2012-08-06 14:01] Please relogin to include jdk in your PATH.
    [2012-08-06 14:01]
    [2012-08-06 14:01] installed jdk (7.5-2)
    [2012-08-06 14:14] Running 'pacman --asdeps -U jre6-6u33-b04-x86_64.pkg.tar.xz'
    [2012-08-06 14:15] Running 'pacman -R jdk jre'
    [2012-08-06 14:16] Running 'pacman -U jre6-6u33-b04-x86_64.pkg.tar.xz'
    [2012-08-06 14:17] Running 'pacman -Rdd jdk jre'
    [2012-08-06 14:17] removed jdk (7.5-2)
    [2012-08-06 14:17] removed jre (7.5-2)
    [2012-08-06 14:19] Running 'pacman --asdeps -U jre6-6u33-b04-x86_64.pkg.tar.xz'
    [2012-08-06 14:19] The jre package is licensed software.
    [2012-08-06 14:19] You MUST read and agree to the license stored in
    [2012-08-06 14:19] /opt/java/jre/LICENSE before using it.
    [2012-08-06 14:19] Please relogin to include jre in your PATH.
    [2012-08-06 14:19] installed jre6 (6u33-b04)
    [2012-08-06 14:21] Running 'pacman -U jdk6-6u33-b04-x86_64.pkg.tar.xz'
    [2012-08-06 14:21] The jdk package is licensed software.
    [2012-08-06 14:21] You MUST read and agree to the license stored in
    [2012-08-06 14:21] /opt/java/LICENSE before using it.
    [2012-08-06 14:21] Please relogin to include jdk in your PATH
    [2012-08-06 14:21] installed jdk6 (6u33-b04)
    [2012-08-06 14:23] Running 'pacman -U jre6-6u33-b04-x86_64.pkg.tar.xz'
    [2012-08-06 14:54] upgraded jre6 (6u33-b04 -> 6u33-b04)
    [2012-08-06 17:23] Running 'pacman -S gimp'
    [2012-08-06 17:23] installed lcms (1.19-2)
    [2012-08-06 17:23] Updating font cache... done.
    [2012-08-06 17:23] installed gsfonts (1.0.7pre44-3)
    [2012-08-06 17:23] installed libwmf (0.2.8.4-9)
    [2012-08-06 17:23] installed libcroco (0.6.5-1)
    [2012-08-06 17:23] installed librsvg (2.36.1-1)
    [2012-08-06 17:23] installed babl (0.1.10-1)
    [2012-08-06 17:23] installed gegl (0.2.0-2)
    [2012-08-06 17:23] installed freeglut (2.8.0-1)
    [2012-08-06 17:23] installed jasper (1.900.1-7)
    [2012-08-06 17:23] installed gimp (2.8.0-2)
    [2012-08-06 18:25] Running 'pacman -Sy'
    [2012-08-06 18:25] synchronizing package lists
    [2012-08-06 18:25] Running 'pacman -S yaourt'
    [2012-08-06 18:28] Running 'pacman -Sy'
    [2012-08-06 18:28] synchronizing package lists
    [2012-08-06 18:28] Running 'pacman -S lib32-gcc-libs lib32-glibc lib32-libx11 lib32-libxau lib32-libxcb lib32-libxdmcp lib32-libxext lib32-libxrender lib32-alsa-lib lib32-libstdc++5 lib32-libxv lib32-ncurses lib32-openal lib32-sdl lib32-zlib swt'
    [2012-08-06 18:29] Running 'pacman -Sy'
    [2012-08-06 18:29] synchronizing package lists
    [2012-08-06 18:29] Running 'pacman -S lib32-gcc-libs lib32-glibc lib32-libx11 lib32-libxau lib32-libxcb lib32-libxdmcp lib32-libxext lib32-libxrender lib32-alsa-lib lib32-libstdc++5 lib32-libxv lib32-ncurses lib32-openal lib32-sdl lib32-zlib swt'
    [2012-08-06 18:32] Running 'pacman --noconfirm --asdeps -S -- yajl'
    [2012-08-06 21:50] Running 'pacman -U jdk6-6u33-b04-x86_64.pkg.tar.xz'
    [2012-08-06 21:51] Running 'pacman -Rdd jdk6 jre6'
    [2012-08-06 21:51] removed jdk6 (6u33-b04)
    [2012-08-06 21:51] removed jre6 (6u33-b04)
    [2012-08-06 21:54] Running 'pacman -U sun-java6-6u32-1-x86_64.pkg.tar.xz'
    [2012-08-06 21:54] The sun-java6 package is licensed software.
    [2012-08-06 21:54] You MUST read and agree to the license stored in
    [2012-08-06 21:54] /opt/sun-java6/LICENSE before using it.
    [2012-08-06 21:54]
    [2012-08-06 21:54] Use '. /opt/sun-java6/envsetup.sh' to setup environment.
    [2012-08-06 21:54] installed sun-java6 (6u32-1)
    [2012-08-06 21:59] Running 'pacman -Syu'
    [2012-08-06 21:59] synchronizing package lists
    [2012-08-06 21:59] starting full system upgrade
    [2012-08-06 22:00] Running 'pacman -Sy'
    [2012-08-06 22:00] synchronizing package lists
    [2012-08-06 22:00] Running 'pacman -S yaourt'
    [2012-08-06 22:00] installed yajl (2.0.4-1)
    [2012-08-06 22:00] installed package-query (1.0.1-1)
    [2012-08-06 22:00] installed yaourt (1.1-1)
    [2012-08-06 22:00] Running 'pacman -S extra/schedtool community/esdl'
    [2012-08-06 22:00] upgraded schedtool (1.3.0-2 -> 1.3.0-2)
    [2012-08-06 22:00] upgraded esdl (2:1.2-1 -> 2:1.2-1)
    [2012-08-06 22:00] Running 'pacman -S extra/schedtool community/esdl'
    [2012-08-06 22:00] upgraded schedtool (1.3.0-2 -> 1.3.0-2)
    [2012-08-06 22:00] upgraded esdl (2:1.2-1 -> 2:1.2-1)
    [2012-08-06 22:00] Running 'pacman -S --asdeps --needed extra/jdk7-openjdk'
    [2012-08-06 22:01] installed java-rhino (1.7R3-3)
    [2012-08-06 22:01] installed jre7-openjdk-headless (7.u5_2.2.1-1)
    [2012-08-06 22:01] when you use a non-reparenting window manager
    [2012-08-06 22:01] set _JAVA_AWT_WM_NONREPARENTING=1 in
    [2012-08-06 22:01] /etc/profile.d/jre.sh
    [2012-08-06 22:01] installed jre7-openjdk (7.u5_2.2.1-1)
    [2012-08-06 22:01] installed jdk7-openjdk (7.u5_2.2.1-1)
    [2012-08-06 22:02] Running 'pacman -U /tmp/yaourt-tmp-shauder/PKGDEST.kJz/android-apktool-1.4.9-1-x86_64.pkg.tar.xz'
    [2012-08-06 22:02] installed android-apktool (1.4.9-1)
    [2012-08-06 22:04] Running 'pacman -U /tmp/yaourt-tmp-shauder/PKGDEST.ubB/android-sdk-r20.0.1-1-x86_64.pkg.tar.xz'
    [2012-08-06 22:05] You need to source /etc/profile or relogin to add the Android SDK tools to your path.
    [2012-08-06 22:05] The android group has been removed, install android packages as root.
    [2012-08-06 22:05] upgraded android-sdk (r20-2 -> r20.0.1-1)
    [2012-08-06 22:08] Running 'pacman -U /tmp/yaourt-tmp-shauder/PKGDEST.g9s/android-sdk-platform-tools-r14-1-any.pkg.tar.xz'
    [2012-08-06 22:08] upgraded android-sdk-platform-tools (r12-1 -> r14-1)
    [2012-08-06 22:08] Running 'pacman -S --asdeps --needed extra/libmtp'
    [2012-08-06 22:08] installed libmtp (1.1.3-1)
    [2012-08-06 22:08] Running 'pacman -U /tmp/yaourt-tmp-shauder/PKGDEST.0Uc/android-udev-1.3-4-any.pkg.tar.xz'
    [2012-08-06 22:08] ===> In order to use adb, you have to be in the 'adbusers' group
    [2012-08-06 22:08] ===> For that, use: gpasswd -a USERNAME adbusers
    [2012-08-06 22:08] installed android-udev (1.3-4)
    [2012-08-06 22:08] Running 'pacman -U /tmp/yaourt-tmp-shauder/PKGDEST.n8w/fastboot-20110628-2-any.pkg.tar.xz'
    [2012-08-06 22:08] installed fastboot (20110628-2)
    [2012-08-06 22:09] Running 'pacman -U /tmp/yaourt-tmp-shauder/PKGDEST.aCT/pngcrush-1.7.35-1-x86_64.pkg.tar.xz'
    [2012-08-06 22:09] upgraded pngcrush (1.7.31-1 -> 1.7.35-1)
    [2012-08-06 22:09] Running 'pacman -U /tmp/yaourt-tmp-shauder/PKGDEST.ZNg/repo-git-20120806-1-x86_64.pkg.tar.xz'
    [2012-08-06 22:10] Running 'pacman -S abs base-devel perl git gnupg flex bison gperf zip unzip sdl wxgtk squashfs-tools ncurses libpng zlib libusb libusb-compat readline alsa-lib openal'
    [2012-08-06 22:11] Running 'pacman -S lib32-gcc-libs lib32-glibc lib32-libx11 lib32-libxau lib32-libxcb lib32-libxdmcp lib32-libxext lib32-libxrender lib32-alsa-lib lib32-libstdc++5 lib32-libxv lib32-ncurses lib32-openal lib32-sdl lib32-zlib swt'
    [2012-08-06 22:11] upgraded lib32-glibc (2.16.0-2 -> 2.16.0-2)
    [2012-08-06 22:11] upgraded lib32-gcc-libs (4.7.1-5 -> 4.7.1-5)
    [2012-08-06 22:11] upgraded lib32-libxdmcp (1.1.1-1 -> 1.1.1-1)
    [2012-08-06 22:11] upgraded lib32-libxau (1.0.7-1 -> 1.0.7-1)
    [2012-08-06 22:11] upgraded lib32-libxcb (1.8.1-2 -> 1.8.1-2)
    [2012-08-06 22:11] upgraded lib32-libx11 (1.5.0-1 -> 1.5.0-1)
    [2012-08-06 22:11] upgraded lib32-libxext (1.3.1-1 -> 1.3.1-1)
    [2012-08-06 22:11] upgraded lib32-libxrender (0.9.7-1 -> 0.9.7-1)
    [2012-08-06 22:11] upgraded lib32-alsa-lib (1.0.25-1 -> 1.0.25-1)
    [2012-08-06 22:11] upgraded lib32-libstdc++5 (3.3.6-6 -> 3.3.6-6)
    [2012-08-06 22:11] upgraded lib32-libxv (1.0.7-1 -> 1.0.7-1)
    [2012-08-06 22:11] upgraded lib32-ncurses (5.9-1 -> 5.9-1)
    [2012-08-06 22:11] upgraded lib32-openal (1.14-1 -> 1.14-1)
    [2012-08-06 22:11] upgraded lib32-sdl (1.2.15-2 -> 1.2.15-2)
    [2012-08-06 22:11] upgraded lib32-zlib (1.2.7-1 -> 1.2.7-1)
    [2012-08-06 22:11] upgraded swt (3.7.2-1 -> 3.7.2-1)
    [2012-08-06 22:11] Running 'pacman -S gcc-multilib gcc-libs-multilib binutils-multilib libtool-multilib lib32-readline lib32-glibc lib32-zlib'
    [2012-08-06 22:12] Running 'pacman -U /tmp/yaourt-tmp-shauder/PKGDEST.u2K/lib32-libusb-1.0.9-1-x86_64.pkg.tar.xz'
    [2012-08-06 22:12] installed lib32-libusb (1.0.9-1)
    [2012-08-06 22:12] Running 'pacman -U /tmp/yaourt-tmp-shauder/PKGDEST.ENc/lib32-libusb-compat-0.1.4-2-x86_64.pkg.tar.xz'
    [2012-08-06 22:12] installed lib32-libusb-compat (0.1.4-2)
    [2012-08-06 22:16] Running 'pacman -S ps3mediaserver'
    [2012-08-06 22:17] Running 'pacman -U /tmp/yaourt-tmp-shauder/PKGDEST.WIi/pms-1.60.0-2-x86_64.pkg.tar.xz'
    [2012-08-06 22:17] upgraded pms (1.60.0-1 -> 1.60.0-2)
    [2012-08-06 22:18] Running 'pacman -Syu'
    [2012-08-06 22:18] synchronizing package lists
    [2012-08-06 22:18] starting full system upgrade
    [2012-08-06 22:18] Running 'pacman -Syu'
    [2012-08-06 22:18] synchronizing package lists
    [2012-08-06 22:18] starting full system upgrade
    [2012-08-06 22:20] upgraded bison (2.6-1 -> 2.6.2-1)
    [2012-08-06 22:20] upgraded chromium (20.0.1132.57-2 -> 21.0.1180.57-1)
    [2012-08-06 22:20] upgraded libldap (2.4.31-4 -> 2.4.32-1)
    [2012-08-06 22:20] upgraded krb5 (1.10.2-2 -> 1.10.2-3)
    [2012-08-06 22:20] upgraded cifs-utils (5.5-1 -> 5.6-2)
    [2012-08-06 22:20] upgraded cryptsetup (1.4.3-1 -> 1.5.0-1)
    [2012-08-06 22:20] upgraded curl (7.26.0-1 -> 7.27.0-1)
    [2012-08-06 22:20] upgraded flex (2.5.36-1 -> 2.5.37-1)
    [2012-08-06 22:20] upgraded fuse (2.9.0-1 -> 2.9.1-1)
    [2012-08-06 22:20] upgraded git (1.7.11.3-1 -> 1.7.11.4-1)
    [2012-08-06 22:20] upgraded gnutls (3.0.21-2 -> 3.0.22-1)
    [2012-08-06 22:20] upgraded hwids (20120711-1 -> 20120730-1)
    [2012-08-06 22:20] upgraded nvidia-utils (302.17-1 -> 304.32-1)
    [2012-08-06 22:20] upgraded lib32-nvidia-utils (302.17-1 -> 304.32-1)
    [2012-08-06 22:20] upgraded libcups (1.5.4-1 -> 1.6.1-2)
    [2012-08-06 22:20] upgraded libmysqlclient (5.5.25.a-1 -> 5.5.27-1)
    [2012-08-06 22:20] upgraded libsystemd (187-2 -> 187-4)
    [2012-08-06 22:20] upgraded libthai (0.1.17-1 -> 0.1.18-1)
    [2012-08-06 22:20] upgraded systemd-tools (187-2 -> 187-4)
    [2012-08-06 22:20] upgraded mkinitcpio (0.9.2-2 -> 0.10-1)
    [2012-08-06 22:20] >>> Updating module dependencies. Please wait ...
    [2012-08-06 22:20] >>> Generating initial ramdisk, using mkinitcpio. Please wait...
    [2012-08-06 22:20] ==> Building image from preset: 'default'
    [2012-08-06 22:20] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux.img
    [2012-08-06 22:20] ==> Starting build: 3.4.7-1-ARCH
    [2012-08-06 22:20] -> Running build hook: [base]
    [2012-08-06 22:20] -> Running build hook: [udev]
    [2012-08-06 22:20] -> Running build hook: [autodetect]
    [2012-08-06 22:20] -> Running build hook: [pata]
    [2012-08-06 22:20] -> Running build hook: [scsi]
    [2012-08-06 22:20] -> Running build hook: [sata]
    [2012-08-06 22:20] -> Running build hook: [filesystems]
    [2012-08-06 22:20] -> Running build hook: [usbinput]
    [2012-08-06 22:20] -> Running build hook: [fsck]
    [2012-08-06 22:20] ==> Generating module dependencies
    [2012-08-06 22:20] ==> Creating gzip initcpio image: /boot/initramfs-linux.img
    [2012-08-06 22:20] ==> Image generation successful
    [2012-08-06 22:20] ==> Building image from preset: 'fallback'
    [2012-08-06 22:20] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-fallback.img -S autodetect
    [2012-08-06 22:20] ==> Starting build: 3.4.7-1-ARCH
    [2012-08-06 22:20] -> Running build hook: [base]
    [2012-08-06 22:20] -> Running build hook: [udev]
    [2012-08-06 22:20] -> Running build hook: [pata]
    [2012-08-06 22:20] -> Running build hook: [scsi]
    [2012-08-06 22:20] -> Running build hook: [sata]
    [2012-08-06 22:20] -> Running build hook: [filesystems]
    [2012-08-06 22:20] -> Running build hook: [usbinput]
    [2012-08-06 22:20] -> Running build hook: [fsck]
    [2012-08-06 22:20] ==> Generating module dependencies
    [2012-08-06 22:20] ==> Creating gzip initcpio image: /boot/initramfs-linux-fallback.img
    [2012-08-06 22:20] ==> Image generation successful
    [2012-08-06 22:20] upgraded linux (3.4.6-1 -> 3.4.7-1)
    [2012-08-06 22:20] upgraded mysql-clients (5.5.25.a-1 -> 5.5.27-1)
    [2012-08-06 22:20] upgraded mysql (5.5.25.a-1 -> 5.5.27-1)
    [2012-08-06 22:20] upgraded nspr (4.9.1-1 -> 4.9.2-1)
    [2012-08-06 22:20] upgraded nvidia (302.17-4 -> 304.32-1)
    [2012-08-06 22:20] upgraded tzdata (2012d-1 -> 2012e-1)
    [2012-08-06 22:20] upgraded xf86-input-evdev (2.7.1-1 -> 2.7.2-1)
    [2012-08-06 22:23] Running 'pacman -S openjdk'
    [2012-08-06 22:23] Running 'pacman -S jdk7-openjdk'
    [2012-08-06 22:24] upgraded jdk7-openjdk (7.u5_2.2.1-1 -> 7.u5_2.2.1-1)
    [2012-08-06 22:24] Running 'pacman -S jre7-openjdk'
    [2012-08-06 22:24] upgraded jre7-openjdk (7.u5_2.2.1-1 -> 7.u5_2.2.1-1)
    [2012-08-06 22:25] Running 'pacman -R pms'
    [2012-08-06 22:25] warning: /opt/pms/PMS.conf saved as /opt/pms/PMS.conf.pacsave
    [2012-08-06 22:25] removed pms (1.60.0-2)
    [2012-08-06 22:26] Running 'pacman -U /tmp/yaourt-tmp-shauder/PKGDEST.QTF/pms-1.60.0-2-x86_64.pkg.tar.xz'
    [2012-08-06 22:26] installed pms (1.60.0-2)
    [2012-08-06 22:26] Running 'pacman -S vlc'
    [2012-08-06 22:26] installed libdvbpsi (0.2.2-1)
    [2012-08-06 22:26] installed sdl_image (1.2.12-2)
    [2012-08-06 22:26] installed libdvdread (4.2.0-1)
    [2012-08-06 22:26] installed libdvdnav (4.2.0-2)
    [2012-08-06 22:26] installed libkate (0.4.1-3)
    [2012-08-06 22:26] installed libtiger (0.3.4-3)
    [2012-08-06 22:26] installed libebml (1.2.2-2)
    [2012-08-06 22:26] installed libmatroska (1.3.0-2)
    [2012-08-06 22:26] installed zvbi (0.2.33-4)
    [2012-08-06 22:26] installed taglib (1.7.2-2)
    [2012-08-06 22:26] installed libmpcdec (1.2.6-3)
    [2012-08-06 22:26] installed libupnp (1.6.17-1)
    [2012-08-06 22:26] installed libshout (1:2.3.0-1)
    [2012-08-06 22:26] installed libmpeg2 (0.5.1-3)
    [2012-08-06 22:26] installed libmodplug (0.8.8.4-1)
    [2012-08-06 22:26] installed ttf-freefont (20120503-1)
    [2012-08-06 22:26] installed vlc (2.0.3-2)
    [2012-08-06 22:26] Running 'pacman -S lib32-gcc-libs lib32-glibc'
    [2012-08-06 22:26] upgraded lib32-glibc (2.16.0-2 -> 2.16.0-2)
    [2012-08-06 22:26] upgraded lib32-gcc-libs (4.7.1-5 -> 4.7.1-5)
    [2012-08-07 11:44] Running 'pacman --noconfirm --asdeps -S -- pacman-color'
    [2012-08-07 11:44] installed pacman-color (4.0.3-1)
    [2012-08-07 11:44] Running 'pacman -U packer-color-20120807-1-any.pkg.tar.xz'
    [2012-08-07 11:44] installed packer-color (20120807-1)
    [2012-08-07 11:50] Running 'pacman-color -S packer'
    [2012-08-07 15:50] Running 'pacman -Syyu'
    [2012-08-07 15:50] synchronizing package lists
    [2012-08-07 15:50] starting full system upgrade
    [2012-08-07 15:50] upgraded libwbclient (3.6.6-1 -> 3.6.7-1)
    [2012-08-07 15:51] upgraded smbclient (3.6.6-1 -> 3.6.7-1)
    [2012-08-07 15:51] Running 'pacman -Sy'
    [2012-08-07 15:51] synchronizing package lists
    [2012-08-07 15:51] Running 'pacman -U /tmp/yaourt-tmp-shauder/PKGDEST.77j/rutorrent-plugins-3.4-3-any.pkg.tar.xz'
    [2012-08-07 15:51] upgraded rutorrent-plugins (3.4-2 -> 3.4-3)
    [2012-08-07 15:51] Running 'pacman -Sy'
    [2012-08-07 15:51] synchronizing package lists
    [2012-08-07 16:02] Running 'pacman-color -S crontab'
    [2012-08-07 16:02] Running 'pacman-color -S cronjob'
    [2012-08-07 16:02] Running 'pacman-color -S cron'
    [2012-08-07 16:02] upgraded cronie (1.4.8-2 -> 1.4.8-2)
    [2012-08-07 16:04] Running 'pacman-color -S cronie'
    [2012-08-07 16:05] Running 'pacman-color -S esmtp procmail'
    [2012-08-07 16:05] installed libesmtp (1.0.6-2)
    [2012-08-07 16:05] installed esmtp (1.2-4)
    [2012-08-07 16:05] installed procmail (3.22-5)
    [2012-08-08 12:10] Running 'pacman -Sy'
    [2012-08-08 12:10] synchronizing package lists
    [2012-08-08 12:12] Running 'pacman -U /tmp/yaourt-tmp-shauder/PKGDEST.82R/pms-1.60.0-2-x86_64.pkg.tar.xz'
    [2012-08-08 12:12] upgraded pms (1.60.0-2 -> 1.60.0-2)
    [2012-08-08 18:02] Running 'pacman -R pms'
    [2012-08-08 18:02] removed pms (1.60.0-2)
    [2012-08-08 18:02] Running 'pacman -Sy'
    [2012-08-08 18:02] synchronizing package lists
    [2012-08-08 18:03] Running 'pacman -U /tmp/yaourt-tmp-shauder/PKGDEST.BkP/pms-1.60.0-2-x86_64.pkg.tar.xz'
    [2012-08-08 18:03] installed pms (1.60.0-2)
    [2012-08-08 18:17] Running 'pacman -S extra/icedtea-web'
    [2012-08-08 18:17] Running 'pacman -S extra/icedtea-web-java7'
    [2012-08-08 18:18] installed icedtea-web-java7 (1.2.1-2)
    [2012-08-08 18:36] Running 'pacman -R pms'
    [2012-08-08 1

    shadowlurker wrote:
    It's problem in pam configuration files. You need to create files useradd, userdel, groupadd and groupdel in /etc/pam.d/ directory with following content:
    auth sufficient pam_rootok.so
    auth required pam_unix.so
    account required pam_unix.so
    session required pam_unix.so
    password required pam_permit.so
    You da man! I also had to add grpconv and chage to get filesystem working but all seems well now thanks!
    Doug piston had me try something that I think will help anyone else who has this problem.  Try re-installing pambase and shadow.  It generated back most of any I was missing.
    Last edited by shauder (2012-11-03 00:55:19)

  • Problem with Configuring Tomcat for running jsp web applications..Plz HELP

    I am using Tomcat 5.5 and Jdk 1.5.0_12 and Oracle 10g. I am using jdbc-odbc bridge connection
    to connect to the database. I have placed my project folder called
    tdm under the webapps folder in Tomcat. This 'tdm' folder consists of
    a collection of html pages,jsp pages and images of my project. Also I created a
    WEB-INF folderand in that I have lib folder which contains catalina-root.jar
    , classes12.jar and nls_charset.jar files. And also in the WEB-INF folder I have the web.xml
    file which looks like this
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!--
    Copyright 2004 The Apache Software Foundation
    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at
    http://www.apache.org/licenses/LICENSE-2.0
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    -->
    <web-app>
    <resource-ref>
    <description>Oracle Datasource example</description>
    <res-ref-name>jdbc/gdn</res-ref-name>
    <res-type>javax.sql.DataSource</res-type>
    <res-auth>Container</res-auth>
    </resource-ref>
    </web-app>
    My Server.xml file in Tomcat\conf folder is as follows
    <!-- Example Server Configuration File -->
    <!-- Note that component elements are nested corresponding to their
    parent-child relationships with each other -->
    <!-- A "Server" is a singleton element that represents the entire JVM,
    which may contain one or more "Service" instances. The Server
    listens for a shutdown command on the indicated port.
    Note: A "Server" is not itself a "Container", so you may not
    define subcomponents such as "Valves" or "Loggers" at this level.
    -->
    <Server port="8005" shutdown="SHUTDOWN">
    <!-- Comment these entries out to disable JMX MBeans support used for the
    administration web application -->
    <Listener className="org.apache.catalina.mbeans.ServerLifecycleListener" />
    <Listener className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener" />
    <!-- Global JNDI resources -->
    <GlobalNamingResources>
    <!-- Test entry for demonstration purposes -->
    <Environment name="simpleValue" type="java.lang.Integer" value="30"/>
    <!-- Editable user database that can also be used by
    UserDatabaseRealm to authenticate users -->
    <Resource name="UserDatabase" auth="Container"
    type="org.apache.catalina.UserDatabase"
    description="User database that can be updated and saved"
    factory="org.apache.catalina.users.MemoryUserDatabaseFactory"
    pathname="conf/tomcat-users.xml" />
    <Resource name="jdbc/gdn" auth="Container"
    type="javax.sql.DataSource" driverClassName="sun.jdbc.odbc.JdbcOdbcDriver"
    url="jdbc:odbc:gdn"
    username="system" password="tiger" maxActive="20" maxIdle="10"
    maxWait="-1"/>
    </GlobalNamingResources>
    <!-- A "Service" is a collection of one or more "Connectors" that share
    a single "Container" (and therefore the web applications visible
    within that Container). Normally, that Container is an "Engine",
    but this is not required.
    Note: A "Service" is not itself a "Container", so you may not
    define subcomponents such as "Valves" or "Loggers" at this level.
    -->
    <!-- Define the Tomcat Stand-Alone Service -->
    <Service name="Catalina">
    <!-- A "Connector" represents an endpoint by which requests are received
    and responses are returned. Each Connector passes requests on to the
    associated "Container" (normally an Engine) for processing.
    By default, a non-SSL HTTP/1.1 Connector is established on port 8080.
    You can also enable an SSL HTTP/1.1 Connector on port 8443 by
    following the instructions below and uncommenting the second Connector
    entry. SSL support requires the following steps (see the SSL Config
    HOWTO in the Tomcat 5 documentation bundle for more detailed
    instructions):
    * If your JDK version 1.3 or prior, download and install JSSE 1.0.2 or
    later, and put the JAR files into "$JAVA_HOME/jre/lib/ext".
    * Execute:
    %JAVA_HOME%\bin\keytool -genkey -alias tomcat -keyalg RSA (Windows)
    $JAVA_HOME/bin/keytool -genkey -alias tomcat -keyalg RSA (Unix)
    with a password value of "changeit" for both the certificate and
    the keystore itself.
    By default, DNS lookups are enabled when a web application calls
    request.getRemoteHost(). This can have an adverse impact on
    performance, so you can disable it by setting the
    "enableLookups" attribute to "false". When DNS lookups are disabled,
    request.getRemoteHost() will return the String version of the
    IP address of the remote client.
    -->
    <!-- Define a non-SSL HTTP/1.1 Connector on port 8080 -->
    <Connector
    port="5050" maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
    enableLookups="false" redirectPort="8443" acceptCount="100"
    connectionTimeout="20000" disableUploadTimeout="true" />
    <!-- Note : To disable connection timeouts, set connectionTimeout value
    to 0 -->
         <!-- Note : To use gzip compression you could set the following properties :
                   compression="on"
                   compressionMinSize="2048"
                   noCompressionUserAgents="gozilla, traviata"
                   compressableMimeType="text/html,text/xml"
         -->
    <!-- Define a SSL HTTP/1.1 Connector on port 8443 -->
    <!--
    <Connector port="8443"
    maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
    enableLookups="false" disableUploadTimeout="true"
    acceptCount="100" scheme="https" secure="true"
    clientAuth="false" sslProtocol="TLS" />
    -->
    <!-- Define an AJP 1.3 Connector on port 8009 -->
    <Connector port="8009"
    enableLookups="false" redirectPort="8443" protocol="AJP/1.3" />
    <!-- Define a Proxied HTTP/1.1 Connector on port 8082 -->
    <!-- See proxy documentation for more information about using this. -->
    <!--
    <Connector port="8082"
    maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
    enableLookups="false" acceptCount="100" connectionTimeout="20000"
    proxyPort="80" disableUploadTimeout="true" />
    -->
    <!-- An Engine represents the entry point (within Catalina) that processes
    every request. The Engine implementation for Tomcat stand alone
    analyzes the HTTP headers included with the request, and passes them
    on to the appropriate Host (virtual host). -->
    <!-- You should set jvmRoute to support load-balancing via AJP ie :
    <Engine name="Standalone" defaultHost="localhost" jvmRoute="jvm1">
    -->
    <!-- Define the top level container in our container hierarchy -->
    <Engine name="Catalina" defaultHost="localhost">
    <!-- The request dumper valve dumps useful debugging information about
    the request headers and cookies that were received, and the response
    headers and cookies that were sent, for all requests received by
    this instance of Tomcat. If you care only about requests to a
    particular virtual host, or a particular application, nest this
    element inside the corresponding <Host> or <Context> entry instead.
    For a similar mechanism that is portable to all Servlet 2.4
    containers, check out the "RequestDumperFilter" Filter in the
    example application (the source for this filter may be found in
    "$CATALINA_HOME/webapps/examples/WEB-INF/classes/filters").
    Request dumping is disabled by default. Uncomment the following
    element to enable it. -->
    <!--
    <Valve className="org.apache.catalina.valves.RequestDumperValve"/>
    -->
    <!-- Because this Realm is here, an instance will be shared globally -->
    <!-- This Realm uses the UserDatabase configured in the global JNDI
    resources under the key "UserDatabase". Any edits
    that are performed against this UserDatabase are immediately
    available for use by the Realm. -->
    <Realm className="org.apache.catalina.realm.UserDatabaseRealm"
    resourceName="UserDatabase"/>
    <!-- Comment out the old realm but leave here for now in case we
    need to go back quickly -->
    <!--
    <Realm className="org.apache.catalina.realm.MemoryRealm" />
    -->
    <!-- Replace the above Realm with one of the following to get a Realm
    stored in a database and accessed via JDBC -->
    <!--
    <Realm className="org.apache.catalina.realm.JDBCRealm"
    driverName="org.gjt.mm.mysql.Driver"
    connectionURL="jdbc:mysql://localhost/authority"
    connectionName="test" connectionPassword="test"
    userTable="users" userNameCol="user_name" userCredCol="user_pass"
    userRoleTable="user_roles" roleNameCol="role_name" />
    -->
    <!--
    <Realm className="org.apache.catalina.realm.JDBCRealm"
    driverName="oracle.jdbc.driver.OracleDriver"
    connectionURL="jdbc:oracle:thin:@ntserver:1521:ORCL"
    connectionName="scott" connectionPassword="tiger"
    userTable="users" userNameCol="user_name" userCredCol="user_pass"
    userRoleTable="user_roles" roleNameCol="role_name" />
    -->
    <!--
    <Realm className="org.apache.catalina.realm.JDBCRealm"
    driverName="sun.jdbc.odbc.JdbcOdbcDriver"
    connectionURL="jdbc:odbc:CATALINA"
    userTable="users" userNameCol="user_name" userCredCol="user_pass"
    userRoleTable="user_roles" roleNameCol="role_name" />
    -->
    <!-- Define the default virtual host
    Note: XML Schema validation will not work with Xerces 2.2.
    -->
    <Host name="localhost" appBase="webapps"
    unpackWARs="true" autoDeploy="true"
    xmlValidation="false" xmlNamespaceAware="false">
    <!-- Defines a cluster for this node,
    By defining this element, means that every manager will be changed.
    So when running a cluster, only make sure that you have webapps in there
    that need to be clustered and remove the other ones.
    A cluster has the following parameters:
    className = the fully qualified name of the cluster class
    name = a descriptive name for your cluster, can be anything
    mcastAddr = the multicast address, has to be the same for all the nodes
    mcastPort = the multicast port, has to be the same for all the nodes
    mcastBindAddr = bind the multicast socket to a specific address
    mcastTTL = the multicast TTL if you want to limit your broadcast
    mcastSoTimeout = the multicast readtimeout
    mcastFrequency = the number of milliseconds in between sending a "I'm alive" heartbeat
    mcastDropTime = the number a milliseconds before a node is considered "dead" if no heartbeat is received
    tcpThreadCount = the number of threads to handle incoming replication requests, optimal would be the same amount of threads as nodes
    tcpListenAddress = the listen address (bind address) for TCP cluster request on this host,
    in case of multiple ethernet cards.
    auto means that address becomes
    InetAddress.getLocalHost().getHostAddress()
    tcpListenPort = the tcp listen port
    tcpSelectorTimeout = the timeout (ms) for the Selector.select() method in case the OS
    has a wakup bug in java.nio. Set to 0 for no timeout
    printToScreen = true means that managers will also print to std.out
    expireSessionsOnShutdown = true means that
    useDirtyFlag = true means that we only replicate a session after setAttribute,removeAttribute has been called.
    false means to replicate the session after each request.
    false means that replication would work for the following piece of code: (only for SimpleTcpReplicationManager)
    <%
    HashMap map = (HashMap)session.getAttribute("map");
    map.put("key","value");
    %>
    replicationMode = can be either 'pooled', 'synchronous' or 'asynchronous'.
    * Pooled means that the replication happens using several sockets in a synchronous way. Ie, the data gets replicated, then the request return. This is the same as the 'synchronous' setting except it uses a pool of sockets, hence it is multithreaded. This is the fastest and safest configuration. To use this, also increase the nr of tcp threads that you have dealing with replication.
    * Synchronous means that the thread that executes the request, is also the
    thread the replicates the data to the other nodes, and will not return until all
    nodes have received the information.
    * Asynchronous means that there is a specific 'sender' thread for each cluster node,
    so the request thread will queue the replication request into a "smart" queue,
    and then return to the client.
    The "smart" queue is a queue where when a session is added to the queue, and the same session
    already exists in the queue from a previous request, that session will be replaced
    in the queue instead of replicating two requests. This almost never happens, unless there is a
    large network delay.
    -->
    <!--
    When configuring for clustering, you also add in a valve to catch all the requests
    coming in, at the end of the request, the session may or may not be replicated.
    A session is replicated if and only if all the conditions are met:
    1. useDirtyFlag is true or setAttribute or removeAttribute has been called AND
    2. a session exists (has been created)
    3. the request is not trapped by the "filter" attribute
    The filter attribute is to filter out requests that could not modify the session,
    hence we don't replicate the session after the end of this request.
    The filter is negative, ie, anything you put in the filter, you mean to filter out,
    ie, no replication will be done on requests that match one of the filters.
    The filter attribute is delimited by ;, so you can't escape out ; even if you wanted to.
    filter=".*\.gif;.*\.js;" means that we will not replicate the session after requests with the URI
    ending with .gif and .js are intercepted.
    The deployer element can be used to deploy apps cluster wide.
    Currently the deployment only deploys/undeploys to working members in the cluster
    so no WARs are copied upons startup of a broken node.
    The deployer watches a directory (watchDir) for WAR files when watchEnabled="true"
    When a new war file is added the war gets deployed to the local instance,
    and then deployed to the other instances in the cluster.
    When a war file is deleted from the watchDir the war is undeployed locally
    and cluster wide
    -->
    <!--
    <Cluster className="org.apache.catalina.cluster.tcp.SimpleTcpCluster"
    managerClassName="org.apache.catalina.cluster.session.DeltaManager"
    expireSessionsOnShutdown="false"
    useDirtyFlag="true"
    notifyListenersOnReplication="true">
    <Membership
    className="org.apache.catalina.cluster.mcast.McastService"
    mcastAddr="228.0.0.4"
    mcastPort="45564"
    mcastFrequency="500"
    mcastDropTime="3000"/>
    <Receiver
    className="org.apache.catalina.cluster.tcp.ReplicationListener"
    tcpListenAddress="auto"
    tcpListenPort="4001"
    tcpSelectorTimeout="100"
    tcpThreadCount="6"/>
    <Sender
    className="org.apache.catalina.cluster.tcp.ReplicationTransmitter"
    replicationMode="pooled"
    ackTimeout="15000"/>
    <Valve className="org.apache.catalina.cluster.tcp.ReplicationValve"
    filter=".*\.gif;.*\.js;.*\.jpg;.*\.htm;.*\.html;.*\.txt;"/>
    <Deployer className="org.apache.catalina.cluster.deploy.FarmWarDeployer"
    tempDir="/tmp/war-temp/"
    deployDir="/tmp/war-deploy/"
    watchDir="/tmp/war-listen/"
    watchEnabled="false"/>
    </Cluster>
    -->
    <!-- Normally, users must authenticate themselves to each web app
    individually. Uncomment the following entry if you would like
    a user to be authenticated the first time they encounter a
    resource protected by a security constraint, and then have that
    user identity maintained across all web applications contained
    in this virtual host. -->
    <!--
    <Valve className="org.apache.catalina.authenticator.SingleSignOn" />
    -->
    <!-- Access log processes all requests for this virtual host. By
    default, log files are created in the "logs" directory relative to
    $CATALINA_HOME. If you wish, you can specify a different
    directory with the "directory" attribute. Specify either a relative
    (to $CATALINA_HOME) or absolute path to the desired directory.
    -->
    <!--
    <Valve className="org.apache.catalina.valves.AccessLogValve"
    directory="logs" prefix="localhost_access_log." suffix=".txt"
    pattern="common" resolveHosts="false"/>
    -->
    <!-- Access log processes all requests for this virtual host. By
    default, log files are created in the "logs" directory relative to
    $CATALINA_HOME. If you wish, you can specify a different
    directory with the "directory" attribute. Specify either a relative
    (to $CATALINA_HOME) or absolute path to the desired directory.
    This access log implementation is optimized for maximum performance,
    but is hardcoded to support only the "common" and "combined" patterns.
    -->
    <!--
    <Valve className="org.apache.catalina.valves.FastCommonAccessLogValve"
    directory="logs" prefix="localhost_access_log." suffix=".txt"
    pattern="common" resolveHosts="false"/>
    -->
    <Context path="/tdm" docBase="tdm" debug="0" reloadable="true" />
    </Host>
    </Engine>
    </Service>
    </Server>
    I have set the context path to /tdm in the server.xml file. Should this be placed in context.xml?
    My first page in the project is called Homepage.html. To start my project I give http://localhost:5050/tdm/homepage.html
    in a browser. Here I accept a username and password from the user and then do the validation in
    a valid.jsp file, where I connect to the database and check and use jsp:forward to go to next pages
    accordingly. However when I enter the username and password and click Go in the homepage, nothing is
    displayed on the next page. The URL in the browser says valid.jsp but a blank screen appears.
    WHY DOES IT HAPPEN SO? DOES IT MEAN THAT TOMCAT IS NOT RECOGNIZING JAVA IN MY SYSTEM OR IS IT A PROBLEM
    WITH THE DATABASE CONNECTION OR SOMETHING ELSE? I FEEL THAT TOMCAT IS NOT EXECUTING JSP COMMANDS?
    IS IT POSSIBLE?WHY WILL THIS HAPPEN?
    I set the JAVA_HOME and CATALINA_HOME environment to the jdk and tomcat folders resp.
    Is there any other thing that I need to set in classpath? Should I have my project as a
    WAR file in the webapps of TOMCAT or just a folder i.e. directory structure will fine?

    I am using Tomcat 5.5 and Jdk 1.5.0_12 and Oracle 10g. I am using jdbc-odbc bridge connection
    to connect to the database. I have placed my project folder called
    tdm under the webapps folder in Tomcat. This 'tdm' folder consists of
    a collection of html pages,jsp pages and images of my project. Also I created a
    WEB-INF folderand in that I have lib folder which contains catalina-root.jar
    , classes12.jar and nls_charset.jar files. And also in the WEB-INF folder I have the web.xml
    file which looks like this
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!--
    Copyright 2004 The Apache Software Foundation
    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at
    http://www.apache.org/licenses/LICENSE-2.0
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    -->
    <web-app>
    <resource-ref>
    <description>Oracle Datasource example</description>
    <res-ref-name>jdbc/gdn</res-ref-name>
    <res-type>javax.sql.DataSource</res-type>
    <res-auth>Container</res-auth>
    </resource-ref>
    </web-app>
    My Server.xml file in Tomcat\conf folder is as follows
    <!-- Example Server Configuration File -->
    <!-- Note that component elements are nested corresponding to their
    parent-child relationships with each other -->
    <!-- A "Server" is a singleton element that represents the entire JVM,
    which may contain one or more "Service" instances. The Server
    listens for a shutdown command on the indicated port.
    Note: A "Server" is not itself a "Container", so you may not
    define subcomponents such as "Valves" or "Loggers" at this level.
    -->
    <Server port="8005" shutdown="SHUTDOWN">
    <!-- Comment these entries out to disable JMX MBeans support used for the
    administration web application -->
    <Listener className="org.apache.catalina.mbeans.ServerLifecycleListener" />
    <Listener className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener" />
    <!-- Global JNDI resources -->
    <GlobalNamingResources>
    <!-- Test entry for demonstration purposes -->
    <Environment name="simpleValue" type="java.lang.Integer" value="30"/>
    <!-- Editable user database that can also be used by
    UserDatabaseRealm to authenticate users -->
    <Resource name="UserDatabase" auth="Container"
    type="org.apache.catalina.UserDatabase"
    description="User database that can be updated and saved"
    factory="org.apache.catalina.users.MemoryUserDatabaseFactory"
    pathname="conf/tomcat-users.xml" />
    <Resource name="jdbc/gdn" auth="Container"
    type="javax.sql.DataSource" driverClassName="sun.jdbc.odbc.JdbcOdbcDriver"
    url="jdbc:odbc:gdn"
    username="system" password="tiger" maxActive="20" maxIdle="10"
    maxWait="-1"/>
    </GlobalNamingResources>
    <!-- A "Service" is a collection of one or more "Connectors" that share
    a single "Container" (and therefore the web applications visible
    within that Container). Normally, that Container is an "Engine",
    but this is not required.
    Note: A "Service" is not itself a "Container", so you may not
    define subcomponents such as "Valves" or "Loggers" at this level.
    -->
    <!-- Define the Tomcat Stand-Alone Service -->
    <Service name="Catalina">
    <!-- A "Connector" represents an endpoint by which requests are received
    and responses are returned. Each Connector passes requests on to the
    associated "Container" (normally an Engine) for processing.
    By default, a non-SSL HTTP/1.1 Connector is established on port 8080.
    You can also enable an SSL HTTP/1.1 Connector on port 8443 by
    following the instructions below and uncommenting the second Connector
    entry. SSL support requires the following steps (see the SSL Config
    HOWTO in the Tomcat 5 documentation bundle for more detailed
    instructions):
    * If your JDK version 1.3 or prior, download and install JSSE 1.0.2 or
    later, and put the JAR files into "$JAVA_HOME/jre/lib/ext".
    * Execute:
    %JAVA_HOME%\bin\keytool -genkey -alias tomcat -keyalg RSA (Windows)
    $JAVA_HOME/bin/keytool -genkey -alias tomcat -keyalg RSA (Unix)
    with a password value of "changeit" for both the certificate and
    the keystore itself.
    By default, DNS lookups are enabled when a web application calls
    request.getRemoteHost(). This can have an adverse impact on
    performance, so you can disable it by setting the
    "enableLookups" attribute to "false". When DNS lookups are disabled,
    request.getRemoteHost() will return the String version of the
    IP address of the remote client.
    -->
    <!-- Define a non-SSL HTTP/1.1 Connector on port 8080 -->
    <Connector
    port="5050" maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
    enableLookups="false" redirectPort="8443" acceptCount="100"
    connectionTimeout="20000" disableUploadTimeout="true" />
    <!-- Note : To disable connection timeouts, set connectionTimeout value
    to 0 -->
         <!-- Note : To use gzip compression you could set the following properties :
                   compression="on"
                   compressionMinSize="2048"
                   noCompressionUserAgents="gozilla, traviata"
                   compressableMimeType="text/html,text/xml"
         -->
    <!-- Define a SSL HTTP/1.1 Connector on port 8443 -->
    <!--
    <Connector port="8443"
    maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
    enableLookups="false" disableUploadTimeout="true"
    acceptCount="100" scheme="https" secure="true"
    clientAuth="false" sslProtocol="TLS" />
    -->
    <!-- Define an AJP 1.3 Connector on port 8009 -->
    <Connector port="8009"
    enableLookups="false" redirectPort="8443" protocol="AJP/1.3" />
    <!-- Define a Proxied HTTP/1.1 Connector on port 8082 -->
    <!-- See proxy documentation for more information about using this. -->
    <!--
    <Connector port="8082"
    maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
    enableLookups="false" acceptCount="100" connectionTimeout="20000"
    proxyPort="80" disableUploadTimeout="true" />
    -->
    <!-- An Engine represents the entry point (within Catalina) that processes
    every request. The Engine implementation for Tomcat stand alone
    analyzes the HTTP headers included with the request, and passes them
    on to the appropriate Host (virtual host). -->
    <!-- You should set jvmRoute to support load-balancing via AJP ie :
    <Engine name="Standalone" defaultHost="localhost" jvmRoute="jvm1">
    -->
    <!-- Define the top level container in our container hierarchy -->
    <Engine name="Catalina" defaultHost="localhost">
    <!-- The request dumper valve dumps useful debugging information about
    the request headers and cookies that were received, and the response
    headers and cookies that were sent, for all requests received by
    this instance of Tomcat. If you care only about requests to a
    particular virtual host, or a particular application, nest this
    element inside the corresponding <Host> or <Context> entry instead.
    For a similar mechanism that is portable to all Servlet 2.4
    containers, check out the "RequestDumperFilter" Filter in the
    example application (the source for this filter may be found in
    "$CATALINA_HOME/webapps/examples/WEB-INF/classes/filters").
    Request dumping is disabled by default. Uncomment the following
    element to enable it. -->
    <!--
    <Valve className="org.apache.catalina.valves.RequestDumperValve"/>
    -->
    <!-- Because this Realm is here, an instance will be shared globally -->
    <!-- This Realm uses the UserDatabase configured in the global JNDI
    resources under the key "UserDatabase". Any edits
    that are performed against this UserDatabase are immediately
    available for use by the Realm. -->
    <Realm className="org.apache.catalina.realm.UserDatabaseRealm"
    resourceName="UserDatabase"/>
    <!-- Comment out the old realm but leave here for now in case we
    need to go back quickly -->
    <!--
    <Realm className="org.apache.catalina.realm.MemoryRealm" />
    -->
    <!-- Replace the above Realm with one of the following to get a Realm
    stored in a database and accessed via JDBC -->
    <!--
    <Realm className="org.apache.catalina.realm.JDBCRealm"
    driverName="org.gjt.mm.mysql.Driver"
    connectionURL="jdbc:mysql://localhost/authority"
    connectionName="test" connectionPassword="test"
    userTable="users" userNameCol="user_name" userCredCol="user_pass"
    userRoleTable="user_roles" roleNameCol="role_name" />
    -->
    <!--
    <Realm className="org.apache.catalina.realm.JDBCRealm"
    driverName="oracle.jdbc.driver.OracleDriver"
    connectionURL="jdbc:oracle:thin:@ntserver:1521:ORCL"
    connectionName="scott" connectionPassword="tiger"
    userTable="users" userNameCol="user_name" userCredCol="user_pass"
    userRoleTable="user_roles" roleNameCol="role_name" />
    -->
    <!--
    <Realm className="org.apache.catalina.realm.JDBCRealm"
    driverName="sun.jdbc.odbc.JdbcOdbcDriver"
    connectionURL="jdbc:odbc:CATALINA"
    userTable="users" userNameCol="user_name" userCredCol="user_pass"
    userRoleTable="user_roles" roleNameCol="role_name" />
    -->
    <!-- Define the default virtual host
    Note: XML Schema validation will not work with Xerces 2.2.
    -->
    <Host name="localhost" appBase="webapps"
    unpackWARs="true" autoDeploy="true"
    xmlValidation="false" xmlNamespaceAware="false">
    <!-- Defines a cluster for this node,
    By defining this element, means that every manager will be changed.
    So when running a cluster, only make sure that you have webapps in there
    that need to be clustered and remove the other ones.
    A cluster has the following parameters:
    className = the fully qualified name of the cluster class
    name = a descriptive name for your cluster, can be anything
    mcastAddr = the multicast address, has to be the same for all the nodes
    mcastPort = the multicast port, has to be the same for all the nodes
    mcastBindAddr = bind the multicast socket to a specific address
    mcastTTL = the multicast TTL if you want to limit your broadcast
    mcastSoTimeout = the multicast readtimeout
    mcastFrequency = the number of milliseconds in between sending a "I'm alive" heartbeat
    mcastDropTime = the number a milliseconds before a node is considered "dead" if no heartbeat is received
    tcpThreadCount = the number of threads to handle incoming replication requests, optimal would be the same amount of threads as nodes
    tcpListenAddress = the listen address (bind address) for TCP cluster request on this host,
    in case of multiple ethernet cards.
    auto means that address becomes
    InetAddress.getLocalHost().getHostAddress()
    tcpListenPort = the tcp listen port
    tcpSelectorTimeout = the timeout (ms) for the Selector.select() method in case the OS
    has a wakup bug in java.nio. Set to 0 for no timeout
    printToScreen = true means that managers will also print to std.out
    expireSessionsOnShutdown = true means that
    useDirtyFlag = true means that we only replicate a session after setAttribute,removeAttribute has been called.
    false means to replicate the session after each request.
    false means that replication would work for the following piece of code: (only for SimpleTcpReplicationManager)
    <%
    HashMap map = (HashMap)session.getAttribute("map");
    map.put("key","value");
    %>
    replicationMode = can be either 'pooled', 'synchronous' or 'asynchronous'.
    * Pooled means that the replication happens using several sockets in a synchronous way. Ie, the data gets replicated, then the request return. This is the same as the 'synchronous' setting except it uses a pool of sockets, hence it is multithreaded. This is the fastest and safest configuration. To use this, also increase the nr of tcp threads that you have dealing with replication.
    * Synchronous means that the thread that executes the request, is also the
    thread the replicates the data to the other nodes, and will not return until all
    nodes have received the information.
    * Asynchronous means that there is a specific 'sender' thread for each cluster node,
    so the request thread will queue the replication request into a "smart" queue,
    and then return to the client.
    The "smart" queue is a queue where when a session is added to the queue, and the same session
    already exists in the queue from a previous request, that session will be replaced
    in the queue instead of replicating two requests. This almost never happens, unless there is a
    large network delay.
    -->
    <!--
    When configuring for clustering, you also add in a valve to catch all the requests
    coming in, at the end of the request, the session may or may not be replicated.
    A session is replicated if and only if all the conditions are met:
    1. useDirtyFlag is true or setAttribute or removeAttribute has been called AND
    2. a session exists (has been created)
    3. the request is not trapped by the "filter" attribute
    The filter attribute is to filter out requests that could not modify the session,
    hence we don't replicate the session after the end of this request.
    The filter is negative, ie, anything you put in the filter, you mean to filter out,
    ie, no replication will be done on requests that match one of the filters.
    The filter attribute is delimited by ;, so you can't escape out ; even if you wanted to.
    filter=".*\.gif;.*\.js;" means that we will not replicate the session after requests with the URI
    ending with .gif and .js are intercepted.
    The deployer element can be used to deploy apps cluster wide.
    Currently the deployment only deploys/undeploys to working members in the cluster
    so no WARs are copied upons startup of a broken node.
    The deployer watches a directory (watchDir) for WAR files when watchEnabled="true"
    When a new war file is added the war gets deployed to the local instance,
    and then deployed to the other instances in the cluster.
    When a war file is deleted from the watchDir the war is undeployed locally
    and cluster wide
    -->
    <!--
    <Cluster className="org.apache.catalina.cluster.tcp.SimpleTcpCluster"
    managerClassName="org.apache.catalina.cluster.session.DeltaManager"
    expireSessionsOnShutdown="false"
    useDirtyFlag="true"
    notifyListenersOnReplication="true">
    <Membership
    className="org.apache.catalina.cluster.mcast.McastService"
    mcastAddr="228.0.0.4"
    mcastPort="45564"
    mcastFrequency="500"
    mcastDropTime="3000"/>
    <Receiver
    className="org.apache.catalina.cluster.tcp.ReplicationListener"
    tcpListenAddress="auto"
    tcpListenPort="4001"
    tcpSelectorTimeout="100"
    tcpThreadCount="6"/>
    <Sender
    className="org.apache.catalina.cluster.tcp.ReplicationTransmitter"
    replicationMode="pooled"
    ackTimeout="15000"/>
    <Valve className="org.apache.catalina.cluster.tcp.ReplicationValve"
    filter=".*\.gif;.*\.js;.*\.jpg;.*\.htm;.*\.html;.*\.txt;"/>
    <Deployer className="org.apache.catalina.cluster.deploy.FarmWarDeployer"
    tempDir="/tmp/war-temp/"
    deployDir="/tmp/war-deploy/"
    watchDir="/tmp/war-listen/"
    watchEnabled="false"/>
    </Cluster>
    -->
    <!-- Normally, users must authenticate themselves to each web app
    individually. Uncomment the following entry if you would like
    a user to be authenticated the first time they encounter a
    resource protected by a security constraint, and then have that
    user identity maintained across all web applications contained
    in this virtual host. -->
    <!--
    <Valve className="org.apache.catalina.authenticator.SingleSignOn" />
    -->
    <!-- Access log processes all requests for this virtual host. By
    default, log files are created in the "logs" directory relative to
    $CATALINA_HOME. If you wish, you can specify a different
    directory with the "directory" attribute. Specify either a relative
    (to $CATALINA_HOME) or absolute path to the desired directory.
    -->
    <!--
    <Valve className="org.apache.catalina.valves.AccessLogValve"
    directory="logs" prefix="localhost_access_log." suffix=".txt"
    pattern="common" resolveHosts="false"/>
    -->
    <!-- Access log processes all requests for this virtual host. By
    default, log files are created in the "logs" directory relative to
    $CATALINA_HOME. If you wish, you can specify a different
    directory with the "directory" attribute. Specify either a relative
    (to $CATALINA_HOME) or absolute path to the desired directory.
    This access log implementation is optimized for maximum performance,
    but is hardcoded to support only the "common" and "combined" patterns.
    -->
    <!--
    <Valve className="org.apache.catalina.valves.FastCommonAccessLogValve"
    directory="logs" prefix="localhost_access_log." suffix=".txt"
    pattern="common" resolveHosts="false"/>
    -->
    <Context path="/tdm" docBase="tdm" debug="0" reloadable="true" />
    </Host>
    </Engine>
    </Service>
    </Server>
    I have set the context path to /tdm in the server.xml file. Should this be placed in context.xml?
    My first page in the project is called Homepage.html. To start my project I give http://localhost:5050/tdm/homepage.html
    in a browser. Here I accept a username and password from the user and then do the validation in
    a valid.jsp file, where I connect to the database and check and use jsp:forward to go to next pages
    accordingly. However when I enter the username and password and click Go in the homepage, nothing is
    displayed on the next page. The URL in the browser says valid.jsp but a blank screen appears.
    WHY DOES IT HAPPEN SO? DOES IT MEAN THAT TOMCAT IS NOT RECOGNIZING JAVA IN MY SYSTEM OR IS IT A PROBLEM
    WITH THE DATABASE CONNECTION OR SOMETHING ELSE? I FEEL THAT TOMCAT IS NOT EXECUTING JSP COMMANDS?
    IS IT POSSIBLE?WHY WILL THIS HAPPEN?
    I set the JAVA_HOME and CATALINA_HOME environment to the jdk and tomcat folders resp.
    Is there any other thing that I need to set in classpath? Should I have my project as a
    WAR file in the webapps of TOMCAT or just a folder i.e. directory structure will fine?

  • Installation problem with Siebel8.0 on Oracle Enterprise Linux 4 system

    We are having installation problem with Siebel8.0 on Oracle Enterprise Linux 4 system.
    Using interface, when installation come up to “Installing Wizard” window where Gateway Name Server Configuration window should take place, everything just freeze up
    Using console, after installation we obtain following errors:
    Installing Siebel Enterprise Server. Please wait...
    unable to launch: "ksh export
    LD_LIBRARY_PATH=/siebel/gtwysrvr/lib;PATH=${PATH}:.;/root/istemp8058094162222/_bundledJRE_/bin/java
    -Dtemp.dir=/root -cp /siebel/gtwysrvr/bin/setup.jar run -args LANG=ENU
    MODE=LIVE MODEL_FILE=/siebel/gtwysrvr/admin/enterprise_console.scm" error code:
    "236"(SBL-STJ-00152)
    LD_LIBRARY_PATH=/siebel/siebsrvr/lib;PATH=${PATH}:.;/root/istemp8058094162222/_bundledJRE_/bin/java
    -Dtemp.dir=/root -cp /siebel/siebsrvr/bin/setup.jar run -args LANG=ENU
    REPEAT=FALSE MODE=LIVE MODEL_FILE=/siebel/siebsrvr/admin/siebel_server.scm"
    error code: "236"(SBL-STJ-00152)
    LD_LIBRARY_PATH=/siebel/siebsrvr/mgmtagent/lib;PATH=${PATH}:.;/root/istemp8058094162222/_bundledJRE_/bin/java
    -Dtemp.dir=/root -cp /siebel/siebsrvr/mgmtagent/bin/setup.jar run -args
    LANG=ENU MODE=LIVE
    MODEL_FILE=/siebel/siebsrvr/mgmtagent/admin/mgmtagent_ses.scm" error code:
    "236"(SBL-STJ-00152)
    Running command :
    ./ssincfgw -is:javaconsole -console -args LANG=ENU MODE=LIVE MODEL_FILE=/siebel/gtwysrvr/admin/enterprise_console.scm
    Infinite loop of following error pops out:
    An error occurred during wizard bean change notification:
    java.lang.NoClassDefFoundError
    at ConfigInitialize.execute(ConfigInitialize.java:21)
    at com.installshield.wizard.StandardWizardListener.execute(StandardWizardListener.java:123)
    Is there any clue how this error can be solved??
    Thanks in advance!!
    Gordon
    Message was edited by:
    user605023

    I'm facing the same error message while install Siebel 8.0 on OEL. But before I had this ksh problem, it complains about disc space first, and I actually has plenty of disk space under the directory (it needs only 0.7 G and I have 17G free). Anybody has encountered such problem before?
    /net/sdcnas05/vol/engfs01/v_sia/8.0SIA[20405|http://forums.oracle.com/forums/]/Release/Linux/Server/Siebel_Enterprise_Server
    -bash-3.00$ ./setuplinux -is:javaconsole -console
    Initializing InstallShield Wizard........
    Initializing InstallShield Wizard........
    Launching InstallShield Wizard........
    0% 25% 50% 75% 100%
    Welcome to the InstallShield Wizard for Siebel Enterprise Server
    The InstallShield Wizard will install Siebel Enterprise Server on your
    computer.
    To continue, choose Next.
    Siebel Enterprise Server
    Siebel Systems
    Press 1 for Next, 3 to Cancel or 4 to Redisplay [1]
    Siebel Enterprise Server Install Location
    Please specify a directory or press Enter to accept the default directory.
    Directory Name: [siebel] /slot/ems1115/appmgr/20405
    Press 1 for Next, 2 for Previous, 3 to Cancel or 4 to Redisplay [1]
    Please select the products you wish to install.
    [ ] 1 - Gateway Name Server
    [ ] 2 - Siebel Server
    [ ] 3 - Database Configuration Utilities
    [ ] 4 - EAI Connectors
    To select an item enter its number, or 0 when you are finished: [0]: 1
    [X] 1 - Gateway Name Server
    [ ] 2 - Siebel Server
    [ ] 3 - Database Configuration Utilities
    [ ] 4 - EAI Connectors
    To select an item enter its number, or 0 when you are finished: [0]: 2
    [X] 1 - Gateway Name Server
    [X] 2 - Siebel Server
    [ ] 3 - Database Configuration Utilities
    [ ] 4 - EAI Connectors
    To select an item enter its number, or 0 when you are finished: [0]:
    Press 1 for Next, 2 for Previous, 3 to Cancel or 4 to Redisplay [1]
    Configuring uninstallers. Please wait...
    0% 25% 50% 75% 100%
    Choose the setup type that best suits your needs.
    [X] 1 - Typical
    [ ] 2 - Compact
    [ ] 3 - Custom
    To select an item enter its number, or 0 when you are finished: [0]
    Press 1 for Next, 2 for Previous, 3 to Cancel or 4 to Redisplay [1]
    Please select the languages you wish to install.
    [X] 1 - enu - English (American)
    [ ] 2 - fin - Finnish
    [ ] 3 - kor - Korean
    [ ] 4 - cht - Chinese (Traditional)
    [ ] 5 - ita - Italian (Standard)
    [ ] 6 - esn - Spanish (Modern)
    [ ] 7 - deu - German (Standard)
    [ ] 8 - chs - Chinese (Simplified)
    [ ] 9 - tha - Thai
    [ ] 10 - dan - Danish
    [ ] 11 - heb - Hebrew
    [ ] 12 - fra - French (Standard)
    [ ] 13 - nld - Dutch (Standard)
    [ ] 14 - ptb - Portuguese (Brazilian)
    [ ] 15 - csy - Czech
    [ ] 16 - jpn - Japanese
    [ ] 17 - ptg - Portuguese (Standard)
    [ ] 18 - ara - Arabic (Sa`udi)
    [ ] 19 - sve - Swedish
    To select an item enter its number, or 0 when you are finished: [0]
    Press 1 for Next, 2 for Previous, 3 to Cancel or 4 to Redisplay [1]
    {color:#ff0000}*Drive "/slot/ems1115/appmgr/20405" does not have enough space to install the*
    selected configuration. Please free up "766446" KB on drive
    *"/slot/ems1115/appmgr/20405" before continuing.*{color}
    -bash-3.00$ pwd
    /slot/ems1115/appmgr/20405
    -bash-3.00$ df -h .
    Filesystem Size Used Avail Use% Mounted on
    sdc1002nap-vlan1:/vol/ems_39426_1115
    71G 55G 17G 77% /slot/ems1115

  • Problem with include and relative path in jsp

    Precompile jsp with wlappc in 9.2, I got the error "The include file was not found" when the jsp use <%@ include file="../includes/dataEntry/code_error.html" %>
              This code used to work with 8.1. I notice that someone has report the same problem with 9.0 and you have patch for it. Is it fix in 9.2 or do I require a patch as well?
              Thanks,
              Khuemy

    When you precompile, can you say "Keepgenerated=TRUE". It might help you track
              down the difference with the URL. You should only get a 404 error when the
              resource is not found at runtime, which is independant of when you compile. The
              difference should be in how the URL is compiled.
              Chris
              ali wrote:
              > I am using WLS 6.0 SP1, when I use relative path in <jsp:forward> in my JSPs
              > it forwards ok if I am using directly JSPs but if I am using pre-compiled
              > JSPs (and have proper servlet-mappings
              > in my web.xml), I get 404 error with the relative-path, if I change it to
              > absolute path with pre-compiled JSPs it forwards ok , then.
              > any ideas why this is so?
              > thanks,
              

  • Having a problem with creating/using a primary key on a view

    I have a problem with a primary key on a view
    I created the view and primary key as follows:
    CREATE OR REPLACE FORCE VIEW "MDD"."ROCK_LU" ("DESCRIPTION",
         UNIQUE ("DESCRIPTION") RELY DISABLE,
         CONSTRAINT "ROCK_LU_PK" PRIMARY KEY ("DESCRIPTION") RELY DISABLE) AS
    SELECT DESCRIPTION
    FROM MRMC_LU
    WHERE ROCK = 'T';
    The view with the primary key appears to have been created as there were no error messages. (The above was from the sql tab in sql developer.)
    When I try to create the foreign key on my mdd_hr table - I get an error
    /* hr_name - foreign key */
    ALTER TABLE mdd_hr add CONSTRAINT hr_name_fk FOREIGN KEY (hr_name) REFERENCES rock_lu(description);
    Error report:
    SQL Error: ORA-02270: no matching unique or primary key for this column-list.
    When I lookup the index in sql developer, rock_lu_pk is not there.
    All my other foreign keys work - but I don't understand what I am doing wrong with this one. Please help.
    glenn
    Background - as to why I want to use a view as a lookup table.
    The MRMC_LU table that the view is created from is structured like:
    DESCRIPTION - MINERAL - ROCK - MODIFIER - COMMODITY
    ANHYDRITE - T - T - T
    APLITE - T - - T
    GRAPHITE - T - - - T
    GREYWACKE - - T
    DESCRIPTION is a list of all names of minerals, rocks, modifiers and commodities. T is entered in each valid field. Often a description name is used for both a mineral and a rock or a mineral and a commodity or any other combination. Because this database is just starting up, it was more efficient to create one table that could be updated (and thereby automatically update the MINERAL_LU, ROCK_LU, MODIFIER_LY, COMMODITY_LU views) rather than create and maintain four separate but similar tables. A primary key cannot be generated for the MRMC_LU table as there are nulls in each column
    except DESCRIPTION.
    Perhaps there is a smarter way to do this?

    http://download-uk.oracle.com/docs/cd/B10501_01/server.920/a96540/statements_85a.htm#2065512
    You can specify constraints on views and object views. You define the constraint at the view level using the out_of_line_constraint clause. You define the constraint as part of column or attribute specification using the inline_constraint clause after the appropriate alias.
    Oracle does not enforce view constraints. However, operations on views are subject to the integrity constraints defined on the underlying base tables. This means that you can enforce constraints on views through constraints on base tables.
    Restrictions on View Constraints
    View constraints are a subset of table constraints and are subject to the following restrictions:
    You can specify only unique, primary key, and foreign key constraints on views. However, you can define the view using the WITH CHECK OPTION clause, which is equivalent to specifying a check constraint for the view.
    Because view constraints are not enforced directly, you cannot specify INITIALLY DEFERRED or DEFERRABLE.
    View constraints are supported only in DISABLE NOVALIDATE mode. You must specify the keywords DISABLE NOVALIDATE when you declare the view constraint, and you cannot specify any other mode.
    You cannot specify the using_index_clause, the exceptions_clause clause, or the ON DELETE clause of the references_clause.
    You cannot define view constraints on attributes of an object column.
    Rgds.

  • Problem with scanning in Photoshop CS6 after upgrading to Mountain Lion

    After upgrading to latest version of Mountain Lion i've got a problem with scanning directly into Photoshop CS6.
    on the previous Lion version when I wanted to scan something, i just opened Photoshop -> File -> Import -> images from device
    then a new window opened up the ImageCapture app where I could choose the device I wanted to use, and then I selected the scanner (Canon CanoScan 8400F) and I could scan directly into photoshop.
    Now with Mountain Lion when I do the exact same thing, it opens a window, but it's impossible to select any device, as the new window is just a plain white window, with 2 buttons on top to rotate something that isn't there. (text is in dutch, cause I'm from the Netherlands)
    hope someone can help me out.
    I can scan with the use of the ImageCapture app without problems and then save that picture and open it in Photoshop, but it has worked before, so am I doing something wrong? or is this just a little bug
    thnx in advance for the help

    I’m having the same problem with my Epson Perfection 3200 Photo scanner and Adobe Photoshop CS6. It does the initial overview scan then I get the same blank window as BigNoud shows above. I've done a Software Update and have also updated OSX to 10.8.1.
    I know for the Epson you can get a Mountain Lion compatible scan software from SilverFast for about $35.00 as an upgrade here.
    I haven't gone that route yet as I don't want to give up any more money for my Apple/Adobe experience.
    Any help would be appreciated.

  • Problem with socket permissions!

    Hi All!
    I'm developing an applet that displays an image after downlading it from a server; this server is different from the server I download the applet from, so I have problems with security. In fact I get the following exception:
    java.security.AccessControlException: access denied (java.net.SocketPermission 172.16.1.22:8080 connect,resolve)
    I'm using:
    - Java Plugin 1.3;
    - Netscape 7.0;
    - IE 6;
    I've tried to self-sign the applet but with no results (maybe I cannot use selfsigned certificate with java plugin 1.3);
    After that I've created a new policy file ("MyPolicy" file)and mentioned it into:
    C:\Program Files\JavaSoft\JRE\1.3.1_03\lib\security\java.policy
    but it didn't resolve my problem (maybe I'm doing something wrong in creating my policy file??!!).
    Which steps do I have to follow in order to make my applet connect to images server without security problems?
    Thanks so much in advance,
    Carlo

    1.     Compile the applet
    2.     Create a JAR file
    3.     Generate Keys
    4.     Sign the JAR file
    5.     Export the Public Key Certificate
    6.     Import the Certificate as a Trusted Certificate
    7.     Create the policy file
    8.     Run the applet
    Susan
    Susan bundles the applet executable in a JAR file, signs the JAR file, and exports the public key certificate.
    1.     Compile the Applet
    In her working directory, Susan uses the javac command to compile the SignedAppletDemo.java class. The output from the javac command is the SignedAppletDemo.class.
    javac SignedAppletDemo.java
    2.     Make a JAR File
    Susan then makes the compiled SignedAppletDemo.class file into a JAR file. The -cvf option to the jar command creates a new archive (c), using verbose mode (v), and specifies the archive file name (f). The archive file name is SignedApplet.jar.
    jar cvf SignedApplet.jar SignedAppletDemo.class
    3.     Generate Keys
    Susan creates a keystore database named susanstore that has an entry for a newly generated public and private key pair with the public key in a certificate. A JAR file is signed with the private key of the creator of the JAR file and the signature is verified by the recipient of the JAR file with the public key in the pair. The certificate is a statement from the owner of the private key that the public key in the pair has a particular value so the person using the public key can be assured the public key is authentic. Public and private keys must already exist in the keystore database before jarsigner can be used to sign or verify the signature on a JAR file.
    In her working directory, Susan creates a keystore database and generates the keys:
    keytool -genkey -alias signFiles -keystore susanstore -keypass kpi135 -dname "cn=jones" -storepass ab987c
    This keytool -genkey command invocation generates a key pair that is identified by the alias signFiles. Subsequent keytool command invocations use this alias and the key password (-keypass kpi135) to access the private key in the generated pair.
    The generated key pair is stored in a keystore database called susanstore (-keystore susanstore) in the current directory, and accessed with the susanstore password (-storepass ab987c).
    The -dname "cn=jones" option specifies an X.500 Distinguished Name with a commonName (cn) value. X.500 Distinguished Names identify entities for X.509 certificates.
    You can view all keytool options and parameters by typing:
    keytool -help
    4.     Sign the JAR File
    JAR Signer is a command line tool for signing and verifying the signature on JAR files. In her working directory, Susan uses jarsigner to make a signed copy of the SignedApplet.jar file.
    jarsigner -keystore susanstore -storepass ab987c -keypass kpi135 -signedjar SSignedApplet.jar SignedApplet.jar signFiles
    The -storepass ab987c and -keystore susanstore options specify the keystore database and password where the private key for signing the JAR file is stored. The -keypass kpi135 option is the password to the private key, SSignedApplet.jar is the name of the signed JAR file, and signFiles is the alias to the private key. jarsigner extracts the certificate from the keystore whose entry is signFiles and attaches it to the generated signature of the signed JAR file.
    5.     Export the Public Key Certificate
    The public key certificate is sent with the JAR file to the whoever is going to use the applet. That person uses the certificate to authenticate the signature on the JAR file. To send a certificate, you have to first export it.
    The -storepass ab987c and -keystore susanstore options specify the keystore database and password where the private key for signing the JAR file is stored. The -keypass kpi135 option is the password to the private key, SSignedApplet.jar is the name of the signed JAR file, and signFiles is the alias to the private key. jarsigner extracts the certificate from the keystore whose entry is signFiles and attaches it to the generated signature of the signed JAR file.
    5: Export the Public Key Certificate
    The public key certificate is sent with the JAR file to the whoever is going to use the applet. That person uses the certificate to authenticate the signature on the JAR file. To send a certificate, you have to first export it.
    In her working directory, Susan uses keytool to copy the certificate from susanstore to a file named SusanJones.cer as follows:
    keytool -export -keystore susanstore -storepass ab987c -alias signFiles -file SusanJones.cer
    Ray
    Ray receives the JAR file from Susan, imports the certificate, creates a policy file granting the applet access, and runs the applet.
    6.     Import Certificate as a Trusted Certificate
    Ray has received SSignedApplet.jar and SusanJones.cer from Susan. He puts them in his home directory. Ray must now create a keystore database (raystore) and import the certificate into it. Ray uses keytool in his home directory /home/ray to import the certificate:
    keytool -import -alias susan -file SusanJones.cer -keystore raystore -storepass abcdefgh
    7.     Create the Policy File
    The policy file grants the SSignedApplet.jar file signed by the alias susan permission to create newfile (and no other file) in the user's home directory.
    Ray creates the policy file in his home directory using either policytool or an ASCII editor.
    keystore "/home/ray/raystore";
    // A sample policy file that lets a JavaTM program
    // create newfile in user's home directory
    // Satya N Dodda
    grant SignedBy "susan"
         permission java.security.AllPermission;
    8.     Run the Applet in Applet Viewer
    Applet Viewer connects to the HTML documents and resources specified in the call to appletviewer, and displays the applet in its own window. To run the example, Ray copies the signed JAR file and HTML file to /home/aURL/public_html and invokes Applet viewer from his home directory as follows:
    Html code :
    </body>
    </html>
    <OBJECT classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"
    width="600" height="400" align="middle"
    codebase="http://java.sun.com/products/plugin/1.3/jinstall-13-win32.cab#Version=1,3,1,2">
    <PARAM NAME="code" VALUE="SignedAppletDemo.class">
    <PARAM NAME="archive" VALUE="SSignedApplet.jar">
    <PARAM NAME="type" VALUE="application/x-java-applet;version=1.3">
    </OBJECT>
    </body>
    </html>
    appletviewer -J-Djava.security.policy=Write.jp
    http://aURL.com/SignedApplet.html
    Note: Type everything on one line and put a space after Write.jp
    The -J-Djava.security.policy=Write.jp option tells Applet Viewer to run the applet referenced in the SignedApplet.html file with the Write.jp policy file.
    Note: The Policy file can be stored on a server and specified in the appletviewer invocation as a URL.
    9.     Run the Applet in Browser
    Download JRE 1.3 from Javasoft

  • Problem with importing and creating self signed SSL certificate

    Mac Pro, 10.7.2 Server.  Attempting to import or create a self signed certificate for use as ichat.domain.com to encrypt iChat service.  Server is acutally called server.domain.com but has an alias of ichat.domain.com.  I understand that this is probably not best practice but I would like to keep things this way since we have one server, run multiple services on it, but want to continue to connect to each service at SERVICE.domain.com.  We have been using this type of mismatched certificate with success since 10.4 or so.
    I am working through setup of 10.7 Server to replace our 10.6 server. 
    Tried upgrade of 10.6 to 10.7 installation.  The installation made a mess of some services and our Open Directory, but did move the certificate over and allowed iChat service to function properly.
    Clean install and setup of 10.7 Server.  Exported self signed certificate, private key, and encryption password from 10.6 Server and functioning 10.7 upgraded Server.
    On import or manual creation of certificate get the following error:
    Error
    Check your server's logs for more information.  The error (code 5001) was: Expected SecKeychainItemImport to return a SecIdentityRef, but it did not
    Log shows:
    Dec 29 17:56:55 server servermgrd[498]: -[CertsRequestHandler(HelperAdditions) importP12Data:passphrase:error:]: importedItems = (
                  "<SecCertificate 0x7fcf6ed43c00 [0x7fff78d96f40]>"
    I have tried importing and manually creating other certificates with a variety of names with success.  I assume that there is something buried somewhere that is causing this particular one to be a problem.  Other than manually removing any remnants of the certificate from /etc/certficates I do not have any ideas what to try.  I am essentially ready to move this server to 10.7 except for this problem and would like to avoid a reinstall.
    Suggestions?
    -Erich

    Take a look here.
    https://bbs.archlinux.org/viewtopic.php?id=146649
    Maybe it's a problem with your network.

  • Problem with connector for ABAP Webdynpro

    Hello,
    I have a problem with a new Business Package :
    Portal Runtime Error
    An exception occurred while processing a request for :
    iView : pcd:portal_content/com.sap.pct/specialist/com.sap.pct.erp.instructor.bp_folder/com.sap.pct.erp.instructor.roles/com.sap.pct.erp.instructor.instructor/com.sap.pct.erp.instructor.instructor/overview/com.sap.pct.erp.instructor.work_overview/com.sap.pct.erp.instructor.work_overview/com.sap.pct.erp.instructor.instructor_worklist
    Component Name : com.sap.portal.appintegrator.sap.WebDynpro
    I think the problem is coming that I have no customized the connector with good values. Do you know a good blog or document to create a system alias dedicated to abap wedynpro or its bsp ?
    Regards,

    Yes, the UserId is the same in the portal and the BackEnd.
    Previously we used the ITS for our ESS and now we are using the Portal, so all have an UserId and all personal have the same Id as before.
    The first month it worked fine but when the password went out, in Back End, after 30 days, the question for login information appeared.
    Regards
    Ingvar

Maybe you are looking for

  • Creative cloud desktop opens but does nothing remains empty

    When i tried to use creative cloud desktop it opens and the icon remains in grey the config menu is log out, open in new window, help thats all it does after opening a loading gif appears for several seconds and then disapears but nothing happens rem

  • DVD Studio Pro won't accept my H.264 QT asset

    Hi, I want to import my HDV 1080i FCP project into DVD Studio Pro v.4.2.1 to create a SD Disc. I exported the FCP project in Compressor using H.264 10.3mbps in the HD DVD: H.264 60 minutes folder. I was able to import the audio asset but not the vide

  • Craigslist verify emails not coming in to iCloud Mail accounts

    Hello, I edited a Cragslist Posting Monday and again most recently a little while ago today.  Both times it said it would email a link to me to confirm the changes and to post the modified ad, and Craigslist is saying the verify emails went out. In b

  • INVENTORY REPORTS

    Hi, I want a report to view obsolete inventory, slow moving  inventory and inventory turns.

  • BAPI for release strategy

    Hi Guys I need know one bapi for release strategy. Anybody can help me? Thanks Comunitty.