Security Standards for Redhat Enterprise 3...

 
Thread Tools Search this Thread
Operating Systems Linux Red Hat Security Standards for Redhat Enterprise 3...
# 1  
Old 05-22-2006
Question Security Standards for Redhat Enterprise 3...

Hi all,

Thanks for reading and any posts.

Quick question, has anyone out there got any suggestions for standards of security for Redhat enterprise 3. We are making an RAC cluster Oracle application using Oracle 9i (hopefully moving to 10g sooner rather than later).

Thanks again for any posts and for reading,

B14... aka... marky mark...
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Fedora

Redhat Linux Enterprise edition 6.4

Hi, please can any one tell me where can i download redhat linux 6.4 for training purpose? thanks & Regards (1 Reply)
Discussion started by: younusdba
1 Replies

2. Red Hat

Login failed in Redhat Enterprise 6.2

When i finished installation the Redhat Enterprise Linux 6.2, and login to the system, I can't login although username: root and Password correct. I install on the Hp Blade Server. I don't know why. How to fix this error? who can help me? :confused: Thanks! (3 Replies)
Discussion started by: dinhdangnd
3 Replies

3. Red Hat

Patch analysis tool Redhat Enterprise release 4

Hello I have been asked to provide a security patch analysis of servers in my environment. For HPUX and Solaris there are tools wich can be loaded onto the servers to do this. However I do not know of one for Redhat . At this point I must mentioned that the Redhat servers are behind a firewall... (2 Replies)
Discussion started by: dmsmith32
2 Replies

4. Red Hat

Redhat 5 enterprise auto kill script

hi all do i need to add rc. prefix on the stop script all the time especially on redhat 5 enterprise? like below ln -s /etc/init.d/rc.stopdb2 /etc/rc0.d/K01rc.stopdb2 and on the /etc/rc.local, i need to add this only touch /var/lock/subsys/stopdb2 Is that going to work? thanks... (1 Reply)
Discussion started by: itik
1 Replies

5. Red Hat

Samba smb not started on Redhat Enterprise

Hi i installed samba-client-3.0.23c-2 on Redhat Server but cat not start #service smb start. it gives error unrecognized smb I checked samba-common-3.0.23c-2 # rpm -qa |grep smb pam_smb-1.1.7-7.2.1 # rpm -qa |grep samba samba3-client-3.2.15-40.el5 Could someone help please? ... (1 Reply)
Discussion started by: lamoul
1 Replies

6. Red Hat

Redhat Enterprise version 4 RHEL4 patches

Hi, I would like to know if should i patch my system and sshd based on the version that i have here below: cat /etc/redhat-release Red Hat Enterprise Linux ES release 4 (Nahant Update 5) ------------ uname -a: redhat kernel version and type (64-bit or not) Linux server2 2.6.9-55.ELsmp... (2 Replies)
Discussion started by: lamoul
2 Replies

7. Red Hat

Python Installation problems on Redhat Enterprise Linux.

Hi All, I have to upgrade python installed on my Redhat enterprise Linux 4. I downloaded the latest python package from python website but not able to install the new package as the make command itself goes on running for more than a day. Can some help me regarding this. Is ther any method to... (2 Replies)
Discussion started by: Praveen H
2 Replies

8. Solaris

Security Standards...

Hi All, Thanks in advance for reading and any posts. I was wondering if anyone has come across or can recomend or has any security standards that we could implement. We are running production Oracle systems on Solaris 8 boxes (which are global). We are after security considerations... (4 Replies)
Discussion started by: B14speedfreak
4 Replies
Login or Register to Ask a Question
OCI_SERVER_VERSION(3)													     OCI_SERVER_VERSION(3)

oci_server_version - Returns the Oracle Database version

SYNOPSIS
string oci_server_version (resource $connection) DESCRIPTION
Returns a string with the Oracle Database version and available options PARAMETERS
o $connection - RETURN VALUES
Returns the version information as a string or FALSE on error. EXAMPLES
Example #1 oci_server_version(3) example <?php $conn = oci_connect("hr", "hrpwd", "localhost/XE"); echo "Server Version: " . oci_server_version($conn); // Displays: // Server Version: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production // With the Partitioning, OLAP, Data Mining and Real Application Testing option oci_close($conn); ?> NOTES
Note In PHP versions before 5.0.0 you must use ociserverversion(3) instead. This old name still can be used. However it is deprecated and not recommended. SEE ALSO
oci_client_version(3). PHP Documentation Group OCI_SERVER_VERSION(3)