Re: [EXTERNAL] - [Puppet Users] Installing oracle 19c on windows 10

2024-04-17 Thread tedy banks
Thanks so much, kind stranger. I'm looking into psexec right now On Thursday 11 April 2024 at 22:46:30 UTC-7 dhei...@opentext.com wrote: > Am Donnerstag, dem 11.04.2024 um 09:52 -0700 schrieb tedy banks: > > How can i go about doing this ? > > > You can either use "exec{}" together with "psexec"

Re: [EXTERNAL] - [Puppet Users] Installing oracle 19c on windows 10

2024-04-11 Thread 'Dirk Heinrichs' via Puppet Users
Am Donnerstag, dem 11.04.2024 um 09:52 -0700 schrieb tedy banks: How can i go about doing this ? You can either use "exec{}" together with "psexec" or a similar tool, or a "scheduled_task{}" that runs once, as Administrator to execute your installation command. HTH... Dirk -- Dirk Heinrichs

[Puppet Users] Installing oracle 19c on windows 10

2024-04-11 Thread tedy banks
Hello All, New puppet user here. I'm trying to install oracle on one of our machines but it keeps failing because we use the local windows account to install dependencies but oracle needs an account with admin access to be installed properly. How can i go about doing this ? Can I grant the loc

Re: [Puppet Users] Installing Oracle

2011-11-20 Thread Ashley Penney
Oh nice! I'm going to look into this - I hadn't spotted this. My solution was rather basic and once the RPM was installed and the various /etc/ stuff done I was just starting up oracle and then telling the developers to: sudo su - oracle sqlplus database/password @some script the dbas gave us @a

Re: [Puppet Users] Installing Oracle

2011-11-20 Thread Kristof Willaert
Hi, [snip] Thanks. One question though. I'm not much of an Oracle expert, and I > guess this is more of an Oracle question, than a puppet one, but what > did you do to configure Oracle on the command line once it was > installed? > Oracle actually provides some stuff exactly for this. There is a

Re: [Puppet Users] Installing Oracle

2011-11-19 Thread Douglas Garstang
Ashley, Thanks. One question though. I'm not much of an Oracle expert, and I guess this is more of an Oracle question, than a puppet one, but what did you do to configure Oracle on the command line once it was installed? It seems like there are some post install config steps, but the Oracle docume

Re: [Puppet Users] Installing Oracle

2011-11-19 Thread Eric Shamow
Douglas, https://github.com/jordansissel/fpm It's pretty good at quick and dirty package building. -Eric -- Eric Shamow Professional Services http://puppetlabs.com/ (c)631.871.6441 On Saturday, November 19, 2011 at 1:44 PM, Douglas Garstang wrote: > Ashely, > > Not familiar with fpm. Wha

Re: [Puppet Users] Installing Oracle

2011-11-19 Thread Douglas Garstang
Ashely, Not familiar with fpm. What is it? Are you saying you installed Oracle, and then use fpm (rpm?) to create a package from the installed files? I thought about that... this approach would work if installing Oracle meant just installing files, but what if the installer executes scripts etc th

Re: [Puppet Users] Installing Oracle

2011-11-19 Thread Ken Barber
I actually agree with Ashley's approach. Binary installation is going to be better done with a package if you can - albeit the package may be quite large. You want to install it in such a way so its generic, and then let Puppet specialize it afterwards. Activities like creating new schemas, users,

Re: [Puppet Users] Installing Oracle

2011-11-19 Thread Ashley Penney
This is not what you want to hear but I ended up installing oracle with the installer and then using "fpm" to bundle the entire thing into (two, because it's too goddamn big) rpms. I had no luck doing the installer via Puppet so I just cheated. On Sat, Nov 19, 2011 at 1:11 PM, Douglas Garstang wr

Re: [Puppet Users] Installing Oracle

2011-11-19 Thread Douglas Garstang
That's what I am already using. On Fri, Nov 18, 2011 at 6:33 PM, Mohamed Lrhazi wrote: > Maybe you need something like this: > http://www.oracle-base.com/articles/misc/OuiSilentInstallations.php > > > On Fri, Nov 18, 2011 at 9:23 PM, Douglas Garstang > wrote: >> This is pretty ugly. >> >> I'm us

Re: [Puppet Users] Installing Oracle

2011-11-18 Thread Mohamed Lrhazi
Maybe you need something like this: http://www.oracle-base.com/articles/misc/OuiSilentInstallations.php On Fri, Nov 18, 2011 at 9:23 PM, Douglas Garstang wrote: > This is pretty ugly. > > I'm using puppet to install Oracle, ie an exec{} wrapped around: > > /u01/oracle_extract/linux.x64_11gR2_dat

[Puppet Users] Installing Oracle

2011-11-18 Thread Douglas Garstang
This is pretty ugly. I'm using puppet to install Oracle, ie an exec{} wrapped around: /u01/oracle_extract/linux.x64_11gR2_database/database/runInstaller -silent -responseFile /etc/oracle_response.rsp The problem is that the damn installer backgrounds itself and returns control to the shell. I tr