Re: [ansible-project] Oracle 12C hangs with while doing unattended installation

2018-09-23 Thread Isha G
Anyone else online? Please help with this issue. On Sunday, September 23, 2018, Isha G wrote: > Thanks for the quick reply. I see Oracle universal installer window open > up when I run this manually through power shell or command line. I didn't > see either anything popping up while installing

Re: [ansible-project] Oracle 12C hangs with while doing unattended installation

2018-09-23 Thread Varun Chopra
That wasn't my question though. If you can run it remotely from another windows vm you should be able to see where it breaks side-by-side. Also, is there a reason you're not using win_package? On Sunday, September 23, 2018 at 10:49:19 PM UTC+5:30, Isha G wrote: > > I have just tried it

Re: [ansible-project] Oracle 12C hangs with while doing unattended installation

2018-09-23 Thread Varun Chopra
Can you install it remotely via invoke-command? -- You received this message because you are subscribed to the Google Groups "Ansible Project" group. To unsubscribe from this group and stop receiving emails from it, send an email to ansible-project+unsubscr...@googlegroups.com. To post to this

Re: [ansible-project] Oracle 12C hangs with while doing unattended installation

2018-09-23 Thread Isha G
I have just tried it locally and manually and it works every time. I just created a couple of new Windows servers and installing it with ansible hangs again so it does not seem to be a cleanup issue. On Sunday, September 23, 2018, Varun Chopra wrote: > Can you install it remotely via

Re: [ansible-project] Oracle 12C hangs with while doing unattended installation

2018-09-23 Thread Isha G
For SQL we used win_command so I thought that should work for Oracle but it doesn't seem to work. Should I try through remote power shell ? On Sunday, September 23, 2018, Varun Chopra wrote: > That wasn't my question though. > > If you can run it remotely from another windows vm you should be

Re: [ansible-project] Unable to authenticate through CredSSP

2018-09-23 Thread Ankit Vashistha
Is your user a part of admin group? On Sun, Sep 23, 2018, 11:38 AM Shyam wrote: > Hi all, > > Im unable to connect to windows using the credssp authentication issue. Im > getting the following error, > > > x.x.x.x | UNREACHABLE! => { > "changed": false, > "msg": "credssp:

[ansible-project] Unable to authenticate through CredSSP

2018-09-23 Thread Shyam
Hi all, Im unable to connect to windows using the credssp authentication issue. Im getting the following error, x.x.x.x | UNREACHABLE! => { "changed": false, "msg": "credssp: HTTPSConnectionPool(host='x.x.x.x', port=5986): Max retries exceeded with url: /wsman (Caused by

[ansible-project] Can someone help me with this please?

2018-09-23 Thread Anand Varkey Philips
Hi all, I am stuck here.. Can some one help me with this: https://serverfault.com/questions/932228/create-new-server-and-use-its-server-id-to-install-apache-tomcat-on-new-server-t -- You received this message because you are subscribed to the Google Groups "Ansible Project" group. To

Re: [ansible-project] Unable to authenticate through CredSSP

2018-09-23 Thread Shyam
> > Hi Ankit, > > Thanks for your reply. The user have all the admin rights. Still Im unable to connect to the remote host. Same error. -- You received this message because you are subscribed to the Google Groups "Ansible Project" group. To unsubscribe from this group and

Re: [ansible-project] Oracle 12C hangs with while doing unattended installation

2018-09-23 Thread Isha G
I have tried it several times manually with proper cleanup and it has worked everyone with this answer file. What I see while installing through Ansible is it starts the setup.exe but the other screen of command line Oracle universal installer doesn't pop up during installation through Ansible. Is

Re: [ansible-project] Oracle 12C hangs with while doing unattended installation

2018-09-23 Thread Isha G
Thanks for the quick reply. I see Oracle universal installer window open up when I run this manually through power shell or command line. I didn't see either anything popping up while installing through sensible nor is the installation moving forward. No app folder is created or setup.exe also

Re: [ansible-project] Unable to authenticate through CredSSP

2018-09-23 Thread Shyam
Hi, Im able to ping with Basic AUTH and NTLM, using the port number 5985. But when Im trying to connect with CredSSP, Im getting the error. Settings for Basic and NTLM in inventory == ansible_user: Administrator ansible_password: xx ansible_port: 5985 ansible_connection: winrm

Re: [ansible-project] Oracle 12C hangs with while doing unattended installation

2018-09-23 Thread Isha G
Can someone please help? The system still gets stuck with setup.exe at 0 % CPU and keeps the installation of Oracle 12 c running. but it's not moving forward at all. On Fri, Sep 21, 2018 at 5:08 PM Isha G wrote: > Works when run manually. > Even with ansible, when we run the playbook the

Re: [ansible-project] Oracle 12C hangs with while doing unattended installation

2018-09-23 Thread Karl Auer
Make sure that you have removed ALL Oracle-related environment variables and try it again manually. I reckon there is something that is NOT in the response file, but that is supplied via another channel such as an environment variable when you do it manually. It definitely sounds as if the setup

Re: [ansible-project] Oracle 12C hangs with while doing unattended installation

2018-09-23 Thread Karl Auer
What exactly are you expecting to see "pop up"? Regards, K. On Mon, Sep 24, 2018 at 1:05 AM, Isha G wrote: > I have tried it several times manually with proper cleanup and it has > worked everyone with this answer file. What I see while installing through > Ansible is it starts the setup.exe

Re: [ansible-project] Unable to authenticate through CredSSP

2018-09-23 Thread Jordan Borean
You have to make sure CredSSP is enabled in the server roles with 'Enable-WSManCredSSP -Role Server' https://docs.microsoft.com/en-us/powershell/module/microsoft.wsman.management/enable-wsmancredssp. This is because CredSSP uses unconstrained delegation and people should be aware of the

Re: [ansible-project] Oracle 12C hangs with while doing unattended installation

2018-09-23 Thread Will McDonald
In addition to Jordan's recommendations, have you created an oraInventory? I haven't automated the OUI on Windows but generally, on *nix platforms you need to manually create an empty OUI inventory with the appropriate ownerships and permissions. (You can work this out from a successful install

Re: [ansible-project] Oracle 12C hangs with while doing unattended installation

2018-09-23 Thread Varun Chopra
For msi and exe packages - use win_package as a rule of thumb. If you still have issues with these, you can report an issue here https://github.com/ansible/ansible/issues because the module's supported by the community. win_command shouldn't be used for installations as it usually ends up in a

Re: [ansible-project] Oracle 12C hangs with while doing unattended installation

2018-09-23 Thread Jordan Borean
It's very hard for us to help you in this situation but basically it boils down to you running these checks and finding out what is causing the program to hang; * Use something like procexp to see if the setup.exe process is spawning any child processes that are running in the background *