Results 1 to 6 of 6
Hi
i have oracle application server 10g R2
having user oracle Group oinstall
this is oracle user only compiling all the forms in oracle Home ..
I want creating other ...
- 02-21-2008 #1Just Joined!
- Join Date
- Nov 2007
- Posts
- 31
File owners
Hi
i have oracle application server 10g R2
having user oracle Group oinstall
this is oracle user only compiling all the forms in oracle Home ..
I want creating other user is called developers..same group
but the developers user ,don't compliing from Oracle Home .
Actually i want ,one file having two users ,but same group...its possible ?
please help me...
Dhana
- 02-21-2008 #2
I think you need a common data area to which two users in the same group have access. The home area is not really configured for this type of thing because you would typically have private data on it. You can change owner information with chown, and change access rights with chmod.
should provide you with the information you need to change the access rights.Code:man chown man chmod
If you have other users on the system and need to create a developer user group of something similar you should do this using the admin tool for your distro. Then add the users you want to that group.
- 02-21-2008 #3Just Joined!
- Join Date
- Nov 2007
- Posts
- 31
thanks for reply..
don't change oracle user & oinstall group ,its not possible
just i add developer user for this group .i cann't access in oracle Home files..
is there any way to access?
- 02-21-2008 #4
I'm not sure I understand ... or can help.

I assumed you have a linux server with an oracle application server running on it. I assume for that you have linux user accounts and home areas ... making file sharing a linux question. Creating a common area for users to access in linux should be possible. Sharing information in user home areas is also possible ... but not a solution I would recommend (see previous post). If the linux server is SUSE then YAST is the config tool to use to set groups etc.
If I have misunderstood ... please post back & make it clear my post does not help so others can step in and answer your question.
- 02-22-2008 #5Just Joined!
- Join Date
- Nov 2007
- Posts
- 31
hi
Thanks
i installed oracle application server through oracle user..
oracle user only having full permission for this oracle software.
here
some oracle home files needed for developing application..
so all user (using ftp ) knowing oracle user password ..i want ,create other user..don't give oracle password for all user..only given this creating user,password only..but this user accessing oracle home files..thats all...
oracle password known everybody...so i will change ,but some file access needed...so what can i do ?any scripts ? any other user access the oracle home files only..?
- 02-22-2008 #6Linux Enthusiast
- Join Date
- Jul 2005
- Location
- Maryland
- Posts
- 521
Check permissions on oracle home directory.
If you want to give group read and write access you can try:
for read only (probably already set by default):Code:chmod 775 /home/oracle
and to deny access to others (except group), replace last 5 with 0:Code:chmod 755 /home/oracle
I think you would also need to useCode:chmod 770 /home/oracle
in ftp server config, so that ftp users can create files with write permission for group.Code:umask 0002


Reply With Quote