This might be more of a Windows Server configuration question, but...
Why is tm1s.log not readable (it is being used/lockled by some other process)?
Any way to make it readable while the server is running?
tm1s.log not readable
-
- Site Admin
- Posts: 6667
- Joined: Sun May 11, 2008 2:30 am
- OLAP Product: TM1
- Version: PA2.0.9.18 Classic NO PAW!
- Excel Version: 2013 and Office 365
- Location: Sydney, Australia
- Contact:
Re: tm1s.log not readable
The "some other process" would be your TM1 server. It's your transaction log.mrnara wrote:This might be more of a Windows Server configuration question, but...
Why is tm1s.log not readable (it is being used/lockled by some other process)?
Not that I'm aware of (I stand to be corrected on that) but if any other process has access to the file it could cause some unfortunate consequences. If your server can't write to the transaction log for any reason it will immediately crash. It needs to be free to write to it as and when it needs to, which even a read operation by an external application could block temporarily.mrnara wrote:Any way to make it readable while the server is running?
If you're an administrator you can view the transactions that have been processed via the GUI. Details of how to access that are in the Operations manual. Otherwise if you really need to load up the file and analyse it you should do a data save, at which time all of the data in the transaction log will be copied to a new file which you can peruse at your leisure.
"To them, equipment failure is terrifying. To me, it’s 'Tuesday.' "
-----------
Before posting, please check the documentation, the FAQ, the Search function and FOR THE LOVE OF GLUB the Request Guidelines.
-----------
Before posting, please check the documentation, the FAQ, the Search function and FOR THE LOVE OF GLUB the Request Guidelines.
- mrnara
- Posts: 9
- Joined: Fri Jun 22, 2012 1:59 am
- OLAP Product: TM1
- Version: 10.1
- Excel Version: 14.0 [Office 2010]
- Location: California, USA
Re: tm1s.log not readable
Thanks for the explanation!
Programmers/Developers often do something like
while a server is running to see what it is up to.
Can't think of any server that ran into a problem writing to the .log file while someone was tailing it.
Programmers/Developers often do something like
Code: Select all
tail -f serverLogFile.log
Can't think of any server that ran into a problem writing to the .log file while someone was tailing it.