Displayed Telnet ID

Dear all,
Anyone know how to remove the display of userid at telnet/rlogin login (like the password=> you type it, but nothing displayed)
Thank you in advance,
Benoit Tomson

What are you trying to accomplish?

Similar Messages

  • Telnet has garbled display when I type

    When I'm typing commands in to Telnet they're coming back with an echo type of display and it doesn't always make sense. It can skip characters or I can type too fast and they will display out of order.
    Example:
    I type SET ?
    I see SEST ET ?? or something like that.
    All commands in Telnet work though, just the display is bad. Is there a way to turn the echo off?
    Thanks, Jake

    Hello Jake,
    It looks as if you have your local echo turned on. This means that your own computer is also echoing back what you type on the screen. This can be switched off as the remote host also sends any character back that it receives. That's why you are seeing all characters twice.
    I cannot give you specific hints about turning local echo off. The exact setting depends on your telnet emulation but when you walk through the menu's, you should find it somewhere.
    Regards,
    Leo

  • No debug output displayed on 3745 while SSH or Telnet

    IOS 12.3(4)T4 on 3745.
    While Telnet, SSH or console into router we see no debug output even after turning Terminal monitor, we can only see the show outputs, etc. While consoled into the 3745 we see nothing there is No prompt or any messages at all.
    We tried replacing the console cable and placed it on different PCs or laptop still no go. I was thinking of reloading the router tomorrow night, but want to check if anyone has come across this problem. It was all working in the past without any changes.
    Is there like a command i need to add, etc. But i am 100% sure its all good on the 3745.
    Cheers!
    -Yavuz

    Try 'logging console'
    'sh logg' will show what is currently being logged, look for this line to see what is being logged to the console:
    Console logging: level debugging, 49 messages logged, xml disabled, filtering disabled
    Hope this helps

  • Vicious MPD widget not displaying the artist and song title

    EDIT: This thread can be closed now. It turns out Clementine doesn't support mpd and I'm now running ncmpcpp and the widget shows the artist and song title.
    I have trouble getting the mpd widget running in awesome wm, it will only display "N/A - N/A". I've read the wiki and done a lot of googling but I can't figure out what I'm missing.
    Here's my rc.lua
    -- Standard awesome library
    local gears = require("gears")
    local awful = require("awful")
    awful.rules = require("awful.rules")
    require("awful.autofocus")
    -- Widget and layout library
    local wibox = require("wibox")
    local vicious = require("vicious")
    -- Theme handling library
    local beautiful = require("beautiful")
    -- Notification library
    local naughty = require("naughty")
    local menubar = require("menubar")
    -- {{{ Error handling
    -- Check if awesome encountered an error during startup and fell back to
    -- another config (This code will only ever execute for the fallback config)
    if awesome.startup_errors then
    naughty.notify({ preset = naughty.config.presets.critical,
    title = "Oops, there were errors during startup!",
    text = awesome.startup_errors })
    end
    -- Handle runtime errors after startup
    do
    local in_error = false
    awesome.connect_signal("debug::error", function (err)
    -- Make sure we don't go into an endless error loop
    if in_error then return end
    in_error = true
    naughty.notify({ preset = naughty.config.presets.critical,
    title = "Oops, an error happened!",
    text = err })
    in_error = false
    end)
    end
    -- {{{ Variable definitions
    -- Themes define colours, icons, and wallpapers
    beautiful.init("/usr/share/awesome/themes/zenburn/theme.lua")
    -- This is used later as the default terminal and editor to run.
    terminal = "tilda"
    editor = "gedit"
    -- os.getenv("EDITOR") or
    editor_cmd = terminal .. " -e " .. editor
    -- Default modkey.
    -- Usually, Mod4 is the key with a logo between Control and Alt.
    -- If you do not like this or do not have such a key,
    -- I suggest you to remap Mod4 to another key using xmodmap or other tools.
    -- However, you can use another modifier like Mod1, but it may interact with others.
    modkey = "Mod4"
    -- Table of layouts to cover with awful.layout.inc, order matters.
    local layouts =
    awful.layout.suit.floating,
    awful.layout.suit.tile,
    awful.layout.suit.tile.left,
    awful.layout.suit.tile.bottom,
    awful.layout.suit.tile.top,
    awful.layout.suit.fair,
    awful.layout.suit.fair.horizontal,
    awful.layout.suit.spiral,
    awful.layout.suit.spiral.dwindle,
    awful.layout.suit.max,
    awful.layout.suit.max.fullscreen,
    awful.layout.suit.magnifier
    -- {{{ Wallpaper
    if beautiful.wallpaper then
    for s = 1, screen.count() do
    gears.wallpaper.maximized(beautiful.wallpaper, s, true)
    end
    end
    -- {{{ Tags
    -- Define a tag table which will hold all screen tags.
    tags = {}
    for s = 1, screen.count() do
    -- Each screen has its own tag table.
    tags[s] = awful.tag({"term", "www", "mp3", "skype", "office", "dev", "misc" }, s)
    end
    -- {{{ Menu
    -- Create a laucher widget and a main menu
    myawesomemenu = {
    { "manual", terminal .. " -e man awesome" },
    { "edit config", editor_cmd .. " " .. awesome.conffile },
    { "reboot", "gksudo reboot" },
    { "restart", awesome.restart },
    { "quit", awesome.quit }
    mymainmenu = awful.menu({ items = { { "awesome", myawesomemenu, beautiful.awesome_icon },
    { "open terminal", terminal }
    mylauncher = awful.widget.launcher({ image = beautiful.awesome_icon,
    menu = mymainmenu })
    -- Menubar configuration
    menubar.utils.terminal = terminal -- Set the terminal for applications that require it
    -- Initialize widget
    mpdwidget = wibox.widget.textbox()
    -- Register widget
    vicious.register(mpdwidget, vicious.widgets.mpd,
    function (mpdwidget, args)
    if args["{state}"] == "Stop" then
    return " - "
    else
    return args["{Artist}"]..' - '.. args["{Title}"]
    end
    end, 10)
    -- {{{ Wibox
    -- Create a textclock widget
    mytextclock = awful.widget.textclock()
    -- Create a wibox for each screen and add it
    mywibox = {}
    mypromptbox = {}
    mylayoutbox = {}
    mytaglist = {}
    mytaglist.buttons = awful.util.table.join(
    awful.button({ }, 1, awful.tag.viewonly),
    awful.button({ modkey }, 1, awful.client.movetotag),
    awful.button({ }, 3, awful.tag.viewtoggle),
    awful.button({ modkey }, 3, awful.client.toggletag),
    awful.button({ }, 4, function(t) awful.tag.viewnext(awful.tag.getscreen(t)) end),
    awful.button({ }, 5, function(t) awful.tag.viewprev(awful.tag.getscreen(t)) end)
    mytasklist = {}
    mytasklist.buttons = awful.util.table.join(
    awful.button({ }, 1, function (c)
    if c == client.focus then
    c.minimized = true
    else
    -- Without this, the following
    -- :isvisible() makes no sense
    c.minimized = false
    if not c:isvisible() then
    awful.tag.viewonly(c:tags()[1])
    end
    -- This will also un-minimize
    -- the client, if needed
    client.focus = c
    c:raise()
    end
    end),
    awful.button({ }, 3, function ()
    if instance then
    instance:hide()
    instance = nil
    else
    instance = awful.menu.clients({ width=250 })
    end
    end),
    awful.button({ }, 4, function ()
    awful.client.focus.byidx(1)
    if client.focus then client.focus:raise() end
    end),
    awful.button({ }, 5, function ()
    awful.client.focus.byidx(-1)
    if client.focus then client.focus:raise() end
    end))
    for s = 1, screen.count() do
    -- Create a promptbox for each screen
    mypromptbox[s] = awful.widget.prompt()
    -- Create an imagebox widget which will contains an icon indicating which layout we're using.
    -- We need one layoutbox per screen.
    mylayoutbox[s] = awful.widget.layoutbox(s)
    mylayoutbox[s]:buttons(awful.util.table.join(
    awful.button({ }, 1, function () awful.layout.inc(layouts, 1) end),
    awful.button({ }, 3, function () awful.layout.inc(layouts, -1) end),
    awful.button({ }, 4, function () awful.layout.inc(layouts, 1) end),
    awful.button({ }, 5, function () awful.layout.inc(layouts, -1) end)))
    -- Create a taglist widget
    mytaglist[s] = awful.widget.taglist(s, awful.widget.taglist.filter.all, mytaglist.buttons)
    -- Create a tasklist widget
    mytasklist[s] = awful.widget.tasklist(s, awful.widget.tasklist.filter.currenttags, mytasklist.buttons)
    -- Create the wibox
    mywibox[s] = awful.wibox({ position = "top", screen = s })
    -- Widgets that are aligned to the left
    local left_layout = wibox.layout.fixed.horizontal()
    left_layout:add(mylauncher)
    left_layout:add(mytaglist[s])
    left_layout:add(mypromptbox[s])
    -- Widgets that are aligned to the right
    local right_layout = wibox.layout.fixed.horizontal()
    right_layout:add(mpdwidget)
    if s == 1 then right_layout:add(wibox.widget.systray()) end
    right_layout:add(mytextclock)
    right_layout:add(mylayoutbox[s])
    -- Now bring it all together (with the tasklist in the middle)
    local layout = wibox.layout.align.horizontal()
    layout:set_left(left_layout)
    layout:set_middle(mytasklist[s])
    layout:set_right(right_layout)
    mywibox[s]:set_widget(layout)
    end
    -- {{{ Mouse bindings
    root.buttons(awful.util.table.join(
    awful.button({ }, 3, function () mymainmenu:toggle() end),
    awful.button({ }, 4, awful.tag.viewnext),
    awful.button({ }, 5, awful.tag.viewprev)
    -- {{{ Key bindings
    globalkeys = awful.util.table.join(
    awful.key({ modkey, }, "Left", awful.tag.viewprev ),
    awful.key({ modkey, }, "Right", awful.tag.viewnext ),
    awful.key({ modkey, }, "Escape", awful.tag.history.restore),
    awful.key({ modkey, }, "j",
    function ()
    awful.client.focus.byidx( 1)
    if client.focus then client.focus:raise() end
    end),
    awful.key({ modkey, }, "k",
    function ()
    awful.client.focus.byidx(-1)
    if client.focus then client.focus:raise() end
    end),
    awful.key({ modkey, }, "w", function () mymainmenu:show() end),
    -- Layout manipulation
    awful.key({ modkey, "Shift" }, "j", function () awful.client.swap.byidx( 1) end),
    awful.key({ modkey, "Shift" }, "k", function () awful.client.swap.byidx( -1) end),
    awful.key({ modkey, "Control" }, "j", function () awful.screen.focus_relative( 1) end),
    awful.key({ modkey, "Control" }, "k", function () awful.screen.focus_relative(-1) end),
    awful.key({ modkey, }, "u", awful.client.urgent.jumpto),
    awful.key({ modkey, }, "Tab",
    function ()
    awful.client.focus.history.previous()
    if client.focus then
    client.focus:raise()
    end
    end),
    -- Standard program
    awful.key({ modkey, }, "Return", function () awful.util.spawn(terminal) end),
    awful.key({ modkey, "Control" }, "r", awesome.restart),
    awful.key({ modkey, "Shift" }, "q", awesome.quit),
    awful.key({ modkey, }, "l", function () awful.tag.incmwfact( 0.05) end),
    awful.key({ modkey, }, "h", function () awful.tag.incmwfact(-0.05) end),
    awful.key({ modkey, "Shift" }, "h", function () awful.tag.incnmaster( 1) end),
    awful.key({ modkey, "Shift" }, "l", function () awful.tag.incnmaster(-1) end),
    awful.key({ modkey, "Control" }, "h", function () awful.tag.incncol( 1) end),
    awful.key({ modkey, "Control" }, "l", function () awful.tag.incncol(-1) end),
    awful.key({ modkey, }, "space", function () awful.layout.inc(layouts, 1) end),
    awful.key({ modkey, "Shift" }, "space", function () awful.layout.inc(layouts, -1) end),
    awful.key({ modkey, "Control" }, "n", awful.client.restore),
    -- Prompt
    awful.key({ modkey }, "r", function () mypromptbox[mouse.screen]:run() end),
    awful.key({ modkey }, "x",
    function ()
    awful.prompt.run({ prompt = "Run Lua code: " },
    mypromptbox[mouse.screen].widget,
    awful.util.eval, nil,
    awful.util.getdir("cache") .. "/history_eval")
    end),
    -- Menubar
    awful.key({ modkey }, "p", function() menubar.show() end)
    clientkeys = awful.util.table.join(
    awful.key({ modkey, }, "f", function (c) c.fullscreen = not c.fullscreen end),
    awful.key({ modkey, "Shift" }, "c", function (c) c:kill() end),
    awful.key({ modkey, "Control" }, "space", awful.client.floating.toggle ),
    awful.key({ modkey, "Control" }, "Return", function (c) c:swap(awful.client.getmaster()) end),
    awful.key({ modkey, }, "o", awful.client.movetoscreen ),
    awful.key({ modkey, }, "t", function (c) c.ontop = not c.ontop end),
    awful.key({ modkey, }, "n",
    function (c)
    -- The client currently has the input focus, so it cannot be
    -- minimized, since minimized clients can't have the focus.
    c.minimized = true
    end),
    awful.key({ modkey, }, "m",
    function (c)
    c.maximized_horizontal = not c.maximized_horizontal
    c.maximized_vertical = not c.maximized_vertical
    end)
    -- Bind all key numbers to tags.
    -- Be careful: we use keycodes to make it works on any keyboard layout.
    -- This should map on the top row of your keyboard, usually 1 to 9.
    for i = 1, 9 do
    globalkeys = awful.util.table.join(globalkeys,
    awful.key({ modkey }, "#" .. i + 9,
    function ()
    local screen = mouse.screen
    local tag = awful.tag.gettags(screen)[i]
    if tag then
    awful.tag.viewonly(tag)
    end
    end),
    awful.key({ modkey, "Control" }, "#" .. i + 9,
    function ()
    local screen = mouse.screen
    local tag = awful.tag.gettags(screen)[i]
    if tag then
    awful.tag.viewtoggle(tag)
    end
    end),
    awful.key({ modkey, "Shift" }, "#" .. i + 9,
    function ()
    if client.focus then
    local tag = awful.tag.gettags(client.focus.screen)[i]
    if tag then
    awful.client.movetotag(tag)
    end
    end
    end),
    awful.key({ modkey, "Control", "Shift" }, "#" .. i + 9,
    function ()
    if client.focus then
    local tag = awful.tag.gettags(client.focus.screen)[i]
    if tag then
    awful.client.toggletag(tag)
    end
    end
    end))
    end
    clientbuttons = awful.util.table.join(
    awful.button({ }, 1, function (c) client.focus = c; c:raise() end),
    awful.button({ modkey }, 1, awful.mouse.client.move),
    awful.button({ modkey }, 3, awful.mouse.client.resize))
    -- Set keys
    root.keys(globalkeys)
    -- {{{ Rules
    awful.rules.rules = {
    -- All clients will match this rule.
    { rule = { },
    properties = { border_width = beautiful.border_width,
    border_color = beautiful.border_normal,
    focus = awful.client.focus.filter,
    keys = clientkeys,
    buttons = clientbuttons } },
    { rule = { class = "MPlayer" },
    properties = { floating = true } },
    { rule = { class = "pinentry" },
    properties = { floating = true } },
    { rule = { class = "gimp" },
    properties = { floating = true } },
    -- Set Firefox to always map on tags number 2 of screen 1.
    { rule = { class = "Firefox" },
    properties = { tag = tags[2] } },
    -- {{{ Signals
    -- Signal function to execute when a new client appears.
    client.connect_signal("manage", function (c, startup)
    -- Enable sloppy focus
    c:connect_signal("mouse::enter", function(c)
    if awful.layout.get(c.screen) ~= awful.layout.suit.magnifier
    and awful.client.focus.filter(c) then
    client.focus = c
    end
    end)
    if not startup then
    -- Set the windows at the slave,
    -- i.e. put it at the end of others instead of setting it master.
    -- awful.client.setslave(c)
    -- Put windows in a smart way, only if they does not set an initial position.
    if not c.size_hints.user_position and not c.size_hints.program_position then
    awful.placement.no_overlap(c)
    awful.placement.no_offscreen(c)
    end
    end
    local titlebars_enabled = false
    if titlebars_enabled and (c.type == "normal" or c.type == "dialog") then
    -- buttons for the titlebar
    local buttons = awful.util.table.join(
    awful.button({ }, 1, function()
    client.focus = c
    c:raise()
    awful.mouse.client.move(c)
    end),
    awful.button({ }, 3, function()
    client.focus = c
    c:raise()
    awful.mouse.client.resize(c)
    end)
    -- Widgets that are aligned to the left
    local left_layout = wibox.layout.fixed.horizontal()
    left_layout:add(awful.titlebar.widget.iconwidget(c))
    left_layout:buttons(buttons)
    -- Widgets that are aligned to the right
    local right_layout = wibox.layout.fixed.horizontal()
    right_layout:add(awful.titlebar.widget.floatingbutton(c))
    right_layout:add(awful.titlebar.widget.maximizedbutton(c))
    right_layout:add(awful.titlebar.widget.stickybutton(c))
    right_layout:add(awful.titlebar.widget.ontopbutton(c))
    right_layout:add(awful.titlebar.widget.closebutton(c))
    -- The title goes in the middle
    local middle_layout = wibox.layout.flex.horizontal()
    local title = awful.titlebar.widget.titlewidget(c)
    title:set_align("center")
    middle_layout:add(title)
    middle_layout:buttons(buttons)
    -- Now bring it all together
    local layout = wibox.layout.align.horizontal()
    layout:set_left(left_layout)
    layout:set_right(right_layout)
    layout:set_middle(middle_layout)
    awful.titlebar(c):set_widget(layout)
    end
    end)
    client.connect_signal("focus", function(c) c.border_color = beautiful.border_focus end)
    client.connect_signal("unfocus", function(c) c.border_color = beautiful.border_normal end)
    function run_once(prg,arg_string,pname,screen)
    if not prg then
    do return nil end
    end
    if not pname then
    pname = prg
    end
    if not arg_string then
    awful.util.spawn_with_shell("pgrep -f -u $USER -x '" .. pname .. "' || (" .. prg .. ")",screen)
    else
    awful.util.spawn_with_shell("pgrep -f -u $USER -x '" .. pname .. " ".. arg_string .."' || (" .. prg .. " " .. arg_string .. ")",screen)
    end
    end
    awful.util.spawn_with_shell("setxkbmap -layout se")
    run_once("tilda",nil,nil,"term")
    run_once("firefox &",nil,nil,"www")
    run_once("clementine ",nil,nil,"mp3")
    run_once("skype ",nil,nil,"skype")
    run_once("dropboxd &",nil,nil,nil)
    run_once("keepassx ",nil,nil,"www")
    run_once("volumeicon &",nil,nil,nil)
    awesome.font = "DejaVuSansCondensed 12"
    Here's my mpd.lua:
    -- Licensed under the GNU General Public License v2
    -- * (c) 2010, Adrian C. <[email protected]>
    -- {{{ Grab environment
    local tonumber = tonumber
    local io = { popen = io.popen }
    local setmetatable = setmetatable
    local string = { gmatch = string.gmatch }
    local helpers = require("vicious.helpers")
    -- Mpd: provides Music Player Daemon information
    -- vicious.widgets.mpd
    local mpd = {}
    -- {{{ MPD widget type
    local function worker(format, warg)
    local mpd_state = {
    ["{volume}"] = 0,
    ["{state}"] = "N/A",
    ["{Artist}"] = "N/A",
    ["{Title}"] = "N/A",
    ["{Album}"] = "N/A",
    ["{Genre}"] = "N/A",
    --["{Name}"] = "N/A",
    --["{file}"] = "N/A",
    -- Fallback to MPD defaults
    local pass = warg and (warg.password or warg[1]) or "\"\""
    local host = warg and (warg.host or warg[2]) or "127.0.0.1"
    local port = warg and (warg.port or warg[3]) or "6600"
    -- Construct MPD client options
    local mpdh = "telnet://"..host..":"..port
    local echo = "echo 'password "..pass.."\nstatus\ncurrentsong\nclose'"
    -- Get data from MPD server
    local f = io.popen(echo.." | curl --connect-timeout 1 -fsm 3 "..mpdh)
    for line in f:lines() do
    for k, v in string.gmatch(line, "([%w]+):[%s](.*)$") do
    if k == "volume" then mpd_state["{"..k.."}"] = v and tonumber(v)
    elseif k == "state" then mpd_state["{"..k.."}"] = helpers.capitalize(v)
    elseif k == "Artist" then mpd_state["{"..k.."}"] = helpers.escape(v)
    elseif k == "Title" then mpd_state["{"..k.."}"] = helpers.escape(v)
    elseif k == "Album" then mpd_state["{"..k.."}"] = helpers.escape(v)
    elseif k == "Genre" then mpd_state["{"..k.."}"] = helpers.escape(v)
    --elseif k == "Name" then mpd_state["{"..k.."}"] = helpers.escape(v)
    --elseif k == "file" then mpd_state["{"..k.."}"] = helpers.escape(v)
    end
    end
    end
    f:close()
    return mpd_state
    end
    return setmetatable(mpd, { __call = function(_, ...) return worker(...) end })
    I'm using Clementine to play the music if that makes a difference.
    Last edited by DisposableHero (2013-11-25 01:12:01)

    Hi,
    If the songs were purchased from itunes, I suggest that you delete the tracks from your itunes library and move to trash (providing you live in a country that permits redownloading). See http://support.apple.com/kb/PH12283.
    Jim

  • Display Error while installing Oracle 11g R2 in RHEL 5 !!!

    hi
    I am trying to install Oracle 11g R2 in RHEL 5. When i run ./runInstaller it didnt pass one checking..which showed an error:
    >>> Could not execute auto check for display colors using command /usr/X11R6/bin/xdpyinfo. Check if the DISPLAY variable is set. Failed <<<<
    i run xhost +
    it showed:
    [oracle@localhost database]$ xhost +
    Xlib: connection to ":0.0" refused by server
    Xlib: No protocol specified
    xhost: unable to open display ":0.0"
    i exported the DISPLAY too..its workedd..but still its showing the same error..
    here iam trying to install the oracle 11g on RHEL 5 in a common PC...not using any Vmware or Virtual box and not trying to install it from remote PC. But still iam facing the same error.
    Kindly help me to resolve this issue.
    Shiyas M

    Hi;
    Firstly you are working on server or you use some telnet program like putty? If you are working on server than issue is:
    as root
    xhost +
    than run xlock and be sure u can see clock
    than su - oracle
    xhost + once more than try to run ./runInstaller
    If you connect server remotly than i use vncwier
    1. as root run export DISPLAY=hostname or IP:1.0
    2. xhost +
    3. run xclock and see u see it on vncviwer
    4. su - oracle
    5. run export DISPLAY again
    6. xhost
    7. /runInstaller
    Regard
    Helios

  • X Application won't display

    Hi everyone,
    I am having a bit of a problem getting my X application to display out. We
    are building new Sun servers to replace the existing servers. The new
    servers are running Solaris 9 with SGD 4.10.903 (with the builin
    webserver). SGD and the App are running on the same server. The
    application launches and you see the green cog on the webtop. It is
    running on the server, but nothing displays out to the client.
    This same application starts and runs fine on our existing servers running
    Solaris 8 with SGD 3.42.
    Any help would be greatly appreciated.
    Thanks,
    Mike.

    Hi Sue,
    No problems starting the application from dtterm, and no warnings or
    errors. Application consitently comes back to my display.
    Thanks,
    Mike.
    Sue Burton wrote:
    Mike,
    If you run dtterm through SGD and then start the application manually at the
    command line do you see the same problem? Does this give you any
    warning/errors
    on the command line?
    You could also run the 'xdpyinfo' and 'xset -q' commands from dtterm running
    through SGD and
    dtterm running on the console - compare the output. Look for supported
    extensions
    and font paths.
    Regards
    Sue
    "Mike" <[email protected]> wrote in message
    news:[email protected]...
    David,
    Session ends when ther are No visible windows. dtterm and xclock workfine.
    Thanks,
    Mike.
    David W. Fong wrote:
    Mike,
    What's your Session Ends When setting? Can you try other ones?
    Regards,
    David
    Mike wrote:
    Carmelo,
    SSH is configured properly and I am able to connect using either SSH
    or
    TELNET. dtterm, xclock, all come back just fine. The application gets
    started and is running on the server, but never comes back to mydisplay.
    Here are the launch details.
    Thanks.
    Starting...
    Locating session...
    ...found session
    Connecting to session...
    Password:
    Sun Microsystems Inc. SunOS 5.9 Generic May 2002
    You have new mail.
    wtmp begins Wed Aug 31 10:19
    $ exec /bin/sh
    $ [ -f /bin/ksh ] && exec /bin/ksh
    Configuring your environment...
    $ set o emacs ; set o gmacs ; set +o vi
    $ OIT_FORCEWINMGR=OTHER; export OIT_FORCEWINMGR
    $ DISPLAY=unix:11; export DISPLAY
    $ ALTDISPLAY=server.domain.com:11; export ALTDISPLAY
    $ TTA_UID="`LANG=C LC_ALL=C id | sed's/.*uid=\([0-9][0-9]*\).*/\1/'`";
    export TTA_UID
    $ TTA_USERNAME='.../_ens/o=organization/cn=xxxx'; export TTA_USERNAME
    $ TTA_PRIMARY_DNSNAME='server.domain.com'; export TTA_PRIMARY_DNSNAME
    $ TTA_PE_ID=''; export TTA_PE_ID
    $ TTA_CLIENT_IPADDR='nn.nn.nnn.nnn'; export TTA_CLIENT_IPADDR
    $ TERM=''; export TERM
    $ TTA_PEERDNSNAME='server.domain.com'; export TTA_PEERDNSNAME
    $ TTA_EXTDNSNAME='server.domain.com'; export TTA_EXTDNSNAME
    $ if [ -f /etc/ttaprinter.conf ]; then . /etc/ttaprinter.conf; export
    LPDEST; fi
    Starting the application...
    $ if [ -x /xxx/xx/script/startxxxx ]; then echo "Found"; else echo"Not
    available"; fi
    Found
    $ trap "" 1
    /xxx/xx/script/startxxxx < /dev/null > /dev/null 2>>
    /tmp/stderr1833_server.domain.com_112861947290588.log || echo "exec
    /xxx/xx/script/startxxxx exitcode: $? "& killpid="$killpid $! "
    $ [1] 1846
    $
    [ -f /tmp/stderr1833_server.domain.com_112861947290588.log ] && rm -f
    /tmp/stderr1833_server.domain.com_1128619472[1] + Done
    /xxx/xx/script/startxxxx < /dev/null > /dev/null 2>>
    /tmp/stderr1833_server.domain.com_112861947290588.log || echo "exec
    /fnx/fx/script/startfcsh exitcode: $? "& killpid="$killpid $! "
    $
    90588.log
    kill $killpid 2>/dev/null
    $
    ...connected
    STATE_PROTOCOL_INIT
    Connecting to server...
    Connected
    Initializing session...
    Starting session...
    Waiting for application...
    Done
    Carmelo wrote:
    Mike,
    Are you using SSH as your connection method? If so have you
    configured
    it per
    http://www.tarantella.com/documentation/sgd/ee/4.1/help/en-us/base/indepth/ssh.html
    >>>>
    >>>>
    If still an issue can you post "launch details"
    Regards,

  • To display a TelnetInputStream

    hello
    i am using ftpclient with the method list
    it reterns me a telnet in put stream
    and i want to display the list getted
    how can i do

    What happened with this?
    http://forum.java.sun.com/thread.jsp?forum=54&thread=511330&tstart=0&trange=15

  • Can Discoverer have link to display documents stored outside the database?

    I posted a message some time ago called "Possible for Discoverer to display BLOB type documents stored in database?" and got great answer.
    Now our customers are asking if it is possible, from Discoverer, to link somehow to a file stored outside the database on the Unix file system and get their computer to display it? Can anyone tell me if this is possible please?
    The only thing I've seen in the documentation that may be related is in Oracle Business Intelligence Discoverer Configuration Guide, section 10.6 List of Discoverer user preferences. It says there that Discoverer preference ProtocolList can be set so that Discoverer hyperlinks can be set to use protocols such as telnet, but the default is HTTP, HTTPS, and FTP.
    THank you in advance if you can help.
    Regards,
    Julie.

    Hi Rod,
    I have tried the second method: "create a Oracle directory pointing to the Unix directory containing the files". I have had success with it, but I'd be grateful if you could advise me if you would have done this the same way as described below:
    I put two Word docs and two text docs called clob_test1.txt, clob_test2.txt, blob_test1.doc, blob_test2 in the Unix directory corresponding to an Oracle directory called 'EIF'. I thought an extrenal table was needed so that Discoverer would have an object to write a queruy against. So I created a file called lob_test_data.txt with the following contents:
    1,01-JAN-2006,text/plain,clob_test1.txt
    2,02-JAN-2006,text/plain,clob_test2.txt
    3,01-JAN-2006,application/msword,blob_test1.doc
    4,02-JAN-2006,application/msword,blob_test2.
    THen I created an external table using the following DDL:
    CREATE TABLE jum_temp_lob_tab (
    file_id NUMBER(10),
    date_content DATE,
    mime_type VARCHAR2(100),
    blob_content BLOB
    ORGANIZATION EXTERNAL
    TYPE ORACLE_LOADER
    DEFAULT DIRECTORY EIF
    ACCESS PARAMETERS
    RECORDS DELIMITED BY NEWLINE
    BADFILE EIF:'lob_tab_%a_%p.bad'
    LOGFILE EIF:'lob_tab_%a_%p.log'
    FIELDS TERMINATED BY ','
    MISSING FIELD VALUES ARE NULL
    file_id CHAR(10),
    date_content CHAR(11) DATE_FORMAT DATE MASK "DD-MON-YYYY",
    mime_type CHAR(100),
    blob_filename CHAR(100)
    COLUMN TRANSFORMS (blob_content FROM LOBFILE (blob_filename) FROM (EIF) BLOB)
    LOCATION ('lob_test_data.txt')
    PARALLEL 2
    REJECT LIMIT UNLIMITED
    then created a Discoverer End User Layer folder against this external table, and used exactly the same technique as we did for downloading the BLOB from the database table (creating a new folder item containing a URL calling a database procedure which calls the Oracle code to download the doc). THis worked, but sometimes my PC didn't seem to know that the Word docs were Word docs and it needed to launch Word. Other times it did manage to do this OK. It always displayed the two .txt files as HTML docs.
    Just wondered if you'd be good enough to critique this approach.
    THank you, Julie.

  • Cisco gateway telnet command help

    When our phone system was installed over a year ago the tech that was onsite used a command when after he would telnet into our voce gateway that would display informatin about every call that was going through the system.
    For the life of me I can not recall the command that he used.
    It was like a debugging tool that everytime a call was placed information about the call, source, destination, protocolots, off hook, on hook, etc...
    Can anyone please help jog my brain into remembering this cisco gateway command?
    thanks in advance

    show voice call status
    debug isdn q931 ----->(Don't forget to turn on "term mon")
    HTH
    Regards,
    Yosh

  • Missing SET parameters on 3750 switch via Telnet?

    Hello. When I telnet into my 3750, and then I ENABLE to get priviledge commands, I want to SET the SPANNING-TREE parameter.
    I type SET ? and only get one option
    MEMORY set memory paramters
    When I type SHOW ?, I do see the parameter to show the SPANNING-TREE information.
    Is there something else I need to enable?
    Thanks, for your help...Jake

    ok, I figured out my problem...I feel like such a newb...
    I had to get into the CONFIG mode then many more options were possible.
    I figured out how to set the spanning-tree, then immediately got PORT-SECURITY errors about 1 every second. I didn't easily see how to disable that feature from Telnet, but was able to from the Cisco Network Assistant and/or the Java based web interface.
    Once I turned off/disabled Port security for that port a SHOW RUNNING-CONFIG did not even display anything for that port. Guess that's to be expected, I would have preferred to see disabled, but finally, FINALLY, I can communicate with the network and internet.
    All this just for testing purposes and a slow migration to the new switches.
    Jake

  • Display MOTD in Web Browser

    Hi
    I know that we can display MOTD banner through terminal and Telnet session. IS there anyway to display MOTD banner from the Web Browser interface. That is when I http into the Access Point. I will like to see the MOTD in there.
    Thank
    Tan

    Tan,
    I have checked everywhere and I do not see any way to do this with regards to the WebUI. If it is something you would like to see I'd recommend a PERS request ( performance enhancement ) driven through your account team.

  • Running java swing apps thru telnet... [Is this possible?]

    Hi All!
    I am just wandering if it is possible to run swing applications thru telnet since everytime I run it... it returns ang error....
    Exception in thread "main" java.lang.NoClassDefFoundError: sun/awt/X11GraphicsEnvironment
    at java.lang.Class.forName1(Native Method)
    at java.lang.Class.forName(Class.java:173)
    at java.awt.GraphicsEnvironment.getLocalGraphicsEnvironment(GraphicsEnvironment.java:90)
    at at sun.awt.motif.MToolkit.<clinit>(MToolkit.java:109).null(Unknown Source)
    at java.lang.Class.forName1(Native Method)
    at java.lang.Class.forName(Class.java:173)
    at java.awt.Toolkit$2.run(Toolkit.java:754)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.awt.Toolkit.getDefaultToolkit(Toolkit.java:745)
    at javax.swing.ImageIcon.<init>(ImageIcon.java:226)
    at javax.swing.LookAndFeel$1.createValue(LookAndFeel.java:295)
    at javax.swing.UIDefaults.getFromHashtable(UIDefaults.java:203)
    at javax.swing.UIDefaults.get(UIDefaults.java:148)
    at javax.swing.MultiUIDefaults.get(MultiUIDefaults.java:65)
    at javax.swing.UIDefaults.getIcon(UIDefaults.java:429)
    at javax.swing.UIManager.getIcon(UIManager.java:562)
    at javax.swing.plaf.basic.BasicOptionPaneUI.getIconForType(BasicOptionPaneUI.java:600)
    at javax.swing.plaf.basic.BasicOptionPaneUI.getIcon(BasicOptionPaneUI.java:586)
    at javax.swing.plaf.basic.BasicOptionPaneUI.createMessageArea(BasicOptionPaneUI.java:337)
    at javax.swing.plaf.basic.BasicOptionPaneUI.installComponents(BasicOptionPaneUI.java:178)
    at javax.swing.plaf.basic.BasicOptionPaneUI.installUI(BasicOptionPaneUI.java:146)
    at javax.swing.JComponent.setUI(JComponent.java:475)
    at javax.swing.JOptionPane.setUI(JOptionPane.java:1725)
    at javax.swing.JOptionPane.updateUI(JOptionPane.java:1747)
    at javax.swing.JOptionPane.<init>(JOptionPane.java:1710)
    at javax.swing.JOptionPane.showOptionDialog(JOptionPane.java:832)
    at javax.swing.JOptionPane.showMessageDialog(JOptionPane.java:646)
    at javax.swing.JOptionPane.showMessageDialog(JOptionPane.java:617)
    at JTest.main(JTest.java:40)
    Source Code:
    import javax.swing.*;
    import java.awt.*;
    public class JTest extends JFrame{
    JPanel pnlMain = new JPanel();
    JLabel lblMsg=new JLabel("This is only a test.");
    Font font=new Font("Arial", Font.BOLD, 28);
    public JTest(){
    try{
    this.setTitle("Unix Frame Testing");
    this.setBounds(10,10,500,100);
    this.setVisible(true);
    this.setDefaultCloseOperation(this.EXIT_ON_CLOSE);
    lblMsg.setFont(font);
    lblMsg.setBounds(100,10,250,50);                    
    pnlMain.setLayout(null);
    pnlMain.add(lblMsg);
    this.setContentPane(pnlMain);
    }catch(Exception e)
    { System.out.println("Unable to Display Window.");
    JOptionPane.showMessageDialog(null,"Unable to Display Window.","Error",JOptionPane.INFORMATION_MESSAGE);
    System.exit(0);
    public static void main(String args[]){
    JTest test=new JTest();
    }

    "scripts" are entirely different from GUI applications. What do you expect to happen when you run a Swing application through telnet on another machine? Do you expect the Swing UI to be magically transported to the local Windows machine?
    Not gonna happen. Yes, like ejp hinted, you could run an X-environment on your local machine and have the Swing UI tunnel its output there, but are you sure you want GUI apps to run on a remote machine like that? It's not gonna be fun to work with, I'll tell you that.
    Why not create a Java WebStart app (or perhaps even an applet) out of your application, so your users can run the application locally?

  • Solution manager 7.1 - AS Java - no page displayed after login

    Hello friends,
    I am facing a strange issue in our solution manager system wherein the startpage is displayed (http://<hostname>:50000) but no page is displayed after login. User credentials are accepted (Username/Password invalid dialogue is not displayed) but the page simply returns to the login screen.
    I also tried enabling the SAP* user in Java stack but the same behaviour is observed while logging in using SAP* as well.
    The UME configuration is correct as I tried resetting the J2ee_admin user in the ABAP stack and then tried logging in to to Java. The password change screen was displayed but once I login the page is not re-directed. I am also not able to login to the visual admin.
    Could you please advise how to go ahead with the troubleshooting of this issue at the earliest ?
    Thanks and regards,
    Sudarsan.

    Hi Divyanshu,
    Please find the default trace and std_server0.out pasted below
    std_server0.out
    stdout/stderr redirect
    node name   : server0
    pid         : 7248
    system name : H4P
    system nr.  : 00
    started at  : Sat Jul 12 01:02:33 2014
    [Thr 10468] MtxInit: 10001 0 2
    (CompilerOracle read from file F:\usr\sap\H4P\DVEBMGS00\exe\sapjvm_4\jre\.hotspot_compiler)
       :    [10876] 01:02:35    Listening for transport dt_socket at address: 50021
    JVM Directory = F:\usr\sap\H4P\DVEBMGS00\exe\sapjvm_4\jre
    SAP J2EE Engine Version 7.02 SP 15   PatchLevel 122046. is starting...
    Loading: LogManager ... 4655 ms.
    Loading: PoolManager ... 159 ms.
    Loading: ApplicationThreadManager ... 16.343: [GC 16.343: [ParNew: 409600K->2980K(512000K), 0.0093442 secs] 409600K->2980K(4091904K), 0.0095540 secs] [Times: user=0.00 sys=0.00, real=0.01 secs]
    1270 ms.
    Loading: ThreadManager ... 88 ms.
    Loading: IpVerificationManager ... 41 ms.
    Loading: ClassLoaderManager ... 208 ms.
    Loading: ClusterManager ... 1204 ms.
    Loading: LockingManager ... 741 ms.
    Loading: ConfigurationManager ... 10430 ms.
    Loading: LicensingManager ... 224 ms.
    Loading: CacheManager ... 1330 ms.
    Loading: ServiceManager ...
    Loading services.:
      Service runtimeinfo started. (16 ms).
      Service memory started. (26 ms).
      Service cross started. (67 ms).
      Service timeout started. (57 ms).
      Service trex.service started. (276 ms).
      Service p4 started. (721 ms).
      Service classpath_resolver started. (109 ms).
      Service userstore started. (25 ms).
      Service jmx_notification started. (147 ms).
    57.513: [GC 57.514: [ParNew: 412580K->15485K(512000K), 0.0197126 secs] 412580K->15485K(4091904K), 0.0198888 secs] [Times: user=0.16 sys=0.00, real=0.02 secs]
      Service log_configurator started. (22647 ms).
      Service locking started. (3 ms).
      Service http started. (566 ms).
      Service naming started. (1531 ms).
      Service licensing started. (64 ms).
      Service failover started. (48 ms).
      Service javamail started. (263 ms).
      Service jmsconnector started. (164 ms).
      Service appclient started. (56 ms).
      Service ts started. (269 ms).
      Service connector started. (688 ms).
      Service iiop started. (1693 ms).
    69.134: [GC 69.134: [ParNew: 425085K->26123K(512000K), 0.0151590 secs] 425085K->26123K(4091904K), 0.0153079 secs] [Times: user=0.16 sys=0.00, real=0.02 secs]
      Service deploy started. (47311 ms).
      Service MigrationService started. (50 ms).
      Service bi~mmr~deployer started. (6 ms).
      Service dbpool started. (2463 ms).
      Service UT started. (18 ms).
      Service tc~lm~nzdm~crrsrv started. (1896 ms).
      Service com.sap.security.core.ume.service started. (6394 ms).
      Service security started. (1542 ms).
      Service tc~di~sdic~srv started. (1607 ms).
      Service applocking started. (62 ms).
      Service shell started. (103 ms).
      Service tc~eCATTPing~service started. (7 ms).
      Service classload started. (145 ms).
      Service telnet started. (12 ms).
      Service ejb started. (372 ms).
      Service file started. (294 ms).
      Service configuration started. (288 ms).
      Service dsr started. (223 ms).
      Service keystore started. (146 ms).
      Service ssl started. (5 ms).
      Service caf~um~metadata~imp started. (481 ms).
      Service tc~sec~certrevoc~service started. (63 ms).
      Service servlet_jsp started. (634 ms).
      Service tc~sec~securestorage~service started. (115 ms).
      Service jmx started. (345 ms).
      Service caf~runtime~connectivity~impl started. (60169 ms).
      Service tc~sec~wssec~service started. (68 ms).
      Service tc~sec~destinations~service started. (213 ms).
      Service apptracing started. (76 ms).
      Service sld started. (312 ms).
      Service caf~um~relgroups~imp started. (419 ms).
      Service tc~sec~vsi~service started. (109 ms).
      Service pmi started. (21 ms).
      Service tc~lm~ctc~confs~service_sda started. (677 ms).
      Service CUL started. (638 ms).
      Service rfcengine started. (487 ms).
      Service webdynpro started. (504 ms).
      Service com.adobe~DocumentServicesLicenseSupportService started. (622 ms).
      Service com.adobe~DataManagerService started. (619 ms).
      Service com.adobe~DocumentServicesDestProtoService started. (570 ms).
      Service com.adobe~DocumentServicesBinaries2 started. (745 ms).
      Service basicadmin started. (1117 ms).
      Service com.adobe~LicenseService started. (57 ms).
      Service com.adobe~DocumentServicesLicenseService started. (139 ms).
      Service com.adobe~DocumentServicesConfiguration started. (103 ms).
      Service webservices started. (1464 ms).
      Service adminadapter started. (352 ms).
      Service com.adobe~TrustManagerService started. (41 ms).
    107.446: [GC 107.447: [ParNew: 435723K->55159K(512000K), 0.0336804 secs] 435723K->55159K(4091904K), 0.0338619 secs] [Times: user=0.30 sys=0.05, real=0.03 secs]
      Service jms_provider started. (2529 ms).
      Service monitor started. (1834 ms).
      Service com.adobe~XMLFormService started. (3682 ms).
      Service com.adobe~PDFManipulation started. (6231 ms).
      Service com.adobe~FontManagerService started. (20693 ms).
      Service tc.monitoring.logviewer started. (23847 ms).
      Service tc~smd~server~service started. (31959 ms).
    ServiceManager started for 106612 ms.
    Framework started for 127689 ms.
    SAP J2EE Engine Version 7.02 SP 15   PatchLevel 122046. is running! PatchLevel 122046. December 10, 2013 07:44 GMT
    >
    Login :138.206: [GC 138.206: [ParNew: 464759K->57045K(512000K), 0.0341173 secs] 464759K->57045K(4091904K), 0.0343756 secs] [Times: user=0.17 sys=0.03, real=0.03 secs]
    151.871: [GC 151.871: [ParNew: 466645K->59636K(512000K), 0.0248912 secs] 466645K->59636K(4091904K), 0.0250535 secs] [Times: user=0.20 sys=0.00, real=0.03 secs]
    159.768: [GC 159.768: [ParNew: 469236K->69020K(512000K), 0.0286367 secs] 469236K->69020K(4091904K), 0.0288998 secs] [Times: user=0.20 sys=0.00, real=0.03 secs]
    172.292: [GC 172.293: [ParNew: 478620K->82191K(512000K), 0.0506404 secs] 478620K->82191K(4091904K), 0.0509069 secs] [Times: user=0.33 sys=0.00, real=0.05 secs]
    183.948: [GC 183.948: [ParNew: 491791K->85191K(512000K), 0.0338451 secs] 491791K->85191K(4091904K), 0.0340746 secs] [Times: user=0.33 sys=0.06, real=0.04 secs]
    207.736: [GC 207.736: [ParNew: 494791K->93020K(512000K), 0.0402932 secs] 494791K->93020K(4091904K), 0.0405265 secs] [Times: user=0.36 sys=0.05, real=0.04 secs]
    213.091: [GC 213.091: [ParNew: 502620K->96889K(512000K), 0.0378830 secs] 502620K->96889K(4091904K), 0.0382008 secs] [Times: user=0.41 sys=0.00, real=0.04 secs]
    220.963: [GC 220.963: [ParNew: 506489K->102400K(512000K), 0.0433631 secs] 506489K->102887K(4091904K), 0.0435739 secs] [Times: user=0.39 sys=0.01, real=0.04 secs]
    225.407: [GC 225.407: [ParNew: 512000K->102400K(512000K), 0.0659910 secs] 512487K->114254K(4091904K), 0.0661903 secs] [Times: user=0.66 sys=0.00, real=0.07 secs]
    227.924: [GC 227.925: [ParNew: 512000K->75412K(512000K), 0.0600499 secs] 523854K->115750K(4091904K), 0.0603241 secs] [Times: user=0.56 sys=0.03, real=0.06 secs]
    229.735: [GC 229.736: [ParNew: 485012K->76773K(512000K), 0.0296704 secs] 525350K->117111K(4091904K), 0.0299047 secs] [Times: user=0.41 sys=0.00, real=0.03 secs]
    231.707: [GC 231.707: [ParNew: 486373K->80571K(512000K), 0.0274316 secs] 526711K->120909K(4091904K), 0.0276203 secs] [Times: user=0.41 sys=0.00, real=0.03 secs]
    234.714: [GC 234.714: [ParNew: 490171K->81084K(512000K), 0.0279458 secs] 530509K->121422K(4091904K), 0.0282022 secs] [Times: user=0.41 sys=0.00, real=0.03 secs]
    236.889: [GC 236.889: [ParNew: 490684K->83137K(512000K), 0.0295422 secs] 531022K->123475K(4091904K), 0.0299085 secs] [Times: user=0.44 sys=0.00, real=0.03 secs]
    239.014: [GC 239.014: [ParNew: 492737K->82027K(512000K), 0.0274570 secs] 533075K->122365K(4091904K), 0.0276447 secs] [Times: user=0.20 sys=0.00, real=0.03 secs]
    243.944: [GC 243.945: [ParNew: 491627K->86247K(512000K), 0.0308141 secs] 531965K->128265K(4091904K), 0.0310071 secs] [Times: user=0.41 sys=0.00, real=0.03 secs]
    261.078: [GC 261.078: [ParNew: 495847K->81875K(512000K), 0.0386699 secs] 537865K->130719K(4091904K), 0.0388763 secs] [Times: user=0.42 sys=0.00, real=0.04 secs]
    263.570: [GC 263.570: [ParNew: 491475K->76817K(512000K), 0.0368185 secs] 540319K->134261K(4091904K), 0.0370293 secs] [Times: user=0.39 sys=0.00, real=0.04 secs]
    266.491: [GC 266.491: [ParNew: 486417K->67609K(512000K), 0.0347549 secs] 543861K->133558K(4091904K), 0.0349446 secs] [Times: user=0.41 sys=0.00, real=0.04 secs]
    281.349: [GC 281.349: [ParNew: 477096K->74081K(512000K), 0.0436378 secs] 543045K->146305K(4091904K), 0.0438481 secs] [Times: user=0.33 sys=0.00, real=0.04 secs]
    374.995: [GC 374.995: [ParNew: 483681K->86806K(512000K), 0.0552055 secs] 555905K->167634K(4091904K), 0.0554494 secs] [Times: user=0.39 sys=0.02, real=0.06 secs]
    392.137: [GC 392.137: [ParNew: 496406K->85085K(512000K), 0.0415492 secs] 577234K->171765K(4091904K), 0.0417638 secs] [Times: user=0.61 sys=0.00, real=0.04 secs]
    405.451: [GC 405.451: [ParNew: 494681K->81779K(512000K), 0.0527352 secs] 581361K->178231K(4091904K), 0.0529758 secs] [Times: user=0.55 sys=0.00, real=0.05 secs]
    480.859: [GC 480.859: [ParNew: 491379K->102400K(512000K), 0.0901222 secs] 587831K->261420K(4091904K), 0.0905457 secs] [Times: user=0.51 sys=0.03, real=0.09 secs]
    577.173: [GC 577.173: [ParNew: 512000K->75933K(512000K), 0.0550441 secs] 671020K->246827K(4091904K), 0.0553682 secs] [Times: user=0.39 sys=0.00, real=0.06 secs]
    704.249: [GC 704.250: [ParNew: 485533K->77676K(512000K), 0.0407844 secs] 656427K->248569K(4091904K), 0.0410456 secs] [Times: user=0.42 sys=0.00, real=0.04 secs]
    876.836: [GC 876.836: [ParNew: 487276K->75866K(512000K), 0.0429113 secs] 658169K->246759K(4091904K), 0.0431860 secs] [Times: user=0.42 sys=0.00, real=0.04 secs]
    1000.880: [GC 1000.880: [ParNew: 485466K->78898K(512000K), 0.0513112 secs] 656359K->249791K(4091904K), 0.0515757 secs] [Times: user=0.30 sys=0.00, real=0.05 secs]
    1236.804: [GC 1236.805: [ParNew: 488498K->80412K(512000K), 0.0422104 secs] 659391K->251305K(4091904K), 0.0424571 secs] [Times: user=0.41 sys=0.01, real=0.04 secs]
    1418.924: [GC 1418.925: [ParNew: 490012K->80392K(512000K), 0.0434275 secs] 660905K->251286K(4091904K), 0.0436728 secs] [Times: user=0.41 sys=0.00, real=0.04 secs]
    1615.748: [GC 1615.749: [ParNew: 489992K->83210K(512000K), 0.0517399 secs] 660886K->254104K(4091904K), 0.0519881 secs] [Times: user=0.33 sys=0.00, real=0.05 secs]
    1620.414: [GC 1620.414: [ParNew: 492810K->78915K(512000K), 0.0583172 secs] 663704K->253562K(4091904K), 0.0585135 secs] [Times: user=0.59 sys=0.00, real=0.06 secs]
    2545.536: [GC 2545.537: [ParNew: 488515K->84452K(512000K), 0.0455981 secs] 663162K->262012K(4091904K), 0.0458415 secs] [Times: user=0.33 sys=0.00, real=0.05 secs]
    3636.568: [GC 3636.568: [ParNew: 494052K->87225K(512000K), 0.0450642 secs] 671612K->264982K(4091904K), 0.0453173 secs] [Times: user=0.22 sys=0.00, real=0.05 secs]
    3760.213: [GC 3760.213: [ParNew: 496825K->84275K(512000K), 0.0515042 secs] 674582K->267007K(4091904K), 0.0517510 secs] [Times: user=0.37 sys=0.02, real=0.05 secs]
    3829.358: [GC 3829.358: [ParNew: 493875K->79017K(512000K), 0.0490550 secs] 676607K->268004K(4091904K), 0.0493028 secs] [Times: user=0.42 sys=0.00, real=0.05 secs]
    3926.336: [GC 3926.337: [ParNew: 488617K->70535K(512000K), 0.0705191 secs] 677604K->267529K(4091904K), 0.0707937 secs] [Times: user=0.23 sys=0.00, real=0.07 secs]
    4000.227: [GC 4000.227: [ParNew: 480135K->67670K(512000K), 0.0428388 secs] 677129K->269075K(4091904K), 0.0431485 secs] [Times: user=0.37 sys=0.01, real=0.04 secs]
    4066.132: [GC 4066.132: [ParNew: 477270K->58133K(512000K), 0.0460110 secs] 678675K->269651K(4091904K), 0.0462511 secs] [Times: user=0.41 sys=0.00, real=0.05 secs]
    4178.728: [GC 4178.729: [ParNew: 467733K->49773K(512000K), 0.0483689 secs] 679251K->270549K(4091904K), 0.0486930 secs] [Times: user=0.31 sys=0.00, real=0.05 secs]
    4241.818: [GC 4241.818: [ParNew: 459373K->48431K(512000K), 0.0355832 secs] 680149K->269442K(4091904K), 0.0358160 secs] [Times: user=0.20 sys=0.00, real=0.04 secs]
    4360.751: [GC 4360.751: [ParNew: 458031K->48747K(512000K), 0.0371829 secs] 679042K->272075K(4091904K), 0.0374244 secs] [Times: user=0.20 sys=0.00, real=0.04 secs]
    4596.592: [GC 4596.592: [ParNew: 458347K->47879K(512000K), 0.0328224 secs] 681675K->271353K(4091904K), 0.0330644 secs] [Times: user=0.22 sys=0.00, real=0.03 secs]
    5585.792: [GC 5585.792: [ParNew: 457475K->43896K(512000K), 0.0351928 secs] 680949K->267555K(4091904K), 0.0354679 secs] [Times: user=0.16 sys=0.00, real=0.04 secs]
    7296.506: [GC 7296.506: [ParNew: 453496K->45169K(512000K), 0.0329165 secs] 677155K->268857K(4091904K), 0.0331907 secs] [Times: user=0.20 sys=0.00, real=0.03 secs]
    7779.913: [GC 7779.913: [ParNew: 454769K->44192K(512000K), 0.0334480 secs] 678457K->269666K(4091904K), 0.0336963 secs] [Times: user=0.22 sys=0.00, real=0.03 secs]
    8020.974: [GC 8020.974: [ParNew: 453792K->33373K(512000K), 0.0528687 secs] 679266K->269172K(4091904K), 0.0531164 secs] [Times: user=0.28 sys=0.00, real=0.05 secs]
    8677.081: [GC 8677.081: [ParNew: 442973K->23693K(512000K), 0.0405141 secs] 678772K->270630K(4091904K), 0.0407589 secs] [Times: user=0.11 sys=0.02, real=0.04 secs]
    10327.126: [GC 10327.126: [ParNew: 433293K->20436K(512000K), 0.0384207 secs] 680230K->267913K(4091904K), 0.0386656 secs] [Times: user=0.11 sys=0.00, real=0.04 secs]
    11256.564: [GC 11256.565: [ParNew: 428560K->27866K(512000K), 0.0253761 secs] 676037K->275415K(4091904K), 0.0256618 secs] [Times: user=0.01 sys=0.00, real=0.03 secs]
    11545.530: [GC 11545.530: [ParNew: 437465K->21536K(512000K), 0.0226044 secs] 685014K->269475K(4091904K), 0.0228564 secs] [Times: user=0.14 sys=0.00, real=0.02 secs]
    11796.057: [GC 11796.057: [ParNew: 431136K->18778K(512000K), 0.0221007 secs] 679075K->266774K(4091904K), 0.0223446 secs] [Times: user=0.01 sys=0.00, real=0.02 secs]
    12809.923: [GC 12809.923: [ParNew: 428378K->18795K(512000K), 0.0445188 secs] 676374K->266820K(4091904K), 0.0448069 secs] [Times: user=0.08 sys=0.00, real=0.04 secs]
    14496.820: [GC 14496.820: [ParNew: 428395K->25058K(512000K), 0.0226894 secs] 676420K->273498K(4091904K), 0.0229385 secs] [Times: user=0.00 sys=0.01, real=0.02 secs]
    14980.047: [GC 14980.047: [ParNew: 434658K->21165K(512000K), 0.0232621 secs] 683098K->269698K(4091904K), 0.0235445 secs] [Times: user=0.02 sys=0.00, real=0.02 secs]
    15233.610: [GC 15233.610: [ParNew: 430765K->22162K(512000K), 0.0229918 secs] 679298K->270744K(4091904K), 0.0232386 secs] [Times: user=0.02 sys=0.00, real=0.02 secs]
    15797.626: [GC 15797.626: [ParNew: 431762K->21183K(512000K), 0.0335801 secs] 680344K->269941K(4091904K), 0.0338307 secs] [Times: user=0.08 sys=0.00, real=0.03 secs]
    17445.257: [GC 17445.257: [ParNew: 430783K->21532K(512000K), 0.0217738 secs] 679541K->270368K(4091904K), 0.0220157 secs] [Times: user=0.01 sys=0.00, real=0.02 secs]
    18456.564: [GC 18456.564: [ParNew: 431132K->21513K(512000K), 0.0233092 secs] 679968K->270536K(4091904K), 0.0235584 secs] [Times: user=0.22 sys=0.00, real=0.02 secs]
    18745.563: [GC 18745.563: [ParNew: 431113K->20504K(512000K), 0.0287644 secs] 680136K->269891K(4091904K), 0.0290698 secs] [Times: user=0.14 sys=0.00, real=0.03 secs]
    18996.518: [GC 18996.519: [ParNew: 430104K->24655K(512000K), 0.0255605 secs] 679491K->274245K(4091904K), 0.0258087 secs] [Times: user=0.20 sys=0.00, real=0.03 secs]
    20125.762: [GC 20125.762: [ParNew: 434255K->18596K(512000K), 0.0400589 secs] 683845K->268312K(4091904K), 0.0403431 secs] [Times: user=0.06 sys=0.00, real=0.04 secs]
    21697.265: [GC 21697.265: [ParNew: 428196K->21889K(512000K), 0.0223705 secs] 677912K->271709K(4091904K), 0.0226207 secs] [Times: user=0.20 sys=0.00, real=0.02 secs]
    22180.439: [GC 22180.439: [ParNew: 431489K->21390K(512000K), 0.0277456 secs] 681309K->271612K(4091904K), 0.0279924 secs] [Times: user=0.19 sys=0.00, real=0.03 secs]
    22476.396: [GC 22476.397: [ParNew: 430990K->18430K(512000K), 0.0235550 secs] 681212K->268947K(4091904K), 0.0238061 secs] [Times: user=0.20 sys=0.00, real=0.02 secs]
    23195.831: [GC 23195.831: [ParNew: 428030K->18499K(512000K), 0.0241489 secs] 678547K->269079K(4091904K), 0.0244087 secs] [Times: user=0.09 sys=0.00, real=0.02 secs]
    24945.462: [GC 24945.462: [ParNew: 428099K->16645K(512000K), 0.0388144 secs] 678679K->267337K(4091904K), 0.0391812 secs] [Times: user=0.05 sys=0.00, real=0.04 secs]
    25716.639: [GC 25716.639: [ParNew: 426232K->23531K(512000K), 0.0233154 secs] 676923K->274315K(4091904K), 0.0235661 secs] [Times: user=0.02 sys=0.00, real=0.02 secs]
    25960.619: [GC 25960.619: [ParNew: 433131K->21809K(512000K), 0.0266547 secs] 683915K->272707K(4091904K), 0.0269438 secs] [Times: user=0.03 sys=0.00, real=0.03 secs]
    26304.626: [GC 26304.626: [ParNew: 431409K->18746K(512000K), 0.0343593 secs] 682307K->269749K(4091904K), 0.0346508 secs] [Times: user=0.08 sys=0.00, real=0.04 secs]
    27669.220: [GC 27669.220: [ParNew: 428346K->20766K(512000K), 0.0249685 secs] 679349K->271931K(4091904K), 0.0252148 secs] [Times: user=0.13 sys=0.00, real=0.03 secs]
    28029.056: [GC 28029.056: [ParNew: 430366K->34843K(512000K), 0.0287029 secs] 681531K->286439K(4091904K), 0.0289516 secs] [Times: user=0.08 sys=0.00, real=0.03 secs]
    29137.534: [GC 29137.535: [ParNew: 444441K->36716K(512000K), 0.0322064 secs] 696036K->288540K(4091904K), 0.0324566 secs] [Times: user=0.22 sys=0.00, real=0.03 secs]
    29539.995: [GC 29539.995: [ParNew: 446316K->33642K(512000K), 0.0441558 secs] 698140K->285524K(4091904K), 0.0444453 secs] [Times: user=0.08 sys=0.00, real=0.05 secs]
    29736.317: [GC 29736.317: [ParNew: 443242K->39857K(512000K), 0.0300564 secs] 695124K->291811K(4091904K), 0.0303046 secs] [Times: user=0.22 sys=0.00, real=0.03 secs]
    30197.727: [GC 30197.727: [ParNew: 449457K->44916K(512000K), 0.0272218 secs] 701411K->296976K(4091904K), 0.0274719 secs] [Times: user=0.17 sys=0.00, real=0.03 secs]
    30201.393: [GC 30201.393: [ParNew: 454516K->46152K(512000K), 0.0281556 secs] 706576K->298651K(4091904K), 0.0283476 secs] [Times: user=0.30 sys=0.00, real=0.03 secs]
    30204.926: [GC 30204.926: [ParNew: 455752K->55363K(512000K), 0.0283784 secs] 708251K->307988K(4091904K), 0.0289113 secs] [Times: user=0.14 sys=0.00, real=0.03 secs]
    30208.427: [GC 30208.427: [ParNew: 464963K->60481K(512000K), 0.0334466 secs] 717588K->313174K(4091904K), 0.0336761 secs] [Times: user=0.19 sys=0.00, real=0.03 secs]
    30212.220: [GC 30212.220: [ParNew: 470081K->66494K(512000K), 0.0350656 secs] 722774K->319335K(4091904K), 0.0352620 secs] [Times: user=0.25 sys=0.00, real=0.04 secs]
    30218.715: [GC 30218.715: [ParNew: 476094K->64660K(512000K), 0.0295470 secs] 728935K->317602K(4091904K), 0.0297482 secs] [Times: user=0.20 sys=0.00, real=0.03 secs]
    31892.266: [GC 31892.266: [ParNew: 474253K->65675K(512000K), 0.0452001 secs] 727194K->319718K(4091904K), 0.0454815 secs] [Times: user=0.31 sys=0.00, real=0.05 secs]
    32905.319: [GC 32905.319: [ParNew: 475275K->68843K(512000K), 0.0557312 secs] 729318K->322952K(4091904K), 0.0560174 secs] [Times: user=0.34 sys=0.00, real=0.06 secs]
    33156.147: [GC 33156.147: [ParNew: 478443K->65654K(512000K), 0.0331614 secs] 732552K->319857K(4091904K), 0.0334106 secs] [Times: user=0.22 sys=0.00, real=0.03 secs]
    33396.881: [GC 33396.881: [ParNew: 475254K->67679K(512000K), 0.0389335 secs] 729457K->321944K(4091904K), 0.0391759 secs] [Times: user=0.20 sys=0.00, real=0.04 secs]
    34595.703: [GC 34595.703: [ParNew: 477279K->64040K(512000K), 0.0405189 secs] 731544K->318508K(4091904K), 0.0407700 secs] [Times: user=0.22 sys=0.00, real=0.04 secs]
    36065.267: [GC 36065.267: [ParNew: 473640K->61747K(512000K), 0.0524082 secs] 728108K->320708K(4091904K), 0.0526613 secs] [Times: user=0.39 sys=0.00, real=0.05 secs]
    36577.395: [GC 36577.395: [ParNew: 471347K->64363K(512000K), 0.0357632 secs] 730308K->323597K(4091904K), 0.0360119 secs] [Times: user=0.25 sys=0.00, real=0.04 secs]
    36818.081: [GC 36818.081: [ParNew: 473963K->60950K(512000K), 0.0351362 secs] 733197K->320292K(4091904K), 0.0353810 secs] [Times: user=0.41 sys=0.00, real=0.03 secs]
    37390.515: [GC 37390.515: [ParNew: 470550K->61709K(512000K), 0.0564888 secs] 729892K->321423K(4091904K), 0.0567318 secs] [Times: user=0.20 sys=0.00, real=0.06 secs]
    37730.051: [GC 37730.051: [ParNew: 471309K->64129K(512000K), 0.0377437 secs] 731023K->324162K(4091904K), 0.0379953 secs] [Times: user=0.19 sys=0.00, real=0.04 secs]
    37733.372: [GC 37733.372: [ParNew: 473729K->53319K(512000K), 0.0354646 secs] 733762K->320827K(4091904K), 0.0356537 secs] [Times: user=0.37 sys=0.02, real=0.04 secs]
    37737.009: [GC 37737.009: [ParNew: 462919K->53622K(512000K), 0.0310719 secs] 730427K->327442K(4091904K), 0.0312615 secs] [Times: user=0.36 sys=0.00, real=0.03 secs]
    38795.575: [GC 38795.576: [ParNew: 463222K->50572K(512000K), 0.0322852 secs] 737042K->328382K(4091904K), 0.0325320 secs] [Times: user=0.19 sys=0.03, real=0.03 secs]
    39993.993: [GC 39993.993: [ParNew: 460172K->49671K(512000K), 0.0375738 secs] 737982K->329779K(4091904K), 0.0378254 secs] [Times: user=0.23 sys=0.00, real=0.04 secs]
    40344.727: [GC 40344.727: [ParNew: 459271K->45853K(512000K), 0.0313283 secs] 739379K->327387K(4091904K), 0.0315770 secs] [Times: user=0.19 sys=0.00, real=0.03 secs]
    40494.545: [GC 40494.546: [ParNew: 455453K->51375K(512000K), 0.0352274 secs] 736987K->334059K(4091904K), 0.0355399 secs] [Times: user=0.39 sys=0.00, real=0.04 secs]
    40498.474: [GC 40498.474: [ParNew: 460975K->48344K(512000K), 0.0232122 secs] 743659K->331092K(4091904K), 0.0234100 secs] [Times: user=0.31 sys=0.00, real=0.02 secs]
    40501.885: [GC 40501.886: [ParNew: 457944K->55748K(512000K), 0.0313076 secs] 740692K->338553K(4091904K), 0.0315496 secs] [Times: user=0.30 sys=0.00, real=0.03 secs]
    40612.920: [GC 40612.920: [ParNew: 465348K->51503K(512000K), 0.0265116 secs] 748153K->334348K(4091904K), 0.0268357 secs] [Times: user=0.20 sys=0.00, real=0.03 secs]
    41505.435: [GC 41505.436: [ParNew: 461103K->52624K(512000K), 0.0523886 secs] 743948K->335678K(4091904K), 0.0526344 secs] [Times: user=0.16 sys=0.00, real=0.05 secs]
    43179.292: [GC 43179.292: [ParNew: 462224K->56836K(512000K), 0.0338653 secs] 745278K->340377K(4091904K), 0.0341173 secs] [Times: user=0.20 sys=0.00, real=0.04 secs]
    43272.059: [GC 43272.059: [ParNew: 466436K->53555K(512000K), 0.0223245 secs] 749977K->337311K(4091904K), 0.0225554 secs] [Times: user=0.22 sys=0.01, real=0.02 secs]
    43275.516: [GC 43275.516: [ParNew: 463155K->58686K(512000K), 0.0386228 secs] 746911K->342598K(4091904K), 0.0388130 secs] [Times: user=0.27 sys=0.00, real=0.04 secs]
    43512.474: [GC 43512.474: [ParNew: 468286K->69833K(512000K), 0.0364445 secs] 752198K->353809K(4091904K), 0.0368920 secs] [Times: user=0.33 sys=0.00, real=0.04 secs]
    43516.298: [GC 43516.298: [ParNew: 479433K->66598K(512000K), 0.0303983 secs] 763409K->351401K(4091904K), 0.0305894 secs] [Times: user=0.31 sys=0.00, real=0.03 secs]
    43519.430: [GC 43519.430: [ParNew: 476198K->65372K(512000K), 0.0390751 secs] 761001K->355333K(4091904K), 0.0392662 secs] [Times: user=0.30 sys=0.00, real=0.04 secs]
    43715.970: [GC 43715.971: [ParNew: 474966K->58904K(512000K), 0.0374052 secs] 764927K->354223K(4091904K), 0.0376592 secs] [Times: user=0.30 sys=0.03, real=0.04 secs]
    43956.132: [GC 43956.132: [ParNew: 468504K->58418K(512000K), 0.0376996 secs] 763823K->354090K(4091904K), 0.0379415 secs] [Times: user=0.16 sys=0.00, real=0.04 secs]
    44225.128: [GC 44225.128: [ParNew: 468018K->59711K(512000K), 0.0424557 secs] 763690K->355503K(4091904K), 0.0427039 secs] [Times: user=0.17 sys=0.00, real=0.04 secs]
    44812.193: [GC 44812.193: [ParNew: 469311K->60634K(512000K), 0.0325334 secs] 765103K->356558K(4091904K), 0.0327903 secs] [Times: user=0.38 sys=0.00, real=0.03 secs]
    44815.197: [GC 44815.198: [ParNew: 470234K->62684K(512000K), 0.0257770 secs] 766158K->358675K(4091904K), 0.0259701 secs] [Times: user=0.39 sys=0.00, real=0.03 secs]
    46458.462: [GC 46458.463: [ParNew: 472284K->63304K(512000K), 0.0631213 secs] 768275K->362807K(4091904K), 0.0634108 secs] [Times: user=0.27 sys=0.00, real=0.06 secs]
    47316.959: [GC 47316.960: [ParNew: 472904K->65317K(512000K), 0.0445073 secs] 772407K->367990K(4091904K), 0.0447574 secs] [Times: user=0.20 sys=0.00, real=0.04 secs]
    47557.919: [GC 47557.919: [ParNew: 474917K->57938K(512000K), 0.0366716 secs] 777590K->362219K(4091904K), 0.0369218 secs] [Times: user=0.22 sys=0.00, real=0.04 secs]
    47856.376: [GC 47856.376: [ParNew: 467538K->56887K(512000K), 0.0432570 secs] 771819K->361679K(4091904K), 0.0435125 secs] [Times: user=0.30 sys=0.00, real=0.04 secs]
    49185.041: [GC 49185.041: [ParNew: 466487K->59302K(512000K), 0.0410893 secs] 771279K->364296K(4091904K), 0.0413682 secs] [Times: user=0.30 sys=0.00, real=0.04 secs]
    50527.809: [GC 50527.809: [ParNew: 468902K->58648K(512000K), 0.0450556 secs] 773896K->365509K(4091904K), 0.0453105 secs] [Times: user=0.26 sys=0.00, real=0.05 secs]
    51036.703: [GC 51036.703: [ParNew: 468248K->57601K(512000K), 0.0394472 secs] 775109K->366602K(4091904K), 0.0396978 secs] [Times: user=0.16 sys=0.00, real=0.04 secs]
    51278.070: [GC 51278.070: [ParNew: 467201K->45156K(512000K), 0.0517658 secs] 776202K->366024K(4091904K), 0.0520165 secs] [Times: user=0.39 sys=0.00, real=0.05 secs]
    51996.960: [GC 51996.960: [ParNew: 454756K->39538K(512000K), 0.0324129 secs] 775624K->362172K(4091904K), 0.0326654 secs] [Times: user=0.22 sys=0.00, real=0.03 secs]
    53844.699: [GC 53844.699: [ParNew: 449138K->38287K(512000K), 0.0318627 secs] 771772K->362188K(4091904K), 0.0321142 secs] [Times: user=0.16 sys=0.00, real=0.03 secs]
    54518.895: [GC 54518.895: [ParNew: 447887K->42840K(512000K), 0.0396710 secs] 771788K->368841K(4091904K), 0.0399283 secs] [Times: user=0.26 sys=0.00, real=0.04 secs]
    54768.382: [GC 54768.382: [ParNew: 452440K->33462K(512000K), 0.0440392 secs] 778441K->359656K(4091904K), 0.0442879 secs] [Times: user=0.11 sys=0.00, real=0.05 secs]
    55176.014: [GC 55176.015: [ParNew: 443062K->39528K(512000K), 0.0329002 secs] 769256K->365820K(4091904K), 0.0331580 secs] [Times: user=0.17 sys=0.00, real=0.03 secs]
    56544.587: [GC 56544.588: [ParNew: 449128K->38624K(512000K), 0.0298293 secs] 775420K->365077K(4091904K), 0.0300790 secs] [Times: user=0.14 sys=0.00, real=0.03 secs]
    57817.297: [GC 57817.297: [ParNew: 448216K->25904K(512000K), 0.0581534 secs] 774669K->365013K(4091904K), 0.0584113 secs] [Times: user=0.42 sys=0.02, real=0.06 secs]
    58248.498: [GC 58248.498: [ParNew: 435504K->19619K(512000K), 0.0366188 secs] 774613K->362521K(4091904K), 0.0369083 secs] [Times: user=0.09 sys=0.00, real=0.04 secs]
    58494.847: [GC 58494.847: [ParNew: 429219K->18701K(512000K), 0.0250597 secs] 772121K->361709K(4091904K), 0.0254419 secs] [Times: user=0.03 sys=0.00, real=0.03 secs]
    59244.328: [GC 59244.328: [ParNew: 428301K->23266K(512000K), 0.0242253 secs] 771309K->366340K(4091904K), 0.0244769 secs] [Times: user=0.02 sys=0.00, real=0.02 secs]
    61044.492: [GC 61044.492: [ParNew: 432866K->24931K(512000K), 0.0267541 secs] 775940K->368047K(4091904K), 0.0270119 secs] [Times: user=0.09 sys=0.00, real=0.03 secs]
    61046.169: [GC 61046.170: [ParNew: 434531K->54275K(512000K), 0.0453869 secs] 777647K->397596K(4091904K), 0.0455804 secs] [Times: user=0.55 sys=0.00, real=0.05 secs]
    61047.891: [GC 61047.891: [ParNew: 463875K->89091K(512000K), 0.0727891 secs] 807196K->432508K(4091904K), 0.0729822 secs] [Times: user=0.92 sys=0.00, real=0.07 secs]
    61049.764: [GC 61049.764: [ParNew: 498691K->102400K(512000K), 0.1413109 secs] 842108K->456742K(4091904K), 0.1415073 secs] [Times: user=1.67 sys=0.02, real=0.14 secs]
    61051.710: [GC 61051.710: [ParNew: 512000K->71683K(512000K), 0.1523303 secs] 866342K->470992K(4091904K), 0.1525238 secs] [Times: user=1.47 sys=0.03, real=0.15 secs]
    61053.638: [GC 61053.638: [ParNew: 481283K->84992K(512000K), 0.0754106 secs] 880592K->484300K(4091904K), 0.0756037 secs] [Times: user=0.76 sys=0.00, real=0.08 secs]
    61055.472: [GC 61055.472: [ParNew: 494592K->89088K(512000K), 0.1691948 secs] 893900K->488396K(4091904K), 0.1694339 secs] [Times: user=2.04 sys=0.00, real=0.17 secs]
    61063.844: [GC 61063.844: [ParNew: 498688K->84996K(512000K), 0.2110614 secs] 897996K->484305K(4091904K), 0.2112596 secs] [Times: user=2.65 sys=0.00, real=0.21 secs]
    61066.864: [GC 61066.864: [ParNew: 494596K->63506K(512000K), 0.3469430 secs] 893905K->462815K(4091904K), 0.3471471 secs] [Times: user=4.01 sys=0.00, real=0.35 secs]
    61070.210: [GC 61070.211: [ParNew: 473106K->88069K(512000K), 0.3459064 secs] 872415K->487378K(4091904K), 0.3461162 secs] [Times: user=4.40 sys=0.00, real=0.35 secs]
    61655.583: [GC 61655.583: [ParNew: 497669K->80887K(512000K), 0.3839315 secs] 896978K->480196K(4091904K), 0.3842004 secs] [Times: user=4.67 sys=0.00, real=0.38 secs]
    61944.377: [GC 61944.377: [ParNew: 490487K->55703K(512000K), 0.4498726 secs] 889796K->455011K(4091904K), 0.4501261 secs] [Times: user=5.51 sys=0.00, real=0.45 secs]
    62171.215: [GC 62171.216: [ParNew: 465303K->56084K(512000K), 0.4050095 secs] 864611K->455393K(4091904K), 0.4052578 secs] [Times: user=4.90 sys=0.00, real=0.40 secs]
    63174.670: [GC 63174.670: [ParNew: 465684K->57885K(512000K), 0.3867162 secs] 864993K->457194K(4091904K), 0.3869640 secs] [Times: user=4.60 sys=0.00, real=0.39 secs]
    64895.797: [GC 64895.797: [ParNew: 467485K->56847K(512000K), 0.4494808 secs] 866794K->456156K(4091904K), 0.4497343 secs] [Times: user=5.69 sys=0.00, real=0.45 secs]
    65434.970: [GC 65434.971: [ParNew: 466447K->58570K(512000K), 0.4445965 secs] 865756K->457878K(4091904K), 0.4448476 secs] [Times: user=5.69 sys=0.00, real=0.44 secs]
    65676.649: [GC 65676.649: [ParNew: 468170K->60754K(512000K), 0.4489431 secs] 867478K->460062K(4091904K), 0.4492043 secs] [Times: user=5.68 sys=0.00, real=0.45 secs]
    66395.454: [GC 66395.454: [ParNew: 470354K->52453K(512000K), 0.4539983 secs] 869662K->456476K(4091904K), 0.4544276 secs] [Times: user=5.51 sys=0.00, real=0.45 secs]
    68244.029: [GC 68244.030: [ParNew: 462053K->45371K(512000K), 0.4094800 secs] 866076K->453703K(4091904K), 0.4097292 secs] [Times: user=4.98 sys=0.00, real=0.41 secs]
    68279.497: [GC 68279.497: [ParNew: 454971K->50623K(512000K), 0.4998648 secs] 863303K->463802K(4091904K), 0.5001083 secs] [Times: user=6.27 sys=0.02, real=0.50 secs]
    68333.895: [GC 68333.895: [ParNew: 460223K->43755K(512000K), 0.4056409 secs] 873402K->461687K(4091904K), 0.4060793 secs] [Times: user=4.94 sys=0.00, real=0.41 secs]
    68496.436: [GC 68496.437: [ParNew: 453355K->37381K(512000K), 0.3302000 secs] 871287K->459936K(4091904K), 0.3305232 secs] [Times: user=4.01 sys=0.00, real=0.33 secs]
    69035.763: [GC 69035.763: [ParNew: 446981K->33939K(512000K), 0.2593712 secs] 869536K->460235K(4091904K), 0.2596214 secs] [Times: user=3.26 sys=0.00, real=0.26 secs]
    69275.773: [GC 69275.773: [ParNew: 443539K->30967K(512000K), 0.1814783 secs] 869835K->461208K(4091904K), 0.1817390 secs] [Times: user=2.04 sys=0.00, real=0.18 secs]
    69995.443: [GC 69995.444: [ParNew: 440567K->27334K(512000K), 0.1169546 secs] 870808K->461505K(4091904K), 0.1172129 secs] [Times: user=1.43 sys=0.00, real=0.12 secs]
    71232.927: [GC 71232.927: [ParNew: 436934K->24225K(512000K), 0.0283750 secs] 871105K->460367K(4091904K), 0.0286348 secs] [Times: user=0.14 sys=0.00, real=0.03 secs]
    72095.340: [GC 72095.341: [ParNew: 433825K->34199K(512000K), 0.0302302 secs] 869967K->470857K(4091904K), 0.0304857 secs] [Times: user=0.20 sys=0.00, real=0.03 secs]
    72635.335: [GC 72635.335: [ParNew: 443799K->36365K(512000K), 0.0319424 secs] 880457K->473137K(4091904K), 0.0321992 secs] [Times: user=0.20 sys=0.00, real=0.03 secs]
    72871.821: [GC 72871.821: [ParNew: 445965K->31839K(512000K), 0.0340256 secs] 882737K->468738K(4091904K), 0.0344208 secs] [Times: user=0.11 sys=0.00, real=0.04 secs]
    73386.395: [GC 73386.395: [ParNew: 441439K->35675K(512000K), 0.0330663 secs] 878338K->473000K(4091904K), 0.0333155 secs] [Times: user=0.11 sys=0.00, real=0.03 secs]
    73390.109: [GC 73390.110: [ParNew: 445275K->37935K(512000K), 0.0190615 secs] 882600K->475366K(4091904K), 0.0192982 secs] [Times: user=0.13 sys=0.00, real=0.02 secs]
    73392.636: [GC 73392.636: [ParNew: 447535K->48188K(512000K), 0.0238565 secs] 884966K->486316K(4091904K), 0.0240572 secs] [Times: user=0.16 sys=0.00, real=0.02 secs]
    73394.966: [GC 73394.966: [ParNew: 457788K->58369K(512000K), 0.0327783 secs] 895916K->496591K(4091904K), 0.0329746 secs] [Times: user=0.20 sys=0.00, real=0.03 secs]
    74355.187: [GC 74355.188: [ParNew: 467968K->52848K(512000K), 0.0474260 secs] 906190K->491313K(4091904K), 0.0477184 secs] [Times: user=0.13 sys=0.00, real=0.05 secs]
    75714.655: [GC 75714.655: [ParNew: 462448K->52664K(512000K), 0.0532509 secs] 900913K->491577K(4091904K), 0.0535860 secs] [Times: user=0.23 sys=0.00, real=0.05 secs]
    76229.060: [GC 76229.060: [ParNew: 462259K->58594K(512000K), 0.0386934 secs] 901172K->497621K(4091904K), 0.0389469 secs] [Times: user=0.42 sys=0.00, real=0.04 secs]
    76477.506: [GC 76477.506: [ParNew: 468194K->56008K(512000K), 0.0325089 secs] 907221K->495757K(4091904K), 0.0327687 secs] [Times: user=0.22 sys=0.00, real=0.03 secs]
    77196.334: [GC 77196.334: [ParNew: 465608K->55319K(512000K), 0.0384466 secs] 905357K->495150K(4091904K), 0.0386973 secs] [Times: user=0.19 sys=0.00, real=0.04 secs]
    79044.115: [GC 79044.116: [ParNew: 464919K->54148K(512000K), 0.0309811 secs] 904750K->494054K(4091904K), 0.0312404 secs] [Times: user=0.22 sys=0.00, real=0.03 secs]
    79753.503: [GC 79753.503: [ParNew: 463748K->56574K(512000K), 0.0375402 secs] 903654K->496550K(4091904K), 0.0377999 secs] [Times: user=0.33 sys=0.00, real=0.04 secs]
    79957.530: [GC 79957.531: [ParNew: 466174K->55673K(512000K), 0.0315290 secs] 906150K->496337K(4091904K), 0.0317748 secs] [Times: user=0.20 sys=0.00, real=0.03 secs]
    80260.541: [GC 80260.541: [ParNew: 465273K->50897K(512000K), 0.0543182 secs] 905937K->493311K(4091904K), 0.0545731 secs] [Times: user=0.23 sys=0.00, real=0.05 secs]
    80923.641: [GC 80923.641: [ParNew: 460497K->58328K(512000K), 0.0346484 secs] 902911K->500834K(4091904K), 0.0348942 secs] [Times: user=0.28 sys=0.00, real=0.04 secs]
    80927.252: [GC 80927.252: [ParNew: 467928K->59419K(512000K), 0.0293281 secs] 910434K->502016K(4091904K), 0.0295249 secs] [Times: user=0.31 sys=0.00, real=0.03 secs]
    80929.674: [GC 80929.674: [ParNew: 469019K->66744K(512000K), 0.0334908 secs] 911616K->509388K(4091904K), 0.0336862 secs] [Times: user=0.30 sys=0.00, real=0.03 secs]
    80932.751: [GC 80932.752: [ParNew: 476344K->72060K(512000K), 0.0387899 secs] 918988K->518290K(4091904K), 0.0389873 secs] [Times: user=0.48 sys=0.00, real=0.04 secs]
    82807.647: [GC 82807.647: [ParNew: 481660K->63117K(512000K), 0.0642674 secs] 927890K->515315K(4091904K), 0.0645521 secs] [Times: user=0.16 sys=0.00, real=0.06 secs]
    83377.222: [GC 83377.222: [ParNew: 472717K->61289K(512000K), 0.0535759 secs] 924915K->518246K(4091904K), 0.0539235 secs] [Times: user=0.39 sys=0.00, real=0.06 secs]
    83618.173: [GC 83618.174: [ParNew: 470889K->62255K(512000K), 0.0341188 secs] 927846K->520175K(4091904K), 0.0343761 secs] [Times: user=0.22 sys=0.00, real=0.03 secs]
    83694.848: [GC 83694.849: [ParNew: 471855K->55487K(512000K), 0.0300026 secs] 929775K->513504K(4091904K), 0.0302398 secs] [Times: user=0.31 sys=0.00, real=0.03 secs]
    83697.480: [GC 83697.480: [ParNew: 465087K->58474K(512000K), 0.0302773 secs] 923104K->516555K(4091904K), 0.0305207 secs] [Times: user=0.31 sys=0.00, real=0.03 secs]
    83700.910: [GC 83700.910: [ParNew: 468074K->62613K(512000K), 0.0269294 secs] 926155K->520723K(4091904K), 0.0271209 secs] [Times: user=0.13 sys=0.00, real=0.03 secs]
    83834.204: [GC 83834.204: [ParNew: 472213K->59885K(512000K), 0.0274296 secs] 930323K->518061K(4091904K), 0.0276731 secs] [Times: user=0.36 sys=0.00, real=0.03 secs]
    84396.228: [GC 84396.228: [ParNew: 469485K->62006K(512000K), 0.0350464 secs] 927661K->520330K(4091904K), 0.0353028 secs] [Times: user=0.20 sys=0.00, real=0.04 secs]
    86244.121: [GC 86244.121: [ParNew: 471606K->60568K(512000K), 0.0351712 secs] 929930K->519097K(4091904K), 0.0354257 secs] [Times: user=0.39 sys=0.00, real=0.04 secs]
    86470.078: [GC 86470.078: [ParNew: 470168K->59055K(512000K), 0.0267589 secs] 928697K->517874K(4091904K), 0.0270119 secs] [Times: user=0.22 sys=0.00, real=0.03 secs]
    86472.726: [GC 86472.726: [ParNew: 468655K->61257K(512000K), 0.0285359 secs] 927474K->520167K(4091904K), 0.0287265 secs] [Times: user=0.20 sys=0.00, real=0.03 secs]
    86708.105: [GC 86708.105: [ParNew: 470857K->55972K(512000K), 0.0518023 secs] 929767K->521733K(4091904K), 0.0520515 secs] [Times: user=0.42 sys=0.02, real=0.05 secs]
    86710.227: [GC 86710.227: [ParNew: 465572K->51017K(512000K), 0.0310911 secs] 931333K->523158K(4091904K), 0.0312798 secs] [Times: user=0.40 sys=0.00, real=0.03 secs]
    87035.161: [GC 87035.161: [ParNew: 460617K->50416K(512000K), 0.0343675 secs] 932758K->525532K(4091904K), 0.0346291 secs] [Times: user=0.20 sys=0.02, real=0.03 secs]
    87252.755: [GC 87252.755: [ParNew: 460016K->51579K(512000K), 0.0510389 secs] 935132K->527997K(4091904K), 0.0513409 secs] [Times: user=0.16 sys=0.00, real=0.05 secs]
    87919.384: [GC 87919.384: [ParNew: 461172K->46331K(512000K), 0.0501526 secs] 937590K->524057K(4091904K), 0.0504445 secs] [Times: user=0.09 sys=0.00, real=0.05 secs]
    88012.436: [GC 88012.437: [ParNew: 455931K->46451K(512000K), 0.0241365 secs] 933657K->524268K(4091904K), 0.0244212 secs] [Times: user=0.30 sys=0.00, real=0.03 secs]
    88304.411: [GC 88304.412: [ParNew: 456051K->45291K(512000K), 0.0352485 secs] 933868K->523240K(4091904K), 0.0356278 secs] [Times: user=0.13 sys=0.00, real=0.04 secs]
    90094.813: [GC 90094.814: [ParNew: 454891K->50046K(512000K), 0.0520481 secs] 932840K->528818K(4091904K), 0.0523084 secs] [Times: user=0.42 sys=0.00, real=0.05 secs]
    90635.015: [GC 90635.015: [ParNew: 459646K->51166K(512000K), 0.0375080 secs] 938418K->531890K(4091904K), 0.0377653 secs] [Times: user=0.23 sys=0.00, real=0.04 secs]
    90875.065: [GC 90875.065: [ParNew: 460766K->48468K(512000K), 0.0303637 secs] 941490K->529772K(4091904K), 0.0306220 secs] [Times: user=0.22 sys=0.00, real=0.03 secs]
    91535.418: [GC 91535.419: [ParNew: 458068K->48786K(512000K), 0.0350152 secs] 939372K->530782K(4091904K), 0.0352759 secs] [Times: user=0.22 sys=0.02, real=0.04 secs]
    93334.864: [GC 93334.864: [ParNew: 458386K->47728K(512000K), 0.0356739 secs] 940382K->530564K(4091904K), 0.0359260 secs] [Times: user=0.16 sys=0.00, real=0.04 secs]
    94117.088: [GC 94117.088: [ParNew: 457328K->48777K(512000K), 0.0359029 secs] 940164K->532100K(4091904K), 0.0361636 secs] [Times: user=0.42 sys=0.00, real=0.04 secs]
    94369.127: [GC 94369.127: [ParNew: 458377K->43953K(512000K), 0.0366140 secs] 941700K->528558K(4091904K), 0.0368680 secs] [Times: user=0.16 sys=0.00, real=0.04 secs]
    94715.461: [GC 94715.461: [ParNew: 453553K->42312K(512000K), 0.0375051 secs] 938158K->529392K(4091904K), 0.0377610 secs] [Times: user=0.22 sys=0.02, real=0.04 secs]
    96143.528: [GC 96143.528: [ParNew: 451912K->41892K(512000K), 0.0318228 secs] 938992K->529470K(4091904K), 0.0320883 secs] [Times: user=0.22 sys=0.00, real=0.03 secs]
    97382.959: [GC 97382.959: [ParNew: 451492K->42181K(512000K), 0.0371633 secs] 939070K->532743K(4091904K), 0.0374168 secs] [Times: user=0.16 sys=0.00, real=0.04 secs]
    97895.018: [GC 97895.018: [ParNew: 451781K->37667K(512000K), 0.0344117 secs] 942343K->530262K(4091904K), 0.0346704 secs] [Times: user=0.22 sys=0.00, real=0.03 secs]
    98077.995: [GC 98077.995: [ParNew: 447267K->40419K(512000K), 0.0281287 secs] 939862K->533188K(4091904K), 0.0283846 secs] [Times: user=0.22 sys=0.00, real=0.03 secs]
    98843.554: [GC 98843.554: [ParNew: 450019K->36176K(512000K), 0.0302619 secs] 942788K->528995K(4091904K), 0.0305178 secs] [Times: user=0.14 sys=0.00, real=0.03 secs]
    100763.894: [GC 100763.894: [ParNew: 445776K->38543K(512000K), 0.0492341 secs] 938595K->533660K(4091904K), 0.0494804 secs] [Times: user=0.14 sys=0.02, real=0.05 secs]
    101375.929: [GC 101375.929: [ParNew: 448143K->23169K(512000K), 0.0533090 secs] 943260K->533250K(4091904K), 0.0535726 secs] [Times: user=0.37 sys=0.03, real=0.05 secs]
    101617.962: [GC 101617.962: [ParNew: 432769K->19499K(512000K), 0.0215423 secs] 942850K->529705K(4091904K), 0.0218059 secs] [Times: user=0.22 sys=0.00, real=0.02 secs]
    102038.879: [GC 102038.879: [ParNew: 429099K->18371K(512000K), 0.0275271 secs] 939305K->528643K(4091904K), 0.0277849 secs] [Times: user=0.11 sys=0.00, real=0.03 secs]
    103416.932: [GC 103416.932: [ParNew: 427971K->17025K(512000K), 0.0336679 secs] 938243K->527355K(4091904K), 0.0339267 secs] [Times: user=0.11 sys=0.00, real=0.03 secs]
    104721.630: [GC 104721.630: [ParNew: 426625K->21217K(512000K), 0.0293660 secs] 936955K->531612K(4091904K), 0.0296786 secs] [Times: user=0.14 sys=0.00, real=0.03 secs]
    105143.669: [GC 105143.670: [ParNew: 430817K->18876K(512000K), 0.0241729 secs] 941212K->529422K(4091904K), 0.0244687 secs] [Times: user=0.16 sys=0.00, real=0.03 secs]
    105334.980: [GC 105334.980: [ParNew: 428476K->20593K(512000K), 0.0231167 secs] 939022K->531211K(4091904K), 0.0233721 secs] [Times: user=0.02 sys=0.00, real=0.02 secs]
    106260.002: [GC 106260.002: [ParNew: 430193K->17966K(512000K), 0.0376400 secs] 940811K->528638K(4091904K), 0.0378979 secs] [Times: user=0.05 sys=0.00, real=0.04 secs]
    108036.662: [GC 108036.662: [ParNew: 427566K->23968K(512000K), 0.0256925 secs] 938238K->534687K(4091904K), 0.0259523 secs] [Times: user=0.03 sys=0.00, real=0.03 secs]
    108634.709: [GC 108634.709: [ParNew: 433568K->23576K(512000K), 0.0262836 secs] 944287K->534401K(4091904K), 0.0265457 secs] [Times: user=0.01 sys=0.00, real=0.03 secs]
    108874.778: [GC 108874.778: [ParNew: 433176K->21601K(512000K), 0.0227777 secs] 944001K->532671K(4091904K), 0.0230365 secs] [Times: user=0.19 sys=0.00, real=0.02 secs]
    109538.965: [GC 109538.966: [ParNew: 431193K->19752K(512000K), 0.0269961 secs] 942264K->530898K(4091904K), 0.0273864 secs] [Times: user=0.02 sys=0.00, real=0.03 secs]
    111263.615: [GC 111263.615: [ParNew: 429352K->21855K(512000K), 0.0398428 secs] 940498K->533096K(4091904K), 0.0400983 secs] [Times: user=0.05 sys=0.00, real=0.04 secs]
    112115.496: [GC 112115.496: [ParNew: 431455K->21720K(512000K), 0.0259153 secs] 942696K->533099K(4091904K), 0.0261780 secs] [Times: user=0.20 sys=0.00, real=0.03 secs]
    112413.364: [GC 112413.365: [ParNew: 431320K->19830K(512000K), 0.0423241 secs] 942699K->531368K(4091904K), 0.0426453 secs] [Times: user=0.06 sys=0.00, real=0.04 secs]
    112655.609: [GC 112655.610: [ParNew: 429430K->22499K(512000K), 0.0221185 secs] 940968K->534160K(4091904K), 0.0223797 secs] [Times: user=0.20 sys=0.00, real=0.02 secs]
    114092.583: [GC 114092.583: [ParNew: 432094K->16211K(512000K), 0.0383506 secs] 943755K->527973K(4091904K), 0.0387232 secs] [Times: user=0.08 sys=0.00, real=0.04 secs]
    114796.291: [GC 114796.291: [ParNew: 425811K->28337K(512000K), 0.0401977 secs] 937573K->540618K(4091904K), 0.0404953 secs] [Times: user=0.08 sys=0.00, real=0.04 secs]
    115714.774: [GC 115714.775: [ParNew: 437930K->35096K(512000K), 0.0310805 secs] 950210K->547815K(4091904K), 0.0313379 secs] [Times: user=0.22 sys=0.00, real=0.03 secs]
    115956.960: [GC 115956.960: [ParNew: 444696K->34512K(512000K), 0.0287116 secs] 957415K->547352K(4091904K), 0.0289689 secs] [Times: user=0.17 sys=0.00, real=0.03 secs]
    116242.192: [GC 116242.192: [ParNew: 444112K->35530K(512000K), 0.0431019 secs] 956952K->549051K(4091904K), 0.0435633 secs] [Times: user=0.06 sys=0.00, real=0.04 secs]
    116580.861: [GC 116580.861: [ParNew: 445130K->36285K(512000K), 0.0226644 secs] 958651K->550231K(4091904K), 0.0229193 secs] [Times: user=0.14 sys=0.00, real=0.02 secs]
    116583.431: [GC 116583.431: [ParNew: 445885K->41024K(512000K), 0.0242699 secs] 959831K->555066K(4091904K), 0.0244620 secs] [Times: user=0.25 sys=0.00, real=0.02 secs]
    116585.884: [GC 116585.884: [ParNew: 450624K->51263K(512000K), 0.0265164 secs] 964666K->565423K(4091904K), 0.0267143 secs] [Times: user=0.22 sys=0.00, real=0.03 secs]
    116734.962: [GC 116734.963: [ParNew: 460863K->51632K(512000K), 0.0302297 secs] 975023K->565857K(4091904K), 0.0304799 secs] [Times: user=0.36 sys=0.00, real=0.03 secs]
    118468.292: [GC 118468.292: [ParNew: 461232K->55308K(512000K), 0.0495140 secs] 975457K->569610K(4091904K), 0.0497728 secs] [Times: user=0.11 sys=0.00, real=0.05 secs]
    119315.475: [GC 119315.476: [ParNew: 464908K->56342K(512000K), 0.0365468 secs] 979210K->570704K(4091904K), 0.0368046 secs] [Times: user=0.22 sys=0.00, real=0.04 secs]
    119614.275: [GC 119614.276: [ParNew: 465942K->53868K(512000K), 0.0340530 secs] 980304K->568408K(4091904K), 0.0343113 secs] [Times: user=0.22 sys=0.00, real=0.03 secs]
    119855.176: [GC 119855.176: [ParNew: 463468K->56679K(512000K), 0.0346604 secs] 978008K->571290K(4091904K), 0.0350027 secs] [Times: user=0.36 sys=0.00, real=0.04 secs]
    121231.566: [GC 121231.566: [ParNew: 466276K->55675K(512000K), 0.0440790 secs] 980887K->570335K(4091904K), 0.0444170 secs] [Times: user=0.08 sys=0.00, real=0.05 secs]
    122496.172: [GC 122496.172: [ParNew: 465275K->59904K(512000K), 0.0345312 secs] 979935K->574593K(4091904K), 0.0347905 secs] [Times: user=0.19 sys=0.00, real=0.04 secs]
    123035.316: [GC 123035.316: [ParNew: 469504K->58582K(512000K), 0.0365213 secs] 984193K->573383K(4091904K), 0.0368661 secs] [Times: user=0.22 sys=0.00, real=0.04 secs]
    123276.676: [GC 123276.677: [ParNew: 468182K->55581K(512000K), 0.0354386 secs] 982983K->572438K(4091904K), 0.0357195 secs] [Times: user=0.22 sys=0.00, real=0.04 secs]
    123994.409: [GC 123994.409: [ParNew: 465181K->52792K(512000K), 0.0345610 secs] 982038K->570090K(4091904K), 0.0348639 secs] [Times: user=0.20 sys=0.00, real=0.04 secs]
    124164.347: [GC 124164.348: [ParNew: 462392K->58328K(512000K), 0.0287730 secs] 979690K->575993K(4091904K), 0.0290251 secs] [Times: user=0.37 sys=0.00, real=0.03 secs]
    124167.983: [GC 124167.983: [ParNew: 467928K->56373K(512000K), 0.0252431 secs] 985593K->574118K(4091904K), 0.0254381 secs] [Times: user=0.34 sys=0.00, real=0.02 secs]
    124170.481: [GC 124170.482: [ParNew: 465973K->61168K(512000K), 0.0311785 secs] 983718K->580042K(4091904K), 0.0313739 secs] [Times: user=0.25 sys=0.00, real=0.03 secs]
    126035.238: [GC 126035.238: [ParNew: 470768K->56072K(512000K), 0.0514907 secs] 989642K->580772K(4091904K), 0.0518191 secs] [Times: user=0.40 sys=0.00, real=0.05 secs]
    126577.173: [GC 126577.173: [ParNew: 465672K->50123K(512000K), 0.0460696 secs] 990372K->581096K(4091904K), 0.0463265 secs] [Times: user=0.31 sys=0.00, real=0.05 secs]
    126863.704: [GC 126863.704: [ParNew: 459723K->48713K(512000K), 0.0512809 secs] 990696K->582385K(4091904K), 0.0515834 secs] [Times: user=0.16 sys=0.00, real=0.05 secs]
    126952.247: [GC 126952.247: [ParNew: 458313K->52794K(512000K), 0.0381989 secs] 991985K->587014K(4091904K), 0.0384385 secs] [Times: user=0.22 sys=0.00, real=0.04 secs]
    126955.763: [GC 126955.763: [ParNew: 462394K->55344K(512000K), 0.0248163 secs] 996614K->589683K(4091904K), 0.0250146 secs] [Times: user=0.33 sys=0.00, real=0.02 secs]
    126958.723: [GC 126958.724: [ParNew: 464944K->62916K(512000K), 0.0336449 secs] 999283K->597372K(4091904K), 0.0338446 secs] [Times: user=0.22 sys=0.00, real=0.03 secs]
    126995.079: [GC 126995.079: [ParNew: 472516K->57891K(512000K), 0.0263081 secs] 1006972K->592409K(4091904K), 0.0265284 secs] [Times: user=0.17 sys=0.00, real=0.03 secs]
    127594.085: [GC 127594.085: [ParNew: 467491K->58482K(512000K), 0.0325454 secs] 1002009K->593144K(4091904K), 0.0328018 secs] [Times: user=0.22 sys=0.00, real=0.03 secs]
    129285.767: [GC 129285.767: [ParNew: 468082K->60736K(512000K), 0.0543187 secs] 1002744K->595574K(4091904K), 0.0546860 secs] [Times: user=0.19 sys=0.00, real=0.06 secs]
    129731.379: [GC 129731.379: [ParNew: 470336K->65348K(512000K), 0.0339541 secs] 1005174K->600340K(4091904K), 0.0342100 secs] [Times: user=0.14 sys=0.00, real=0.03 secs]
    129734.071: [GC 129734.071: [ParNew: 474948K->64697K(512000K), 0.0287116 secs] 1009940K->599782K(4091904K), 0.0289056 secs] [Times: user=0.25 sys=0.00, real=0.03 secs]
    129737.795: [GC 129737.795: [ParNew: 474297K->66969K(512000K), 0.0295288 secs] 1009382K->602156K(4091904K), 0.0297309 secs] [Times: user=0.25 sys=0.00, real=0.03 secs]
    129963.140: [GC 129963.140: [ParNew: 476569K->65210K(512000K), 0.0344904 secs] 1011756K->600419K(4091904K), 0.0347482 secs] [Times: user=0.23 sys=0.00, real=0.03 secs]
    130003.107: [GC 130003.108: [ParNew: 474810K->62651K(512000K), 0.0369842 secs] 1010019K->600582K(4091904K), 0.0372026 secs] [Times: user=0.42 sys=0.02, real=0.04 secs]
    130295.661: [GC 130295.662: [ParNew: 472251K->63777K(512000K), 0.0415708 secs] 1010182K->604896K(4091904K), 0.0418301 secs] [Times: user=0.33 sys=0.00, real=0.04 secs]
    130495.432: [GC 130495.432: [ParNew: 473286K->65376K(512000K), 0.0371248 secs] 1014405K->606957K(4091904K), 0.0373803 secs] [Times: user=0.33 sys=0.00, real=0.04 secs]
    131207.362: [GC 131207.363: [ParNew: 474976K->65773K(512000K), 0.0445841 secs] 1016557K->607430K(4091904K), 0.0448443 secs] [Times: user=0.23 sys=0.00, real=0.04 secs]
    131211.698: [GC 131211.698: [ParNew: 475373K->64562K(512000K), 0.0286266 secs] 1017030K->606348K(4091904K), 0.0289008 secs] [Times: user=0.33 sys=0.00, real=0.03 secs]
    131849.676: [GC 131849.676: [ParNew: 474162K->57633K(512000K), 0.0778617 secs] 1015948K->611123K(4091904K), 0.0781608 secs] [Times: user=0.27 sys=0.02, real=0.08 secs]
    133296.202: [GC 133296.202: [ParNew: 467233K->58491K(512000K), 0.0427932 secs] 1020723K->613878K(4091904K), 0.0431048 secs] [Times: user=0.31 sys=0.00, real=0.04 secs]
    133837.845: [GC 133837.845: [ParNew: 468091K->59219K(512000K), 0.0402514 secs] 1023478K->616557K(4091904K), 0.0405102 secs] [Times: user=0.37 sys=0.00, real=0.04 secs]
    134077.246: [GC 134077.246: [ParNew: 468819K->55307K(512000K), 0.0332536 secs] 1026157K->612771K(4091904K), 0.0335138 secs] [Times: user=0.20 sys=0.00, real=0.03 secs]
    134795.254: [GC 134795.254: [ParNew: 464907K->53288K(512000K), 0.0358477 secs] 1022371K->611462K(4091904K), 0.0361099 secs] [Times: user=0.22 sys=0.02, real=0.04 secs]
    136642.971: [GC 136642.971: [ParNew: 462888K->52843K(512000K), 0.0329986 secs] 1021062K->612142K(4091904K), 0.0332641 secs] [Times: user=0.23 sys=0.00, real=0.03 secs]
    137357.180: [GC 137357.180: [ParNew: 462443K->52013K(512000K), 0.0571447 secs] 1021742K->611535K(4091904K), 0.0575922 secs] [Times: user=0.13 sys=0.00, real=0.06 secs]
    137616.244: [GC 137616.244: [ParNew: 461613K->52270K(512000K), 0.0357142 secs] 1021135K->614473K(4091904K), 0.0359701 secs] [Times: user=0.22 sys=0.00, real=0.04 secs]
    138006.584: [GC 138006.584: [ParNew: 461870K->49597K(512000K), 0.0503653 secs] 1024073K->612460K(4091904K), 0.0506673 secs] [Times: user=0.16 sys=0.00, real=0.05 secs]
    139342.946: [GC 139342.946: [ParNew: 459197K->46692K(512000K), 0.0404070 secs] 1022060K->613073K(4091904K), 0.0406720 secs] [Times: user=0.27 sys=0.00, real=0.04 secs]
    140615.906: [GC 140615.906: [ParNew: 456292K->43399K(512000K), 0.0398500 secs] 1022673K->614255K(4091904K), 0.0401160 secs] [Times: user=0.34 sys=0.00, real=0.04 secs]
    141142.629: [GC 141142.629: [ParNew: 452999K->42823K(512000K), 0.0358170 secs] 1023855K->614857K(4091904K), 0.0360748 secs] [Times: user=0.14 sys=0.00, real=0.04 secs]
    141333.920: [GC 141333.920: [ParNew: 452423K->45830K(512000K), 0.0311612 secs] 1024457K->617958K(4091904K), 0.0314257 secs] [Times: user=0.30 sys=0.00, real=0.03 secs]
    142044.980: [GC 142044.980: [ParNew: 455430K->39898K(512000K), 0.0472771 secs] 1027558K->612102K(4091904K), 0.0476022 secs] [Times: user=0.14 sys=0.00, real=0.05 secs]
    144034.951: [GC 144034.951: [ParNew: 449498K->37684K(512000K), 0.0409827 secs] 1021702K->616012K(4091904K), 0.0412338 secs] [Times: user=0.17 sys=0.02, real=0.04 secs]
    144577.066: [GC 144577.066: [ParNew: 447284K->25173K(512000K), 0.0495803 secs] 1025612K->617530K(4091904K), 0.0498448 secs] [Times: user=0.41 sys=0.02, real=0.05 secs]
    144817.613: [GC 144817.614: [ParNew: 434773K->19915K(512000K), 0.0215563 secs] 1027130K->612370K(4091904K), 0.0218184 secs] [Times: user=0.20 sys=0.00, real=0.02 secs]
    145294.201: [GC 145294.202: [ParNew: 429515K->24036K(512000K), 0.0232180 secs] 1021970K->616556K(4091904K), 0.0234652 secs] [Times: user=0.02 sys=0.00, real=0.02 secs]
    146793.448: [GC 146793.448: [ParNew: 433636K->18472K(512000K), 0.0216345 secs] 1026156K->611098K(4091904K), 0.0218832 secs] [Times: user=0.01 sys=0.00, real=0.02 secs]
    147443.494: [GC 147443.494: [ParNew: 428072K->43192K(512000K), 0.0346959 secs] 1020698K->635890K(4091904K), 0.0349705 secs] [Times: user=0.31 sys=0.00, real=0.03 secs]
    147445.082: [GC 147445.083: [ParNew: 452792K->57344K(512000K), 0.0888235 secs] 1045490K->650180K(4091904K), 0.0890136 secs] [Times: user=0.95 sys=0.00, real=0.09 secs]
    147446.803: [GC 147446.803: [ParNew: 466944K->93184K(512000K), 0.1095525 secs] 1059780K->686115K(4091904K), 0.1097796 secs] [Times: user=1.36 sys=0.00, real=0.11 secs]
    147448.566: [GC 147448.566: [ParNew: 502784K->102400K(512000K), 0.1849305 secs] 1095715K->711755K(4091904K), 0.1851220 secs] [Times: user=2.09 sys=0.03, real=0.18 secs]
    147450.240: [GC 147450.241: [ParNew: 512000K->69632K(512000K), 0.1632902 secs] 1121355K->693737K(4091904K), 0.1634947 secs] [Times: user=1.59 sys=0.05, real=0.16 secs]
    147451.799: [GC 147451.799: [ParNew: 479232K->102400K(512000K), 0.0859941 secs] 1103337K->726507K(4091904K), 0.0861876 secs] [Times: user=1.12 sys=0.00, real=0.09 secs]
    147459.474: [GC 147459.474: [ParNew: 512000K->102400K(512000K), 0.1182610 secs] 1136107K->737889K(4091904K), 0.1184828 secs] [Times: user=1.42 sys=0.01, real=0.12 secs]
    147461.627: [GC 147461.627: [ParNew: 512000K->47105K(512000K), 0.1865941 secs] 1147489K->724810K(4091904K), 0.1867991 secs] [Times: user=1.89 sys=0.09, real=0.19 secs]
    147464.049: [GC 147464.050: [ParNew: 456705K->69655K(512000K), 0.0616910 secs] 1134410K->747359K(4091904K), 0.0618941 secs] [Times: user=0.78 sys=0.00, real=0.06 secs]
    147695.386: [GC 147695.386: [ParNew: 479255K->68491K(512000K), 0.1180272 secs] 1156959K->746195K(4091904K), 0.1182898 secs] [Times: user=1.25 sys=0.00, real=0.12 secs]
    148235.165: [GC 148235.165: [ParNew: 478091K->37279K(512000K), 0.1886135 secs] 1155795K->714984K(4091904K), 0.1888867 secs] [Times: user=1.87 sys=0.00, real=0.19 secs]
    148476.093: [GC 148476.094: [ParNew: 446879K->37130K(512000K), 0.1614239 secs] 1124584K->714834K(4091904K), 0.1617739 secs] [Times: user=2.04 sys=0.00, real=0.16 secs]
    149193.996: [GC 149193.997: [ParNew: 446730K->36625K(512000K), 0.1582719 secs] 1124434K->714330K(4091904K), 0.1585321 secs] [Times: user=1.84 sys=0.00, real=0.16 secs]
    151042.483: [GC 151042.484: [ParNew: 446225K->40240K(512000K), 0.1391134 secs] 1123930K->717944K(4091904K), 0.1393770 secs] [Times: user=1.53 sys=0.00, real=0.14 secs]
    151717.256: [GC 151717.257: [ParNew: 449840K->39188K(512000K), 0.1544640 secs] 1127544K->716892K(4091904K), 0.1548169 secs] [Times: user=1.84 sys=0.00, real=0.16 secs]
    152015.354: [GC 152015.354: [ParNew: 448788K->38590K(512000K), 0.1536219 secs] 1126492K->716295K(4091904K), 0.1538941 secs] [Times: user=1.84 sys=0.00, real=0.15 secs]
    152372.277: [GC 152372.277: [ParNew: 448190K->38491K(512000K), 0.1324569 secs] 1125895K->716195K(4091904K), 0.1327176 secs] [Times: user=1.42 sys=0.00, real=0.13 secs]
    153742.504: [GC 153742.504: [ParNew: 448091K->40369K(512000K), 0.1213564 secs] 1125795K->718073K(4091904K), 0.1216180 secs] [Times: user=1.31 sys=0.00, real=0.12 secs]
    154670.568: [GC 154670.568: [ParNew: 449969K->44676K(512000K), 0.1243413 secs] 1127673K->722380K(4091904K), 0.1246092 secs] [Times: user=1.36 sys=0.00, real=0.13 secs]
    154734.066: [GC 154734.066: [ParNew: 454276K->43774K(512000K), 0.1465069 secs] 1131980K->721479K(4091904K), 0.1468689 secs] [Times: user=1.64 sys=0.00, real=0.15 secs]
    154782.329: [GC 154782.329: [ParNew: 453374K->44145K(512000K), 0.1622065 secs] 1131079K->726652K(4091904K), 0.1624591 secs] [Times: user=1.93 sys=0.00, real=0.16 secs]
    155321.070: [GC 155321.070: [ParNew: 453727K->35049K(512000K), 0.1743072 secs] 1136234K->721650K(4091904K), 0.1745554 secs] [Times: user=2.03 sys=0.02, real=0.17 secs]
    155616.065: [GC 155616.065: [ParNew: 444649K->29499K(512000K), 0.2102615 secs] 1131250K->719998K(4091904K), 0.2105183 secs] [Times: user=2.45 sys=0.00, real=0.21 secs]
    155982.706: [GC 155982.706: [ParNew: 439099K->26202K(512000K), 0.1488734 secs] 1129597K->720576K(4091904K), 0.1491322 secs] [Times: user=1.61 sys=0.00, real=0.15 secs]
    157342.722: [GC 157342.722: [ParNew: 435802K->21204K(512000K), 0.0648728 secs] 1130176K->718607K(4091904K), 0.0651369 secs] [Times: user=0.50 sys=0.00, real=0.07 secs]
    158206.259: [GC 158206.260: [ParNew: 430804K->24876K(512000K), 0.0387755 secs] 1128207K->722431K(4091904K), 0.0390794 secs] [Times: user=0.14 sys=0.00, real=0.04 secs]
    158916.733: [GC 158916.733: [ParNew: 434476K->35032K(512000K), 0.0347257 secs] 1132031K->733272K(4091904K), 0.0349902 secs] [Times: user=0.22 sys=0.00, real=0.04 secs]
    159196.537: [GC 159196.537: [ParNew: 444632K->34059K(512000K), 0.0395389 secs] 1142872K->732374K(4091904K), 0.0397992 secs] [Times: user=0.11 sys=0.00, real=0.04 secs]
    159453.706: [GC 159453.706: [ParNew: 443659K->37344K(512000K), 0.0284446 secs] 1141974K->735948K(4091904K), 0.0287073 secs] [Times: user=0.22 sys=0.00, real=0.03 secs]
    159773.265: [GC 159773.266: [ParNew: 446944K->37602K(512000K), 0.0249824 secs] 1145548K->736299K(4091904K), 0.0252388 secs] [Times: user=0.16 sys=0.00, real=0.03 secs]
    159775.812: [GC 159775.812: [ParNew: 447202K->46147K(512000K), 0.0282876 secs] 1145899K->745050K(4091904K), 0.0284816 secs] [Times: user=0.39 sys=0.00, real=0.03 secs]
    159778.313: [GC 159778.314: [ParNew: 455747K->49219K(512000K), 0.0219327 secs] 1154650K->748162K(4091904K), 0.0221362 secs] [Times: user=0.36 sys=0.00, real=0.02 secs]
    159780.691: [GC 159780.691: [ParNew: 458819K->53184K(512000K), 0.0228531 secs] 1157762K->752236K(4091904K), 0.0230494 secs] [Times: user=0.20 sys=0.00, real=0.02 secs]
    159783.892: [GC 159783.892: [ParNew: 462784K->58452K(512000K), 0.0238032 secs] 1161836K->757642K(4091904K), 0.0239991 secs] [Times: user=0.20 sys=0.00, real=0.02 secs]
    159787.286: [GC 159787.287: [ParNew: 468052K->54342K(512000K), 0.0227258 secs] 1167242K->753632K(4091904K), 0.0229237 secs] [Times: user=0.27 sys=0.00, real=0.02 secs]
    159994.747: [GC 159994.747: [ParNew: 463942K->47316K(512000K), 0.0239098 secs] 1163232K->746700K(4091904K), 0.0241696 secs] [Times: user=0.41 sys=0.00, real=0.02 secs]
    161842.416: [GC 161842.416: [ParNew: 456916K->48183K(512000K), 0.0332930 secs] 1156300K->748297K(4091904K), 0.0335561 secs] [Times: user=0.30 sys=0.00, real=0.03 secs]
    162571.099: [GC 162571.099: [ParNew: 457783K->49700K(512000K), 0.0362160 secs] 1157897K->749869K(4091904K), 0.0364757 secs] [Times: user=0.41 sys=0.00, real=0.04 secs]
    162816.607: [GC 162816.608: [ParNew: 459300K->47866K(512000K), 0.0329497 secs] 1159469K->748073K(4091904K), 0.0332109 secs] [Times: user=0.22 sys=0.00, real=0.03 secs]
    163225.538: [GC 163225.538: [ParNew: 457466K->48669K(512000K), 0.0360489 secs] 1157673K->748998K(4091904K), 0.0363562 secs] [Times: user=0.33 sys=0.00, real=0.04 secs]
    164571.844: [GC 164571.844: [ParNew: 458269K->44179K(512000K), 0.0432095 secs] 1158598K->747987K(4091904K), 0.0434764 secs] [Times: user=0.30 sys=0.00, real=

  • Display variable setting in Solaris 8

    Hi guyz,
    I am using the telnet session to start the application. In this case, I can't able to start because of Display variable setting.
    My problem is, I can telnet from my localsystem to the Server-A. Only from Server-A, I can telnet to Server-B where my applications are.How to set Display settings in this case?
    Please help me guyz.
    With regards,
    Amin

    Hello,
    how to set a variable depends on the shell. If you use the command 'uname -n' it will return the name of your system, which can in turn be resolved to the ip-address.
    C-shell (csh) setenv `uname -n`:0.0
    Bourne-shell (sh) set DISPLAY=`uname -n`:0.0; export DISPLAY
    Korn-shell (ksh) export DISPLAY=`uname -n`:0.0
    Best regards
    Michael

  • Cannot execute autocheck DISPLAY variable not set Oracle 10g Solaris 10

    Hallo!I am a total Solaris newbie. I am trying to install Oracle 10g on Solaris 10 but when I run the runInstaller,th following error appears
    Could not execute auto check for display colors using command /usr/openwin/bin/xdpyinfo. Check if the DISPLAY variable is set. Failed <<<<I have set the display parameters in the oracle user via command
    $ export DISPLAY=joey-solaris:0.0
    The SUNWxwplt is installed.
    How do I resolve this?
    Thanks

    4joey1 wrote:
    xclock can run as root user but not as oracle user
    by doing
    $ export DISPLAY=joey-solaris:0.0
    I think its similar to
    $ DISPLAY=workstation_name:0.0
    $ export DISPLAY
    as shown from your reference http://download.oracle.com/docs/cd/B19306_01/install.102/b15697/app_ts.htm#sthref1226 but still the error appears.
    Thanks.Assuming you are connecting to the solaris box from you workstation via telnet or ssh ...
    Do you have an x-server (such as Exceed or xming) running on your workstation?
    Did you set DISPLAY to the ip of your workstation, not the solaris server?
    DISPLAY is redirecting "x" output to the specified location (your workstation), and there needs to be an x-server running at that location.

Maybe you are looking for

  • Data usage not pro-rated?

    Ok--I upgraded my account to include data usage of 4GB on July 7th.  When I received my bill I was quite surprised to see 2 months worth of the data plan on there as I had already paid July's bill.  Since the billing cycle for July ended on 7/10 why

  • Why when i open itunes dose its say: error, new itunes library

    what i said in the headline

  • How do you avoid your class to be cloned?

    Hi All, Can any one let me know how to avoid my class being cloned?and the scenarios where we need to implement this feature. Thanks in advance, venu.

  • Need Developer Help in DFW or San Antonio

    My partner and I want to switch our e-commerce site from CREloaded to ABC.  We don't have time to develop a new website or other work but need to focus on our business.  Can anyone out there help us?  Thanks, Mike

  • Can't play music with Firefox

    when I visit music sites can't play music in the Firefox browser although it was working in a good way couple weeks ago. I'm using the latest version of Android 5.0.1 Regards