Need help in installing sunone v6 in windows


 
Thread Tools Search this Thread
Operating Systems Solaris Need help in installing sunone v6 in windows
# 1  
Old 09-21-2008
Need help in installing sunone v6 in windows

I am need of some help in installing sunone Directory server in windows.I have done the following but i am unable to proceed further..I downloaded the sunone identity management suite and ran the setup.bat file to install it.. The installation proceeded with all the default selections made and the webcontainer selected was the Application server 8. This created a default instance with the following configbasedn: dc=sun,dc=comhost and port: localhost:1389binddn:cn=Directory Managerpassword: I am able to start the instance through dsadm and view the directory structure through ldapbrowser.Next to create new users i installed Access Manager by running the AMConfig.bat in the .. /JavaES5/identity folder. I deployed the directory editor [de.war] through the application server and i am able to connect to the directory. I am able to create new users and groups.The problem i face is that i am unable to view the directory with the new user created. The directory is connecting but i am unable to list the contents.I deployed the access manager modules amconsole,amserver. When i opened the access manager link it shows a exception message and i am unable to proceed further.I need help in :How i can successfully configure the AccessManager.. or What permissions should be given to the user created in the directory editor to make it list the directory contents? Please help me in getting this solved... I have tried all the options and I am unable to figure out the entire thing for the past one week. Thanks in advance,Deepaksam
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Red Hat

Installing RHEL over Windows 7 or 8

Hi, Sorry if this is an incorrect place for this question but I haven't been able to find any answers by searching the forums or on google. I am in the market for a new HP Z420 workstation and HP wants a lot more money for one with the HP Linux Installer kit vs. the exact same configuration in... (2 Replies)
Discussion started by: rhopson
2 Replies

2. Windows & DOS: Issues & Discussions

Installing Windows 7 on a GPT drive

Hello, My hard drive was formatted with GPT. It is part of a volume group and has two logical volumes on it. Is it possible to convert the drive to MBR? If so, how would I got about doing it? I know there are programs out there that do it, but I have volume groups with LVM's so I am wondering if... (1 Reply)
Discussion started by: mojoman
1 Replies

3. Ubuntu

Re Installing windows XP after installing KUBUNTU

Hi I have dual operating system i.e Win XP and KUBUNTU. Now my windows XP is corrupted and i want to reinstall Win XP. So i just want to know Shall i have to reinstall Linux also or i can only reinstall win xp without affecting linux installation. Thanks Sarbjit (3 Replies)
Discussion started by: sarbjit
3 Replies

4. UNIX for Dummies Questions & Answers

Installing Windows xp on Solaris 10

Hi Guys, I don't know if this can be done or if anyone has managed to get this done - install Win xp on solaris 10 through vmware? I have searched extensively on the internet but I haven't come up with anything substantial. I am using an x86 based pc. Thanks in advance. (10 Replies)
Discussion started by: BigTool4u2
10 Replies

5. Linux

Installing linux with windows vista

I have a laptop running on vista, I would like to install linux on it, but I dont have the disk space, so can I have external disk to install linux. Whether I will be able to do ? (2 Replies)
Discussion started by: nickdba
2 Replies

6. Solaris

SunOne Directory (LDAP)

Just wondering anyone has experience in SunOne Directory (replication, migrationg etc..) here? (4 Replies)
Discussion started by: xiaochensg
4 Replies

7. Ubuntu

Installing Linux on an existing Windows PC?

Is it possible without having to reinstall windows? (4 Replies)
Discussion started by: Methal
4 Replies

8. HP-UX

Installing HP-UX o a windows based server

Hello, We would like to perform tests on a product that my company created lately. We don't have the right hardware for HP-UX enviornment I've read the thred "Unix environments for MS Windows", but didn't see there a possibility to install HP-UX OS on a special compatible hardware. We've... (4 Replies)
Discussion started by: AshkA
4 Replies

9. UNIX for Dummies Questions & Answers

installing unix on windows? clueless here

I'm trying to learn how to use unix by installing it on my windows xp without having to format anything. I got some advice to get vmware player and run unix on it. I got the player, but now I'm stuck on figuring out how to use it or even find the unix download that I can use with it. Anyone knows a... (4 Replies)
Discussion started by: tnad
4 Replies

10. UNIX for Dummies Questions & Answers

Installing Solaris behind a windows NAT...

Greetings, and thank you for your time. I am cracking the whip to self-teach myself Unix because I think it will be the best platform for me to really open my mind and be creative. Sadly I lack anyone experienced in Unix to nag with questions, so you will be seeing a lot of me here I am sure... (4 Replies)
Discussion started by: Dustin
4 Replies
Login or Register to Ask a Question
XUnmapWindow(3) 						  XLIB FUNCTIONS						   XUnmapWindow(3)

NAME
XUnmapWindow, XUnmapSubwindows - unmap windows SYNTAX
int XUnmapWindow(Display *display, Window w); int XUnmapSubwindows(Display *display, Window w); ARGUMENTS
display Specifies the connection to the X server. w Specifies the window. DESCRIPTION
The XUnmapWindow function unmaps the specified window and causes the X server to generate an UnmapNotify event. If the specified window is already unmapped, XUnmapWindow has no effect. Normal exposure processing on formerly obscured windows is performed. Any child window will no longer be visible until another map call is made on the parent. In other words, the subwindows are still mapped but are not visible until the parent is mapped. Unmapping a window will generate Expose events on windows that were formerly obscured by it. XUnmapWindow can generate a BadWindow error. The XUnmapSubwindows function unmaps all subwindows for the specified window in bottom-to-top stacking order. It causes the X server to generate an UnmapNotify event on each subwindow and Expose events on formerly obscured windows. Using this function is much more efficient than unmapping multiple windows one at a time because the server needs to perform much of the work only once, for all of the windows, rather than for each window. XUnmapSubwindows can generate a BadWindow error. DIAGNOSTICS
BadWindow A value for a Window argument does not name a defined Window. SEE ALSO
XChangeWindowAttributes(3), XConfigureWindow(3), XCreateWindow(3), XDestroyWindow(3), XMapWindow(3) XRaiseWindow(3) Xlib - C Language X Interface X Version 11 libX11 1.5.0 XUnmapWindow(3)