Sponsored Content
Special Forums UNIX and Linux Applications Middleware Documentation and logs Post 303009384 by am115998 on Wednesday 13th of December 2017 07:51:48 PM
Old 12-13-2017
Hi alexcol
I support a development environment for a complex software product that uses a number of different Web Apps Servers (WAS) - WebSphere or WebLogic or JBoss. In addition customers customise things by adding e.g. Tomcat servers or Jasper Reports servers etc. to meet their reporting needs.
The short answer is that you will have to dig around.
Sorry - each WAS vendor is different. Finding the log files and parsing their content for meaningful status information is a non-trivial task which requires planning and thus, demands input from the user base.
 

4 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Shell Script for remote Middleware

Hi Experts, :confused: I need help in one of my bit complicated script (for me complicated for experts like you might be simple). I have 100+ Middleware servers and 200+ DB servers and 200+ application servers in my environment. What I’m looking is I have a script ready sitting on one JUMP... (12 Replies)
Discussion started by: shiv2001in
12 Replies

2. HP-UX

Listing Middleware

I want to know if a server has J2EE application server installed, a webserver or any other middleware, is there a command to output a list or something like that. Thak you (1 Reply)
Discussion started by: eponcedeleonc
1 Replies

3. UNIX and Linux Applications

UNIX and Linux authentication middleware or tools

Hi, We are looking for UNIX and Linux authentication middleware/tools which can replace our existing RSA SecurID - Two-Factor Authentication. Any suggestions or recommendations. Thanks, Gabar (2 Replies)
Discussion started by: Gabar Singh
2 Replies

4. Shell Programming and Scripting

If I ran perl script again,old logs should move with today date and new logs should generate.

Appreciate help for the below issue. Im using below code.....I dont want to attach the logs when I ran the perl twice...I just want to take backup with today date and generate new logs...What I need to do for the below scirpt.............. 1)if logs exist it should move the logs with extention... (1 Reply)
Discussion started by: Sanjeev G
1 Replies
Plack::Middleware::File::Sass(3pm)			User Contributed Perl Documentation			Plack::Middleware::File::Sass(3pm)

NAME
Plack::Middleware::File::Sass - Sass and SCSS support for all Plack frameworks SYNOPSIS
use Plack::App::File; use Plack::Builder; builder { mount "/stylesheets" => builder { enable "File::Sass"; Plack::App::File->new(root => "./stylesheets"); }; }; # Or with Middleware::Static enable "File::Sass", syntax => "scss"; enable "Static", path => qr/.css$/, root => "./static"; DESCRIPTION
Plack::Middleware::File::Sass is a Plack middleware component that works with Plack::App::File or Plack::Middleware::Static to compile Sass <http://sass-lang.com/> templates into CSS stylesheet in every request. When a request comes in for .css file, this middleware changes the internal path to .sass or .scss, depending on the configuration, in the same directory. If the Sass template is found, a new CSS stylesheet is built on memory and served to the browsers. Otherwise, it falls back to the original .css file in the directory. This middleware should be very handy for the development. While Sass to CSS rendering is reasonably fast, for the production environment you might want to precompile Sass templates to CSS files on disk and serves them with a real web server like nginx or lighttpd. SASS BACKENDS
If you have the sass gem version higher than 3 installed and have the "sass" executable available in your PATH, this module automatically uses the command to convert Sass or SCSS into CSS. If the command is not available and you have Text::Sass perl module available, it will be used. Otherwise you'll get an exception during the initialization of this middleware component. OPTIONS
syntax Defines which syntax to use. Valid values are sass and scss. Defaults to sass. AUTHOR
Tatsuhiko Miyagawa <miyagawa@bulknews.net> LICENSE
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. SEE ALSO
Plack::App::File Text::Sass http://sass-lang.com/ <http://sass-lang.com/> perl v5.12.4 2011-02-14 Plack::Middleware::File::Sass(3pm)
All times are GMT -4. The time now is 06:07 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy