Author |
Message
|
yadav.neeraj01 |
Posted: Tue Feb 23, 2016 4:54 pm Post subject: Separate Mount points |
|
|
 Apprentice
Joined: 23 Feb 2011 Posts: 49
|
Hi Experts... in our prod environment we want separate mount points for /var/mqm/errors and /var/mqm/trace . As of now they are under /var/mqm.
We are using MQ V8.
If we stop the queue managers and move the files of /var/mqm/errors and /var/mqm/trace to a separate folder for back up and after the mount again place those to these location and start the queue manager. Will there be any issue on this? or any other way to achieve this  |
|
Back to top |
|
 |
rammer |
Posted: Tue Feb 23, 2016 5:19 pm Post subject: |
|
|
Partisan
Joined: 02 May 2002 Posts: 359 Location: England
|
There should not be a problem doing that. |
|
Back to top |
|
 |
gbaddeley |
Posted: Thu Feb 25, 2016 2:33 am Post subject: |
|
|
 Jedi Knight
Joined: 25 Mar 2003 Posts: 2538 Location: Melbourne, Australia
|
Do you have /var/mqm or /var/mqm/qmgrs on a separate mount point? Otherwise the queue managers can use up all the disk space on the root file system  _________________ Glenn |
|
Back to top |
|
 |
ghoshly |
Posted: Sun May 22, 2016 6:52 pm Post subject: Best Practice for MQ File system |
|
|
Partisan
Joined: 10 Jan 2008 Posts: 333
|
Is there any best practice to have number of file system mounts for MQ queue managers, log, data etc.?
Can Performance vary based on number of mount points? |
|
Back to top |
|
 |
fjb_saper |
Posted: Sun May 22, 2016 7:03 pm Post subject: Re: Best Practice for MQ File system |
|
|
 Grand High Poobah
Joined: 18 Nov 2003 Posts: 20756 Location: LI,NY
|
ghoshly wrote: |
Is there any best practice to have number of file system mounts for MQ queue managers, log, data etc.?
Can Performance vary based on number of mount points? |
Indeed it can. But it varies mostly depending on the speed of your disks...  _________________ MQ & Broker admin |
|
Back to top |
|
 |
vsathyan |
Posted: Sun May 22, 2016 7:31 pm Post subject: |
|
|
Centurion
Joined: 10 Mar 2014 Posts: 121
|
/var/mqm/errors hold the MQ error logs and any FDCs generated.
Make sure it is a local mount (do not put this in N A S).
Since traces are captured only during an incident or whenever required, you can opt to have a separate mount for traces too, but not necessary all the time.
Also, there are multiple ways to capture traces, including wrapping traces, which you can limit the size of the trace files and use the same file again and again (like circular logging), there is no risk of running out of space in /var/mqm/traces.
To answer your question, you can have separate mounts for /var/mqm/errors and /var/mqm/traces. _________________ Custom WebSphere MQ Tools Development C# & Java
WebSphere MQ Solution Architect Since 2011
WebSphere MQ Admin Since 2004 |
|
Back to top |
|
 |
mqjeff |
Posted: Mon May 23, 2016 4:29 am Post subject: |
|
|
Grand Master
Joined: 25 Jun 2008 Posts: 17447
|
vsathyan wrote: |
/var/mqm/errors hold the MQ error logs and any FDCs generated. |
It holds the errors for the MQ system as a whole, and FDCs for all queue managers.
Each queue manager has it's own error logs in /var/mqm/qmgrs/<qm_name>/errors.
A very different set of errors will be stored in each location.
But all FDCs will be stored in /var/mqm/errors. _________________ chmod -R ugo-wx / |
|
Back to top |
|
 |
JosephGramig |
Posted: Wed Jun 01, 2016 9:43 am Post subject: |
|
|
 Grand Master
Joined: 09 Feb 2006 Posts: 1244 Location: Gold Coast of Florida, USA
|
As a general practice, I would always put the Qmgr on two isolated mount points. Something like:
/var/ibm/mqm/<QmgrName>/data
/var/ibm/mqm/<QmgrName>/log
This will isolate your Qmgr data and transaction logs from other Qmgrs and itself. It also has the advantage of allowing you to easily convert this to an HA or MI Qmgr in the future.
Do this with the crtmqm -md /bla/bla/data -ld /bla/bla/log <QmgrName>
and remember that you cannot change the log file pages size or type of log after creation... |
|
Back to top |
|
 |
|