proper way to shutdown db2

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Tim B.

    proper way to shutdown db2

    Hello,

    I am looking for the proper way to shut down db2 completely so that I
    can do a cold back up on all the databases.

    Thanks!



    ----== Posted via Newsfeed.Com - Unlimited-Uncensored-Secure Usenet News==----
    http://www.newsfeed.com The #1 Newsgroup Service in the World! >100,000 Newsgroups
    ---= 19 East/West-Coast Specialized Servers - Total Privacy via Encryption =---
  • Blair Adamache

    #2
    Re: proper way to shutdown db2

    Have a look at the quiesce command. Normally, it should be as simple as:

    db2 force applications all
    db2 connect to database <<dbname>> in exclusive mode
    db2 backup database......

    Note that this is at the database level. Quiesce also works at the
    instance level if you have multiple databases in an instance.

    Tim B. wrote:
    [color=blue]
    > Hello,
    >
    > I am looking for the proper way to shut down db2 completely so that I
    > can do a cold back up on all the databases.
    >
    > Thanks!
    >
    >
    >
    > ----== Posted via Newsfeed.Com - Unlimited-Uncensored-Secure Usenet
    > News==----
    > http://www.newsfeed.com The #1 Newsgroup Service in the World! >100,000
    > Newsgroups
    > ---= 19 East/West-Coast Specialized Servers - Total Privacy via
    > Encryption =---[/color]

    Comment

    • Tim B.

      #3
      Re: proper way to shutdown db2

      Thanks for your response. This is the script that I will be running.
      Does this sound decent:

      #!/bin/bash

      # The following three lines have been added by UDB DB2.
      if [ -f ~/sqllib/db2profile ]; then
      . ~/sqllib/db2profile
      else
      exit 1
      fi

      # kick out everyone
      db2 force applications all

      db2 connect to database db1 in exclusive mode
      db2 "backup database db1 to /opt/BACKUP"

      db2 connect to database db2 in exclusive mode
      db2 "backup database db2 online to /opt/BACKUP"

      db2 connect to database db3 in exclusive mode
      db2 "backup database db3 online to /opt/BACKUP"


      What do I have to do to ensure that no one attempts any read/writes to
      the database and also, how do I put the database back online?


      Blair Adamache wrote:
      [color=blue]
      > Have a look at the quiesce command. Normally, it should be as simple as:
      >
      > db2 force applications all
      > db2 connect to database <<dbname>> in exclusive mode
      > db2 backup database......
      >
      > Note that this is at the database level. Quiesce also works at the
      > instance level if you have multiple databases in an instance.
      >
      > Tim B. wrote:
      >[color=green]
      >> Hello,
      >>
      >> I am looking for the proper way to shut down db2 completely so that I
      >> can do a cold back up on all the databases.
      >>
      >> Thanks!
      >>
      >>
      >>
      >> ----== Posted via Newsfeed.Com - Unlimited-Uncensored-Secure Usenet
      >> News==----
      >> http://www.newsfeed.com The #1 Newsgroup Service in the World![color=darkred]
      >> >100,000 Newsgroups[/color]
      >> ---= 19 East/West-Coast Specialized Servers - Total Privacy via
      >> Encryption =---[/color]
      >
      >[/color]



      ----== Posted via Newsfeed.Com - Unlimited-Uncensored-Secure Usenet News==----
      http://www.newsfeed.com The #1 Newsgroup Service in the World! >100,000 Newsgroups
      ---= 19 East/West-Coast Specialized Servers - Total Privacy via Encryption =---

      Comment

      • Tim B.

        #4
        Re: proper way to shutdown db2

        Also, how can I completely shutdown db2 and grab the raw database files
        for the backup? In other words, I don't want to backup using db2
        commands, I might simply want to tar up the whole thing and go.

        Blair Adamache wrote:
        [color=blue]
        > Have a look at the quiesce command. Normally, it should be as simple as:
        >
        > db2 force applications all
        > db2 connect to database <<dbname>> in exclusive mode
        > db2 backup database......
        >
        > Note that this is at the database level. Quiesce also works at the
        > instance level if you have multiple databases in an instance.
        >
        > Tim B. wrote:
        >[color=green]
        >> Hello,
        >>
        >> I am looking for the proper way to shut down db2 completely so that I
        >> can do a cold back up on all the databases.
        >>
        >> Thanks!
        >>
        >>
        >>
        >> ----== Posted via Newsfeed.Com - Unlimited-Uncensored-Secure Usenet
        >> News==----
        >> http://www.newsfeed.com The #1 Newsgroup Service in the World![color=darkred]
        >> >100,000 Newsgroups[/color]
        >> ---= 19 East/West-Coast Specialized Servers - Total Privacy via
        >> Encryption =---[/color]
        >
        >[/color]



        ----== Posted via Newsfeed.Com - Unlimited-Uncensored-Secure Usenet News==----
        http://www.newsfeed.com The #1 Newsgroup Service in the World! >100,000 Newsgroups
        ---= 19 East/West-Coast Specialized Servers - Total Privacy via Encryption =---

        Comment

        • Blair Adamache

          #5
          Re: proper way to shutdown db2

          When the backup completes, users can reconnect. You might want to
          quiesce each database individually before backing it up - the time from
          the start of the first backup to the second allows a large window for
          lots of users to reconnect to the 2nd and 3rd databases.

          Tim B. wrote:
          [color=blue]
          > Thanks for your response. This is the script that I will be running.
          > Does this sound decent:
          >
          > #!/bin/bash
          >
          > # The following three lines have been added by UDB DB2.
          > if [ -f ~/sqllib/db2profile ]; then
          > . ~/sqllib/db2profile
          > else
          > exit 1
          > fi
          >
          > # kick out everyone
          > db2 force applications all
          >
          > db2 connect to database db1 in exclusive mode
          > db2 "backup database db1 to /opt/BACKUP"
          >
          > db2 connect to database db2 in exclusive mode
          > db2 "backup database db2 online to /opt/BACKUP"
          >
          > db2 connect to database db3 in exclusive mode
          > db2 "backup database db3 online to /opt/BACKUP"
          >
          >
          > What do I have to do to ensure that no one attempts any read/writes to
          > the database and also, how do I put the database back online?
          >
          >
          > Blair Adamache wrote:
          >[color=green]
          >> Have a look at the quiesce command. Normally, it should be as simple as:
          >>
          >> db2 force applications all
          >> db2 connect to database <<dbname>> in exclusive mode
          >> db2 backup database......
          >>
          >> Note that this is at the database level. Quiesce also works at the
          >> instance level if you have multiple databases in an instance.
          >>
          >> Tim B. wrote:
          >>[color=darkred]
          >>> Hello,
          >>>
          >>> I am looking for the proper way to shut down db2 completely so that I
          >>> can do a cold back up on all the databases.
          >>>
          >>> Thanks!
          >>>
          >>>
          >>>
          >>> ----== Posted via Newsfeed.Com - Unlimited-Uncensored-Secure Usenet
          >>> News==----
          >>> http://www.newsfeed.com The #1 Newsgroup Service in the World!
          >>> >100,000 Newsgroups
          >>> ---= 19 East/West-Coast Specialized Servers - Total Privacy via
          >>> Encryption =---[/color]
          >>
          >>
          >>[/color]
          >
          >
          >
          > ----== Posted via Newsfeed.Com - Unlimited-Uncensored-Secure Usenet
          > News==----
          > http://www.newsfeed.com The #1 Newsgroup Service in the World! >100,000
          > Newsgroups
          > ---= 19 East/West-Coast Specialized Servers - Total Privacy via
          > Encryption =---[/color]

          Comment

          • Blair Adamache

            #6
            Re: proper way to shutdown db2

            DB2 does not support that. It can work if the database is truly
            inactive, but if you run into a problem, IBM Service and Support may not
            be able to help you.

            Tim B. wrote:
            [color=blue]
            > Also, how can I completely shutdown db2 and grab the raw database files
            > for the backup? In other words, I don't want to backup using db2
            > commands, I might simply want to tar up the whole thing and go.
            >
            > Blair Adamache wrote:
            >[color=green]
            >> Have a look at the quiesce command. Normally, it should be as simple as:
            >>
            >> db2 force applications all
            >> db2 connect to database <<dbname>> in exclusive mode
            >> db2 backup database......
            >>
            >> Note that this is at the database level. Quiesce also works at the
            >> instance level if you have multiple databases in an instance.
            >>
            >> Tim B. wrote:
            >>[color=darkred]
            >>> Hello,
            >>>
            >>> I am looking for the proper way to shut down db2 completely so that I
            >>> can do a cold back up on all the databases.
            >>>
            >>> Thanks!
            >>>
            >>>
            >>>
            >>> ----== Posted via Newsfeed.Com - Unlimited-Uncensored-Secure Usenet
            >>> News==----
            >>> http://www.newsfeed.com The #1 Newsgroup Service in the World!
            >>> >100,000 Newsgroups
            >>> ---= 19 East/West-Coast Specialized Servers - Total Privacy via
            >>> Encryption =---[/color]
            >>
            >>
            >>[/color]
            >
            >
            >
            > ----== Posted via Newsfeed.Com - Unlimited-Uncensored-Secure Usenet
            > News==----
            > http://www.newsfeed.com The #1 Newsgroup Service in the World! >100,000
            > Newsgroups
            > ---= 19 East/West-Coast Specialized Servers - Total Privacy via
            > Encryption =---[/color]

            Comment

            • Jim

              #7
              Re: proper way to shutdown db2

              Could you give me some examples on that quiesce command? Someone took my
              damn book and I am having trouble coming up with decent documentation on
              it.

              Blair Adamache wrote:
              [color=blue]
              > When the backup completes, users can reconnect. You might want to
              > quiesce each database individually before backing it up - the time from
              > the start of the first backup to the second allows a large window for
              > lots of users to reconnect to the 2nd and 3rd databases.
              >
              > Tim B. wrote:
              >[color=green]
              >> Thanks for your response. This is the script that I will be running.
              >> Does this sound decent:
              >>
              >> #!/bin/bash
              >>
              >> # The following three lines have been added by UDB DB2.
              >> if [ -f ~/sqllib/db2profile ]; then
              >> . ~/sqllib/db2profile
              >> else
              >> exit 1
              >> fi
              >>
              >> # kick out everyone
              >> db2 force applications all
              >>
              >> db2 connect to database db1 in exclusive mode
              >> db2 "backup database db1 to /opt/BACKUP"
              >>
              >> db2 connect to database db2 in exclusive mode
              >> db2 "backup database db2 online to /opt/BACKUP"
              >>
              >> db2 connect to database db3 in exclusive mode
              >> db2 "backup database db3 online to /opt/BACKUP"
              >>
              >>
              >> What do I have to do to ensure that no one attempts any read/writes to
              >> the database and also, how do I put the database back online?
              >>
              >>
              >> Blair Adamache wrote:
              >>[color=darkred]
              >>> Have a look at the quiesce command. Normally, it should be as simple as:
              >>>
              >>> db2 force applications all
              >>> db2 connect to database <<dbname>> in exclusive mode
              >>> db2 backup database......
              >>>
              >>> Note that this is at the database level. Quiesce also works at the
              >>> instance level if you have multiple databases in an instance.
              >>>
              >>> Tim B. wrote:
              >>>
              >>>> Hello,
              >>>>
              >>>> I am looking for the proper way to shut down db2 completely so that I
              >>>> can do a cold back up on all the databases.
              >>>>
              >>>> Thanks!
              >>>>
              >>>>
              >>>>
              >>>> ----== Posted via Newsfeed.Com - Unlimited-Uncensored-Secure Usenet
              >>>> News==----
              >>>> http://www.newsfeed.com The #1 Newsgroup Service in the World!
              >>>> >100,000 Newsgroups
              >>>> ---= 19 East/West-Coast Specialized Servers - Total Privacy via
              >>>> Encryption =---
              >>>
              >>>
              >>>[/color]
              >>
              >>
              >>
              >> ----== Posted via Newsfeed.Com - Unlimited-Uncensored-Secure Usenet
              >> News==----
              >> http://www.newsfeed.com The #1 Newsgroup Service in the World! >100,000
              >> Newsgroups
              >> ---= 19 East/West-Coast Specialized Servers - Total Privacy via
              >> Encryption =---[/color][/color]



              ----== Posted via Newsfeed.Com - Unlimited-Uncensored-Secure Usenet News==----
              http://www.newsfeed.com The #1 Newsgroup Service in the World! >100,000 Newsgroups
              ---= 19 East/West-Coast Specialized Servers - Total Privacy via Encryption =---

              Comment

              • Jim

                #8
                Re: proper way to shutdown db2

                Also,

                If I simply wanted to back db2 up at a filesystem level, without running db2
                commands, how can I get db2 in a state where this is possible? I know this
                requires shutting it completely down, but how?

                Thanks!


                Blair Adamache wrote:
                [color=blue]
                > When the backup completes, users can reconnect. You might want to
                > quiesce each database individually before backing it up - the time from
                > the start of the first backup to the second allows a large window for
                > lots of users to reconnect to the 2nd and 3rd databases.
                >
                > Tim B. wrote:
                >[color=green]
                >> Thanks for your response. This is the script that I will be running.
                >> Does this sound decent:
                >>
                >> #!/bin/bash
                >>
                >> # The following three lines have been added by UDB DB2.
                >> if [ -f ~/sqllib/db2profile ]; then
                >> . ~/sqllib/db2profile
                >> else
                >> exit 1
                >> fi
                >>
                >> # kick out everyone
                >> db2 force applications all
                >>
                >> db2 connect to database db1 in exclusive mode
                >> db2 "backup database db1 to /opt/BACKUP"
                >>
                >> db2 connect to database db2 in exclusive mode
                >> db2 "backup database db2 online to /opt/BACKUP"
                >>
                >> db2 connect to database db3 in exclusive mode
                >> db2 "backup database db3 online to /opt/BACKUP"
                >>
                >>
                >> What do I have to do to ensure that no one attempts any read/writes to
                >> the database and also, how do I put the database back online?
                >>
                >>
                >> Blair Adamache wrote:
                >>[color=darkred]
                >>> Have a look at the quiesce command. Normally, it should be as simple as:
                >>>
                >>> db2 force applications all
                >>> db2 connect to database <<dbname>> in exclusive mode
                >>> db2 backup database......
                >>>
                >>> Note that this is at the database level. Quiesce also works at the
                >>> instance level if you have multiple databases in an instance.
                >>>
                >>> Tim B. wrote:
                >>>
                >>>> Hello,
                >>>>
                >>>> I am looking for the proper way to shut down db2 completely so that I
                >>>> can do a cold back up on all the databases.
                >>>>
                >>>> Thanks!
                >>>>
                >>>>
                >>>>
                >>>> ----== Posted via Newsfeed.Com - Unlimited-Uncensored-Secure Usenet
                >>>> News==----
                >>>> http://www.newsfeed.com The #1 Newsgroup Service in the World!
                >>>> >100,000 Newsgroups
                >>>> ---= 19 East/West-Coast Specialized Servers - Total Privacy via
                >>>> Encryption =---
                >>>
                >>>
                >>>[/color]
                >>
                >>
                >>
                >> ----== Posted via Newsfeed.Com - Unlimited-Uncensored-Secure Usenet
                >> News==----
                >> http://www.newsfeed.com The #1 Newsgroup Service in the World! >100,000
                >> Newsgroups
                >> ---= 19 East/West-Coast Specialized Servers - Total Privacy via
                >> Encryption =---[/color][/color]



                ----== Posted via Newsfeed.Com - Unlimited-Uncensored-Secure Usenet News==----
                http://www.newsfeed.com The #1 Newsgroup Service in the World! >100,000 Newsgroups
                ---= 19 East/West-Coast Specialized Servers - Total Privacy via Encryption =---

                Comment

                • Mark A

                  #9
                  Re: proper way to shutdown db2

                  "Jim" <jo@hotmail.com > wrote in message
                  news:1070650492 .182834@hive.lu nargravity.net. ..[color=blue]
                  > Could you give me some examples on that quiesce command? Someone took my
                  > damn book and I am having trouble coming up with decent documentation on
                  > it.[/color]

                  Web based manuals


                  PDF Manuals (can be downloaded):

                  (The above link will wrap) Page down to bottom of screen.

                  Don't leave home without them.


                  Comment

                  • Blair Adamache

                    #10
                    Re: proper way to shutdown db2

                    db2stop

                    Jim wrote:
                    [color=blue]
                    > Also,
                    >
                    > If I simply wanted to back db2 up at a filesystem level, without running db2
                    > commands, how can I get db2 in a state where this is possible? I know this
                    > requires shutting it completely down, but how?
                    >
                    > Thanks!
                    >
                    >
                    > Blair Adamache wrote:
                    >
                    >[color=green]
                    >>When the backup completes, users can reconnect. You might want to
                    >>quiesce each database individually before backing it up - the time from
                    >>the start of the first backup to the second allows a large window for
                    >>lots of users to reconnect to the 2nd and 3rd databases.
                    >>
                    >>Tim B. wrote:
                    >>
                    >>[color=darkred]
                    >>>Thanks for your response. This is the script that I will be running.
                    >>>Does this sound decent:
                    >>>
                    >>>#!/bin/bash
                    >>>
                    >>># The following three lines have been added by UDB DB2.
                    >>>if [ -f ~/sqllib/db2profile ]; then
                    >>> . ~/sqllib/db2profile
                    >>>else
                    >>> exit 1
                    >>>fi
                    >>>
                    >>># kick out everyone
                    >>>db2 force applications all
                    >>>
                    >>>db2 connect to database db1 in exclusive mode
                    >>>db2 "backup database db1 to /opt/BACKUP"
                    >>>
                    >>>db2 connect to database db2 in exclusive mode
                    >>>db2 "backup database db2 online to /opt/BACKUP"
                    >>>
                    >>>db2 connect to database db3 in exclusive mode
                    >>>db2 "backup database db3 online to /opt/BACKUP"
                    >>>
                    >>>
                    >>>What do I have to do to ensure that no one attempts any read/writes to
                    >>>the database and also, how do I put the database back online?
                    >>>
                    >>>
                    >>>Blair Adamache wrote:
                    >>>
                    >>>
                    >>>>Have a look at the quiesce command. Normally, it should be as simple as:
                    >>>>
                    >>>>db2 force applications all
                    >>>>db2 connect to database <<dbname>> in exclusive mode
                    >>>>db2 backup database......
                    >>>>
                    >>>>Note that this is at the database level. Quiesce also works at the
                    >>>>instance level if you have multiple databases in an instance.
                    >>>>
                    >>>>Tim B. wrote:
                    >>>>
                    >>>>
                    >>>>>Hello,
                    >>>>>
                    >>>>>I am looking for the proper way to shut down db2 completely so that I
                    >>>>>can do a cold back up on all the databases.
                    >>>>>
                    >>>>>Thanks!
                    >>>>>
                    >>>>>
                    >>>>>
                    >>>>>----== Posted via Newsfeed.Com - Unlimited-Uncensored-Secure Usenet
                    >>>>>News==----
                    >>>>>http://www.newsfeed.com The #1 Newsgroup Service in the World!
                    >>>>>
                    >>>>>>100,000 Newsgroups
                    >>>>>
                    >>>>>---= 19 East/West-Coast Specialized Servers - Total Privacy via
                    >>>>>Encrypti on =---
                    >>>>
                    >>>>
                    >>>>
                    >>>
                    >>>
                    >>>----== Posted via Newsfeed.Com - Unlimited-Uncensored-Secure Usenet
                    >>>News==----
                    >>>http://www.newsfeed.com The #1 Newsgroup Service in the World! >100,000
                    >>>Newsgroups
                    >>>---= 19 East/West-Coast Specialized Servers - Total Privacy via
                    >>>Encryption =---[/color][/color]
                    >
                    >
                    >
                    >
                    > ----== Posted via Newsfeed.Com - Unlimited-Uncensored-Secure Usenet News==----
                    > http://www.newsfeed.com The #1 Newsgroup Service in the World! >100,000 Newsgroups
                    > ---= 19 East/West-Coast Specialized Servers - Total Privacy via Encryption =---[/color]

                    Comment

                    • Jim

                      #11
                      Re: proper way to shutdown db2

                      Oh wow....I thought there was more to it than that. I will be able to
                      restore all of the data by doing:

                      #!/bin/bash

                      db2stop
                      tar czf /backup/foo.tar.gz /home/db2inst1



                      ^ I know this is simplified but then I could simply untar /home/db2inst1 and
                      have a working database, correct?

                      I am acting like a moron and asking dumb questions but just crossing my T's
                      and dotting my I's. I appreciate your patience with my ignorance.



                      Blair Adamache wrote:
                      [color=blue]
                      > db2stop
                      >
                      > Jim wrote:
                      >[color=green]
                      >> Also,
                      >>
                      >> If I simply wanted to back db2 up at a filesystem level, without running
                      >> db2
                      >> commands, how can I get db2 in a state where this is possible? I know
                      >> this requires shutting it completely down, but how?
                      >>
                      >> Thanks!
                      >>
                      >>
                      >> Blair Adamache wrote:
                      >>
                      >>[color=darkred]
                      >>>When the backup completes, users can reconnect. You might want to
                      >>>quiesce each database individually before backing it up - the time from
                      >>>the start of the first backup to the second allows a large window for
                      >>>lots of users to reconnect to the 2nd and 3rd databases.
                      >>>
                      >>>Tim B. wrote:
                      >>>
                      >>>
                      >>>>Thanks for your response. This is the script that I will be running.
                      >>>>Does this sound decent:
                      >>>>
                      >>>>#!/bin/bash
                      >>>>
                      >>>># The following three lines have been added by UDB DB2.
                      >>>>if [ -f ~/sqllib/db2profile ]; then
                      >>>> . ~/sqllib/db2profile
                      >>>>else
                      >>>> exit 1
                      >>>>fi
                      >>>>
                      >>>># kick out everyone
                      >>>>db2 force applications all
                      >>>>
                      >>>>db2 connect to database db1 in exclusive mode
                      >>>>db2 "backup database db1 to /opt/BACKUP"
                      >>>>
                      >>>>db2 connect to database db2 in exclusive mode
                      >>>>db2 "backup database db2 online to /opt/BACKUP"
                      >>>>
                      >>>>db2 connect to database db3 in exclusive mode
                      >>>>db2 "backup database db3 online to /opt/BACKUP"
                      >>>>
                      >>>>
                      >>>>What do I have to do to ensure that no one attempts any read/writes to
                      >>>>the database and also, how do I put the database back online?
                      >>>>
                      >>>>
                      >>>>Blair Adamache wrote:
                      >>>>
                      >>>>
                      >>>>>Have a look at the quiesce command. Normally, it should be as simple
                      >>>>>as:
                      >>>>>
                      >>>>>db2 force applications all
                      >>>>>db2 connect to database <<dbname>> in exclusive mode
                      >>>>>db2 backup database......
                      >>>>>
                      >>>>>Note that this is at the database level. Quiesce also works at the
                      >>>>>instance level if you have multiple databases in an instance.
                      >>>>>
                      >>>>>Tim B. wrote:
                      >>>>>
                      >>>>>
                      >>>>>>Hello,
                      >>>>>>
                      >>>>>>I am looking for the proper way to shut down db2 completely so that I
                      >>>>>>can do a cold back up on all the databases.
                      >>>>>>
                      >>>>>>Thanks!
                      >>>>>>
                      >>>>>>
                      >>>>>>
                      >>>>>>----== Posted via Newsfeed.Com - Unlimited-Uncensored-Secure Usenet
                      >>>>>>News==----
                      >>>>>>http://www.newsfeed.com The #1 Newsgroup Service in the World!
                      >>>>>>
                      >>>>>>>100,00 0 Newsgroups
                      >>>>>>
                      >>>>>>---= 19 East/West-Coast Specialized Servers - Total Privacy via
                      >>>>>>Encryptio n =---
                      >>>>>
                      >>>>>
                      >>>>>
                      >>>>
                      >>>>
                      >>>>----== Posted via Newsfeed.Com - Unlimited-Uncensored-Secure Usenet
                      >>>>News==----
                      >>>>http://www.newsfeed.com The #1 Newsgroup Service in the World! >100,000
                      >>>>Newsgroup s
                      >>>>---= 19 East/West-Coast Specialized Servers - Total Privacy via
                      >>>>Encryptio n =---[/color]
                      >>
                      >>
                      >>
                      >>
                      >> ----== Posted via Newsfeed.Com - Unlimited-Uncensored-Secure Usenet
                      >> News==---- http://www.newsfeed.com The #1 Newsgroup Service in the World![color=darkred]
                      >> >100,000 Newsgroups ---= 19 East/West-Coast Specialized Servers - Total[/color]
                      >> Privacy via Encryption =---[/color][/color]



                      ----== Posted via Newsfeed.Com - Unlimited-Uncensored-Secure Usenet News==----
                      http://www.newsfeed.com The #1 Newsgroup Service in the World! >100,000 Newsgroups
                      ---= 19 East/West-Coast Specialized Servers - Total Privacy via Encryption =---

                      Comment

                      Working...