Displaying 20 results from an estimated 2000 matches similar to: "Installing Oracle"
2012 Oct 24
13
Puppet & Oracle Database config management
Afternoon all.
I''ve been reading around on Puppet and Oracle, and have come up with a few
links that suggest how to get Oracle installed and base configured, which
has got me started in the right direction on that.
My next challenge is maintaining Oracle database specific configuration on
the relevant hosts. This contains various elements, such as /etc/oratab,
/etc/oranfstab (as
2005 Jul 27
7
Oracle OCI8, or "am I going crazy?"
All of a sudden, on three different systems, the "server_ip_address/sid_name"
syntax in database.yml has stopped working for me.
I can''t even do a OCI8.new(blah blah blah) statement from an IRB shell.
I get "ORA-12541: TNS:no listener", or some variant, depending on how I phrase it.
On systems where I have a real deal client installed, and OCI can find the
tnsnames
2006 Mar 28
2
Rails Oracle connection
I''m using the following configuration in the database.yml to connect to
Oracle,
however I could not connect while the settings seems to be correct:
development_oracle:
adapter: oci
host: 127.0.0.1:8080/XE
username: rubydb
password: rubyrails
What is wrong here?
Can anyonbe help me?
--
Posted via http://www.ruby-forum.com/.
2005 Sep 24
1
10gR2, oifcfg fails on ocfs2
Howdy,
I am trying to setup a 10gR2 RAC on top of some nbd devices. OS is
Centos4.1/i386, (2.6.9-11.0.0.10.3.EL, ocfs2-2.6.9-11.0.0.10.3.EL-1.0.4-1).
ocfs2 setup went perfectly well, btw. (besides the fact that
ocfs2console apparently ignores nbd disks)
mount says
/dev/nbd1 on /opt/oradata/data1 type ocfs2 (rw,_netdev)
on both nodes
ls says (after runInstaller was started, so the files were
2006 Feb 20
2
Oracle & Ruby on Rails
I''ve a remote database create using Oracle. This database use schemas.
I tried to connect to it using Ruby On Rails,with this file Database.yml
:
development:
adapter: oci
host: liber
database: ENERGIA
username: user
password: pass
test:
adapter: oci
host: liber
database: ENERGIA
username: user
password: pass
production:
adapter: oci
host: liber
database:
2004 Aug 11
2
possible suppression for output ?
Hi,
Whenever i sync certain files in ( like /etc/tnsnames.ora ) from our
hostA to hostB, rsync always print out
/etc/
it prints out the files modified.
it does that for every directory name in the path of files i update...
Is there a way to suppress that output, since it is not modifying that
directory ?
Thanks
Daniel Bourque
Unix Systems Administrator
BTS Platform Services
Learjet Inc.
2006 May 16
4
Oracle and MySql simultaneously from rails app
I searched this site on Oracle && MySql, nothing came up, so perhaps
this is a new topic for this forum.
I''d like to access two databases from the same application
simultaneously (well, more precisely, in rapid succession, calling one
first and then the other, as any "joins" will be done in the application
code).
One database is in MySql, the other is Oracle.
2007 Oct 23
3
Ruby on Rails and Oracle
Hello, I''m having a trouble when I try to connect RoR and Oracle.
I believe that it has something to do with database.yml, this is how my
database.yml looks:
development:
adapter: oci
database: 127.0.0.1:1521/XE
username: system
password: y1984nip0359
host: 127.0.0.1
And this is the Error that i get:
-> http://127.0.0.1:3000/blog
OCIError in BlogController#index
2011 Nov 18
10
msi package provider: Invalid parameter install_options
C:\Users\ml623>puppet --version
2.7.7
Puppet complains about a package resource I am trying to use saying:
Invalid parameter install_options
The resource is defined as:
package { "splunk":
name => $gu_splunk::client::splunk_package,
provider => ''msi'',
ensure => installed,
source =>
2011 Nov 28
4
Puppet Windows: Spaces in file paths a problem?
I thought I read somewhere in Puppet docs/wiki... that it is
"recommended" to avoid spaces in file paths, or some similar verbiage,
but now I cant find it.
Does Puppet have any known issues with spaces in file paths? It would
of course scare Windows admins away... So I hope I am wrong in
thinking I read that.
Thanks a lot,
Mohamed.
--
You received this message because you are
2010 Jun 01
12
Wine & Pro/Intralink
Hi
My name i Lorenzo, I'm new on linux's world. I wold like to know is someone has tried to use Wine with Pro/Intralink (a PTC product). During installation...no problem. Lunching the program after installation... no results.
Following, more informations:
WINE Version: Wine 1.2-rc1
TERMINAL OUTPUT DURING INSTALLATION
[code]icelolli at ascari:/media/PRO$ wine setup.exe
icelolli at
2011 Nov 29
5
puppetlabs-firewall: source param as array
Hi,
am trying this rule:
firewall { ''100 allow ssh from GUNET'':
proto => ''tcp'',
dport => ''22'',
source => [''10.0.0.0/8'',''192.168.0.0/16'',],
action => accept,
}
and it only seems to add a rule for the first subnet. The second is
silently
2006 Mar 28
2
Problem with generating a scaffold with an Oracle DB
Hi all,
I have confgured my oracle application with the Oracle Express
Production release database. This all is configured well and tested(I
can see that he founds the database). However, when I generate a
scaffold application there is no view for the CRUD functions created for
the application.
Below is listed what is generated for me for a Products table:
E:\workdir\ruby\depot>ruby
2010 Apr 16
1
Group Membership and Exec
Hi,
I have a puppet module that I''m using to manage Oracle 11G. I''m using
puppet 0.24.8 on 64-bit CentOS 5.4. Everything works properly except
the execution of the oracle installer. It fails because it believes
that the user it is running as is not a member of the proper groups.
However, the user is in the groups, and if I log in as that user and
run the same command that puppet
2011 Feb 10
3
Unwanted whitespace generated by template
I have this in a template:
===============cut here=====================
# Allow ICMP traffic
-A RH-Firewall-1-INPUT -p icmp --icmp-type any -j ACCEPT
<% if netbackup_master_servers %>
<% netbackup_master_servers.each do |master_server| -%>
# Allow communication with NetBackup master server <%= master_server[0] %>
-A RH-Firewall-1-INPUT -p tcp -m tcp -s <%= master_server[1]
2011 Aug 08
4
Help with retrieving a user's environment variable
Hi,
I need to get the environment variable ORACLE_SID from the OS. I know this can be done with the following:
$blah = env("PATH")
However, the ORACLE_SID variable is only set under the oracle user account. So I would need a way to login as the oracle account first to retrieve the ORACLE_SID variable. Is there anyway to get the environment variable from a user''s account
2011 Apr 13
17
Deploy puppet via NFS?
In our environ, there are several services that are deployed via an
NFS mount, so that the executables and configs are consistent across
the board.
Is there any reason why this couldn''t be done with Puppet? For
example, each individual system would contain its own /etc/puppet and
rc.d and pid files -- but the primary deployment would come from
NFS.
For that matter, as Enterprise
2002 Aug 29
1
Oracle 8.1.7 client
I am SOOOOOOOOOOOOOO close to getting my ERP package to run. GRRR. Latest
version of Codeweaver WINE, just downloaded yesterday. IE works, MSOffice
works well - no icons, but still runs, including JAVA. So, WINE seems to
work OK.
The program is a Delphi EXE, using the BDE. I can even run BDEADMIN, but
when attempting to login to the database, there is a lot of disk churning
(indicating I am
2010 Oct 06
5
How do you ensure safety from errors/bugs in large deployments?
Hello all,
This is not a puppet proper issue of course.. but I was wondering if
any of you could share some thoughts...
When you deploy a system like Puppet at a large park of systems, you
instantly increase the efficacy of mistakes and bugs in destroying the
environment....
How do you deal with that? I would be interested in any experience or
input, especially puppet proper best practices...
2011 Jan 07
4
facter --puppet does not report "environment"
Is it normal that "facter --puppet" does not show the environment
variable? is there a way to have it include it?
Thanks a lot,
Mohamed.
--
You received this message because you are subscribed to the Google Groups "Puppet Users" group.
To post to this group, send email to puppet-users@googlegroups.com.
To unsubscribe from this group, send email to