Any free load generator for Solaris 9 in a Java environment?

Ask a Question related to UNIX Programming, Design and Development.

  1. #1

    Default Any free load generator for Solaris 9 in a Java environment?

    Does anyone know any free processor load generator for Solaris 9? I would
    like to stress Solaris 9 in a Java environment. Thanks.

    EKL


    EKL Guest

  2. Similar Questions and Discussions

    1. Solaris free/open source clustering/load balance
      I am looking for some free/open source clustering software which I can use on Solaris to load balance/fail over web server Tomcat. I have done a...
    2. Any free load generator for Solaris 9 in Java environment?
      Does anyone know any free processor load generator for Solaris 9? I would like to stress Solaris 9 in a Java environment. Thanks. EKL
    3. Running Solaris in a quiet environment
      I need to configure my Ultrasparc-10/Solaris 8 system to NOT make any noise under any conditions. I mean no beeps, no flash audio, nothing. And...
    4. problems with HP and Solaris environment compatibility
      On Thu, 10 Jul 2003 16:29:16 +0300, Hristo Brachkov <hristob@spam.no> wrote: Install NIS on both machines. The simplest solution would be to...
    5. load environment
      Hi to all, i have problem with a script perl. I need load any enviroment variables from a file. In a shell unix I can do . ./file.sh but in perl...
  3. #2

    Default Re: Any free load generator for Solaris 9 in a Java environment?

    On Wed, 06 Aug 2003 09:04:25 -0400, EKL wrote:
    > Does anyone know any free processor load generator for Solaris 9? I
    > would like to stress Solaris 9 in a Java environment. Thanks.
    Find yourself a big project that builds with Ant (a Java build tool at
    [url]http://jakarta.apache.org/ant/[/url]) and build it like:

    #!/bin/sh

    ant compile &
    ant compile &
    ant compile &
    ant compile &
    ant compile &
    ant compile &

    wait

    and run like:

    $ time ./test.sh

    I think Apache actually builds with Ant.

    Mike
    Michael B Allen Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139