- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- way to secure my personal programs or data
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
04-03-2006 01:54 AM
04-03-2006 01:54 AM
way to secure my personal programs or data
I need a way to secure my personal programs or data. Let me explain my environment setup.
Here hundreds of oracle DBA are working, everyone has individual unix id and Home dir.
And everyone has their individual programs or data under their Home.
Everyone first login by their individual unix userid ( myself as ezhil ) in a local server.
Then we will login to a remote server by ssh hostname to do support.
From there remote also we will be able to see our individual Home dir programs and data (some virtual Home dir setup mechanism).
At this point, individuals login as oracle by giving ( sudo su - oracle ).
Now I can not access or copy my program to this server for support if I have not granted
access permission to others, because now even I am as oracle unixid.
That is why I have granted by chmod 755 /home/ezhil/scripts.
I copy needed script say by cp /home/ezhil/scripts/check_performance.sh .
I am wondering by some mechanism, can we restrict others apart from my unixid to copy
my personal data and programs by asking for some key or password ?
In old company, when we view a secrete or critical file, we do by
vi -x oracle_passwd_for_all_servers.
Then it will ask for key, when we give correct key, it will de-crypt the file contents and can see contents,
otherwise it will be like machine code. But I do not know where the key is stored for checking, if the key creator also forget this, then may be problem.
But here in my case, not single file, hundreds of files in the dir, so I want to secure the whole dir from coping scripts or data by others
( keep in mind I also will be others when I logined as oracle by sudo, but I want to copy ).
Unix experts, please advise some easy mechanism with steps.
My advance thanks for your help.
Regards
Ezhil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2006 02:09 AM
04-03-2006 02:09 AM
Re: way to secure my personal programs or data
You can write a script invoking crypt to encipher all your files with a common password and then decrypt using vi -x when you need to actually use them.
You could store your password in a secure place so that others could have access on an emergency basis.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2006 02:41 AM
04-03-2006 02:41 AM
Re: way to secure my personal programs or data
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2006 03:06 AM
04-03-2006 03:06 AM
Re: way to secure my personal programs or data
This will ask you for your password before
completing the copy.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2006 03:13 AM
04-03-2006 03:13 AM
Re: way to secure my personal programs or data
Or vice versa, create a unique group id for each DBA, then when you change to user id oracle, change the group to your unique group id and specify permission based on group.
My 2 cents
Rod Hills