- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- permission denied in deleting entry in application
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-30-2009 11:38 PM
07-30-2009 11:38 PM
were running an OEB a P.O. application using non-root user. the user can add entry but when trying to delete the added entry in the application application closes. the application is located /disk1/oeb/oeb
this are some contents of the logs:
*
* Recital memory variables saved on 07/31/1909 at 14:31:20
*
* Error number:
* 15
*
* Error message:
* File access permission denied
*
* Error line:
*
*
* Stack trace:
* In program - oebent1.dbo at line 193
* Called from program - oebent.dbo at line 391
* Called from program - oeb.dbo at line 167
*
hope you could help me.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-30-2009 11:46 PM
07-30-2009 11:46 PM
SolutionIt doesn't looks unix permission issue. most relavent to application authentication.
If the user does not have write access, he cannot even add the entries. However you can check the permission using ll command.
#ll /disk1/oeb/oeb
If need modify the permission using chmod command.
#chmod 777 /disk1/oeb/oeb
Ganesh.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-30-2009 11:53 PM
07-30-2009 11:53 PM
Re: permission denied in deleting entry in application
actually its already all rights access
-rwxrwxrwx 1 root sys 13608 Jul 16 17:56 oeb.dbo
but still same error occurs.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-31-2009 12:02 AM
07-31-2009 12:02 AM
Re: permission denied in deleting entry in application
You must read oebent1.dbo to find out what file it tried to access and what type of access it attempted.
Debug traces like this will happen when the programmer has not written a proper error detection code. It is very unfriendly towards the application users.
MK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-31-2009 06:23 AM
07-31-2009 06:23 AM
Re: permission denied in deleting entry in application
1) app itself may not have access to relevant file
-or-
2) the user involved may not have been granted sufficient priveledges with the database to do a delete
start with the dba, or if its locally written, perhaps the app developer.