News:

If you're new to this message board, read THIS!

Main Menu
Inzane 17

Message board problems

Started by Scott in Ok, Wed 29, Oct 2014, 11:18:19

Previous topic - Next topic

Scott in Ok

As you might have noticed, we've been experiencing some server problems.

I'm working with our IT guy to figure out what going on, so the message board might be offline sporadically.  Unreachable at times, and in "Maintenance Mode" at other times.

Something on the server is chewing up CPU and Ram like crazy and won't let allow the database server complete queries in a reasonable time.

-Scott
Never underestimate the power of stupid people in large numbers!

..


KY,Dave (AKA Misunderstood)

Thanks for working on things and all ya'll do  :cooldude:

specialdose

           
                              Yes, thanks to everyone involved for keeping VRCC running.

                                                                                     Larry, Atlanta

robin


Serk

Hmmm, so our forum is running on a Harley, eh?  :angel:
Never ask a geek 'Why?',just nod your head and slowly back away...



IBA# 22107 
VRCC# 7976
VRCCDS# 226

1998 Valkyrie Standard
2008 Gold Wing

Taxation is theft.

μολὼν λαβέ

old2soon

Quote from: KY,Dave (AKA Misunderstood) on Wed 29, Oct 2014, 11:26:40
Thanks for working on things and all ya'll do  :cooldude:
What he said!!  :cooldude: RIDE SAFE.
Today is the tommorow you worried about yesterday. If at first you don't succeed screw it-save it for nite check.  1964  1968 U S Navy. Two cruises off Nam.
VRCCDS0240  2012 GL1800 Gold Wing Motor Trike conversion

Oss

I agree and just put up a new thread

You can delete it if you need to save bandwidth    8)
If you don't know where your going any road will take you there
George Harrison

When you come to the fork in the road, take it
Yogi Berra   (Don't send it to me C.O.D.)

KY,Dave (AKA Misunderstood)

Quote from: Oss on Wed 29, Oct 2014, 13:03:31
I agree and just put up a new thread

You can delete it if you need to save bandwidth    8)

Troublemaker  :2funny:

0leman

Thanks for the work you are doing on the servers.

Know what you are going thru.   Worked IT for a number of years.  Chasing down a problem is hard sometimes.   Remember in the early 2000's there was a virus that infected a number of our computers, had to restart it DOS mode to remove it.  and had to apply the removal tool within 20 seconds of starting it.  Lots of fun.  
2006 Shadow Spirit 1100 gone but not forgotten
1999 Valkryie  I/S  Green/Silver

bassman


BF

My desktop 'puter has been inundated with updates and downloads from Microsoft the last several days making it a fishing weight. 

On one day alone, they shoved 82 downloads on my computer.  Been trying to fix it for several days now.
I can't help about the shape I'm in
I can't sing, I ain't pretty and my legs are thin
But don't ask me what I think of you
I might not give the answer that you want me to



hubcapsc

Quote from: BF on Wed 29, Oct 2014, 15:37:58
My desktop 'puter has been inundated with updates and downloads from Microsoft the last several days making it a fishing weight. 

On one day alone, they shoved 82 downloads on my computer.  Been trying to fix it for several days now.

You and Scott have the same problem: you shouldn't be running Vista on 10 year old hardware :roll:

-Mike

BF

Quote from: hubcapsc on Wed 29, Oct 2014, 16:01:13
Quote from: BF on Wed 29, Oct 2014, 15:37:58
My desktop 'puter has been inundated with updates and downloads from Microsoft the last several days making it a fishing weight. 

On one day alone, they shoved 82 downloads on my computer.  Been trying to fix it for several days now.

You and Scott have the same problem: you shouldn't be running Vista on 10 year old hardware :roll:

-Mike

I'm done with the old 'puter.  I give up.

I just ordered this.....

http://www.dell.com/us/p/xps-8700/pd?oc=fddogs104dhw7p&model_id=xps-8700


I can't help about the shape I'm in
I can't sing, I ain't pretty and my legs are thin
But don't ask me what I think of you
I might not give the answer that you want me to



Scott in Ok

Quote from: hubcapsc on Wed 29, Oct 2014, 16:01:13
Quote from: BF on Wed 29, Oct 2014, 15:37:58
My desktop 'puter has been inundated with updates and downloads from Microsoft the last several days making it a fishing weight. 

On one day alone, they shoved 82 downloads on my computer.  Been trying to fix it for several days now.

You and Scott have the same problem: you shouldn't be running Vista on 10 year old hardware :roll:

-Mike

Whoaaaa!  There is NO vista around these parts my friend!  (Server is running CentOS)

...and I'm using a Mac. :D

Incidentally, it was a bit of a challenge to log into that server this morning from a Win7 box behind a corp. firewall/proxy.

-Scott
Never underestimate the power of stupid people in large numbers!

hubcapsc

  (Server is running CentOS)

Well, heck, top should show you what's eating CPU and you
can get it to sort on memory, too...

I wrote this down on my linux memory cheat sheet:

# free -m
                    total       used       free     shared    buffers     cached
Mem:          7826       7468       357          0        514          997
-/+ buffers/cache:      5957      1869
Swap:        10015      3623       6392

Seeing a bunch of free buffers/cache (1869) shows that there's still
memory to be had.

--------------------------------------------------------------------------

grep -i kill /var/log/messages*     

would find any messages like
  "host kernel: Out of Memory: Killed process 2592 (oracle)."
printed by the kernel's Out Of Memory Killer (OOM).

   When too many applications start utilizing the memory they were
   allocated, the over-commit model sometimes becomes problematic and
   the kernel must start killing processes in order to stay operational.
   The mechanism the kernel uses to recover memory on the system is
   referred to as the out-of-memory killer or OOM killer for short.


-Mike

Skinhead

Quote from: hubcapsc on Wed 29, Oct 2014, 18:34:47
  (Server is running CentOS)

Well, heck, top should show you what's eating CPU and you
can get it to sort on memory, too...

I wrote this down on my linux memory cheat sheet:

# free -m
                    total       used       free     shared    buffers     cached
Mem:          7826       7468       357          0        514          997
-/+ buffers/cache:      5957      1869
Swap:        10015      3623       6392

Seeing a bunch of free buffers/cache (1869) shows that there's still
memory to be had.

--------------------------------------------------------------------------

grep -i kill /var/log/messages*     

would find any messages like
  "host kernel: Out of Memory: Killed process 2592 (oracle)."
printed by the kernel's Out Of Memory Killer (OOM).

   When too many applications start utilizing the memory they were
   allocated, the over-commit model sometimes becomes problematic and
   the kernel must start killing processes in order to stay operational.
   The mechanism the kernel uses to recover memory on the system is
   referred to as the out-of-memory killer or OOM killer for short.


-Mike



Hell Mike, EVERYBODY knows THAT!!

Friendsville, TN - Troy, MI

Willow

Quote from: Skinhead on Wed 29, Oct 2014, 19:18:22
Hell Mike, EVERYBODY knows THAT!!

Yes but did you know that words CAN hurt you?   ;)

KY,Dave (AKA Misunderstood)

Quote from: Willow on Wed 29, Oct 2014, 21:31:41
Quote from: Skinhead on Wed 29, Oct 2014, 19:18:22
Hell Mike, EVERYBODY knows THAT!!

Yes but did you know that words CAN hurt you?   ;)

I'm a loner.....A loner has gotta be alone  :2funny:

RP#62

 

Jess Tolbirt

Valkyrie member # 23084
Started out on old forum on day one but lost my member number.