Home > error ora > error ora 24408

Error Ora 24408

Contents

here for a quick overview of the site Help Center Detailed answers to any questions you might have Meta Discuss the workings and policies of this site About Us Learn more about Stack Overflow the oci_connect(): ora-24408: could not generate unique server group name company Business Learn more about hiring developers or posting ads with us Stack Overflow Questions

Php Oci_connect

Jobs Documentation Tags Users Badges Ask Question x Dismiss Join the Stack Overflow Community Stack Overflow is a community of 4.7 million ora 21561 programmers, just like you, helping each other. Join them; it only takes a minute: Sign up ORA-24408: could not generate unique server group name up vote 11 down vote favorite 1 system: Linux web 2.6.27.21-0.1-pae #1 SMP oracle instant client 2009-03-31 14:50:44 +0200 i686 i686 i386 GNU/Linux PHP Version 5.3.8 Apache Version Apache/2.2.21 (Linux/SUSE) OCI8 Support enabled Version 1.4.7 Revision $Revision: 321634 $ Active Persistent Connections 0 Active Connections 0 Oracle Run-time Client Library Version 11.2.0.3.0 Oracle Instant Client Version 11.2 when calling oci_connect - receiv ORA-24408: could not generate unique server group name can`t understand what the kind error is this and howto fix it. php oracle share|improve this question edited May 7 '12 at 23:05 hakre 134k26216387 asked May 7 '12 at 14:53 Subdigger 1,44521536 1 nickshontz.wordpress.com/2011/11/29/php-oracle –Sérgio Michels May 7 '12 at 23:59 Sérgio Michels - thanks, i`ll try –Subdigger May 8 '12 at 8:55 Sérgio Michels - it works tnx –Subdigger May 8 '12 at 9:20 Ok, I put this as an answer, so others can see that this question have a solution :) –Sérgio Michels May 8 '12 at 12:38 add a comment| 6 Answers 6 active oldest votes up vote -4 down vote accepted This is a error with compatibility of the runtime oracle 11g and PHP Oci support. As the OP confirm, the downgrade of the client to 10g works. The solution was found here. share|improve this answer answered May 8 '12 at 12:37 Sérgio Michels 11.9k12654 2 A downgrade is definitely NOT necessary - see my answer below. –Camden S. Dec 6 '13 at 15:56 @CamdenS. Resuscitating old topics? :-) I just put it as an answer as requested by the OP, maybe worth a comment in the blog post too. –Sérgio Michels Dec 6 '13 at 16:45 add a comment| up vote 32 down vote You can downgrade to 10g if you want (it evidently doesn't care about this) but that's not necessa

I came to work. It being Monday and all, seeing that PHP stopped talking to Oracle (which it was doing wonderfully until Friday), and that all reports are hence broken (which were not until Friday) is not a good start of the week. Add the cryptic Oracle errors, and you're set for nerve wrecking debugging.I quickly found out that the problem was that the server was restarted by IT during the weekend due to "other issues". Not even gonna go there. The fact is, after a http://stackoverflow.com/questions/10484231/ora-24408-could-not-generate-unique-server-group-name system reboot, PHP can no longer connect to Oracle, spawning the extremely helpful error "ORA-24408: COULD NOT GENERATE UNIQUE SERVER GROUP NAME" when calling oci_connect() (or similar).No amount of cursing helped, and the usual debugging method (ie Googling around) showed that the dominant solution was to downgrade to OCI8 v.10. What the hell ?Some saner guys mentioned http://www.hexblot.com/blog/making-php-play-nice-oracle-part-1 that this is usually caused by an enviroment problem, but even after tinkering about nothing helped, so I'll skip to the good part -- the problem is that the server need to be able to resolve its own hostname to localhost.That is, if your server hostname is myserver.local, then pinging myserver.local from itself should resolve to 127.0.0.1 and NOT the server proper ip ( eg your intranet LAN ip ).Do note that the safest way to see which is your hostname is to type "hostname" on the terminal (no quotes, duh). It might be more than you think!Therefore, you simply add your hostname to the server /etc/hostsfile and you're done. I have absolutely no flipping clue why this is, but it actually works. If you're one of the initiated Oracle clan members, kindly enlighten me; until someone does that though, I feel entitled to call this "requirement" a completely obnoxious badly document project breaking pain in the .. oh well.Hope someone else benefits from my lack of hair.Image from http://leadershipfreak.wordpress.com/2009/12/28/frustration-or-insp

Edit # nano /etc/sysconfig/network And # nano /etc/hosts With the same HOSTNAME Edit /etc/sysconfig/network # nano /etc/sysconfig/network 1 2 3 NETWORKING=yes NETWORKING_IPV6=no HOSTNAME=zacker Edit /etc/hosts http://ahmadzainuddinzakaria.blogspot.com/2012/06/warning-ociconnect-functionoci-connect.html # nano /etc/hosts # Do not remove the following line, or various programs # that require network functionality will fail. 127.0.0.1 zacker ::1 localhost6.localdomain6 localhost6 # /etc/init.d/network restart Posted by Ahmad Zainuddin at 19:27 Reactions: Email ThisBlogThis!Share to TwitterShare to FacebookShare to Pinterest 8 comments: kilimo14 March 2014 at 03:02Thanks. Worked for error ora me after hours of searchingReplyDeleteAhmad Zainuddin16 March 2014 at 23:49WelcomeReplyDeleteWilfred Arambhan13 April 2015 at 02:12I followed the above steps, but facing with same issue ORA-24408: could not generate unique server group name, below is my oracle connection test codeI need to connect to external oracle database: if($c = oci_connect('orcl_username', 'orcl_pswd', '//orcl.server.domain.name:1521/servicename')){echo "Successfully error ora 24408 connected to Oracle.";oci_close($c);} else {$err = oci_error();$error = $err['message']."\n\n";print $error;}/etc/sysconfig/network (in my server not oracle server)NETWORKING=yesNETWORKING_IPV6=noHOSTNAME=localhost/etc/hosts (in my server not oracle server)127.0.0.1 localhostDo I need to have the same configuration in oracle server as well? Please help me out.ReplyDeleteAhmad Zainuddin13 April 2015 at 02:33try to change hosts and network to another name, not localhost, restart and connect backReplyDeleteWilfred Arambhan13 April 2015 at 02:35Thanks for the reply, could you be more elaborate , do I need to change hostname to the oracle server name? or can this be any name and do I need to specify the ip?ReplyDeleteWilfred Arambhan13 April 2015 at 04:25So you mean do I want to remove the localhost and add the oracle server name ?ReplyDeleteWilfred Arambhan13 April 2015 at 08:30Okay, finally Ive found a way, my webserver hostname needs to be added in /etc/hosts like this 127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4 [hostname]orcl db ip orcl db hostnameand in /etc/sysconfig/networkNETWORKING=yesHOSTNAME=orcl db hostnamecheers!ReplyDe

 

Related content

connection was refused with error ora-12518

Connection Was Refused With Error Ora- table id toc tbody tr td div id toctitle Contents div ul li a href Listener Could Not Hand Off Client Connection Sqlplus a li li a href Logging listener name on a li li a href Ibm aix Risc System Error Broken Pipe a li ul td tr tbody table p connection Posted by Anil Kumar on June All Posts Database Oracle relatedl DBA Comments Fixed ORA- TNS listener could ora- solution not hand off client connection vote You try listener refused the connection with the following error ora to connect with Oracle

error ora 41214

Error Ora table id toc tbody tr td div id toctitle Contents div ul li a href Frm Unable To Get Report Job Status a li li a href Frm- a li li a href Rep- a li li a href Run report object In Oracle Forms g a li ul td tr tbody table p CommunityOracle User Group CommunityTopliners CommunityOTN Speaker BureauJava CommunityError You don't have JavaScript enabled This tool uses JavaScript and much of it relatedl will not work correctly without it enabled frm- c Please turn JavaScript back on and reload this page Please p h id

error ora 01925

Error Ora p SQL TuningSecurityOracle UNIXOracle LinuxMonitoringRemote supportRemote plansRemote servicesApplication Server ApplicationsOracle FormsOracle PortalApp UpgradesSQL ServerOracle ConceptsSoftware SupportRemote Support SPAN Development Implementation Consulting StaffConsulting PricesHelp relatedl Wanted Oracle PostersOracle Books Oracle Scripts Ion Excel-DB Don Burleson Blog P TD TR TBODY FORM td ORA- maximum of string enabled roles exceeded tips Oracle Error Tips by Burleson Consulting S Karam The Oracle docs note this on the ora- error ORA- maximum of string enabled roles exceeded Cause The INIT ORA parameter max enabled roles has been exceeded font Action Increase max enabled roles and warm start the database An example of

error ora 02256

Error Ora table id toc tbody tr td div id toctitle Contents div ul li a href Train a li ul td tr tbody table p MySQL MariaDB PostgreSQL SQLite MS Office Excel Access Word Web Development HTML CSS Color Picker Languages C Language More relatedl ASCII Table Linux UNIX Java Clipart Techie Humor Advertisement number of referencing columns in foreign key differs from number of referenced columns Oracle Basics ALIASES AND AND OR BETWEEN COMPARISON OPERATORS DELETE DISTINCT p h id Train p EXISTS FROM GROUP BY HAVING IN INSERT INSERT ALL INTERSECT IS NOT NULL IS NULL JOIN

error ora 29875

Error Ora p without it enabled Please turn JavaScript back on and reload this page All Places GIS Managing Data DiscussionsLog in to create and relatedl rate content and to follow bookmark and share content with other members Underlying DBMS error ORA- failed in the execution of the ODCIINDEXINSERT routDiscussion created by mousaem on Feb Latest reply on Sep by staspinar Like bull Show Likes Comment bull Hi i have a feature class that is versioned with st geometry storage when i try to edit it using ArcMap with an Oracle user that has the full editing privileges i receive

error ora

Error Ora table id toc tbody tr td div id toctitle Contents div ul li a href Ora Error List a li li a href Ora Err a li li a href Error Ora Sql Developer a li li a href Error Ora a li ul td tr tbody table p and other ora error codes troubleshooting information in these books List of Message Types p h id Ora Error List p ORA- to ORA- ORA- to ORA- ORA- to ORA- ORA- to ORA- ORA- to oracle error ORA- ORA- to ORA- ORA- to ORA- ORA- to ORA- ORA- to

error ora 12154

Error Ora table id toc tbody tr td div id toctitle Contents div ul li a href Error Ora a li li a href Connect Identifier a li li a href Oracle Connection Error Ora- a li ul td tr tbody table p SQL TuningSecurityOracle UNIXOracle LinuxMonitoringRemote supportRemote plansRemote servicesApplication Server ApplicationsOracle FormsOracle PortalApp UpgradesSQL ServerOracle ConceptsSoftware SupportRemote Support SPAN Development Implementation Consulting StaffConsulting PricesHelp Wanted relatedl Oracle PostersOracle Books Oracle Scripts Ion Excel-DB error ora Don Burleson Blog P TD TR TBODY FORM td error ora ORA- TNS could not resolve service name tips Question I need help with

error ora 01786

Error Ora p here for a quick overview of the site Help Center Detailed answers to any questions you might have Meta relatedl Discuss the workings and policies of this site About Us Learn more about Stack Overflow the company Business Learn more about hiring developers or posting ads with us Stack Overflow Questions Jobs Documentation Tags Users Badges Ask Question x Dismiss Join the Stack Overflow Community Stack Overflow is a community of million programmers just like you helping each other Join them it only takes a minute Sign up Why can't I use SELECT hellip FOR UPDATE with

error ora 12640

Error Ora p OPSSQL relatedl a user may get the following error Problem sqlnet ora has the following entry SQLNET AUTHENTICATION SERVICES NTS Resolution The work around for this is to set the SQLNET AUTHENTICATION SERVICES NONE in the sqlnet ora fileIn Windows Explorer go to the local hardrive E in this case to E Oracle Ora Network Admin sqlnet ora Save changes and close sqlnet ora and log back into OPSSQL Related Articles No Related Articles Available Article Attachments No Attachments Available Related External Links No Related Links Available Help us improve this article What did you think of

error ora 20900

Error Ora table id toc tbody tr td div id toctitle Contents div ul li a href Ora- a li ul td tr tbody table p during submitting the backup job If this is your first visit be sure to relatedl check out the FAQ by clicking the link oracle error ora- above You may have to register before you can post click p h id Ora- p the register link above to proceed To start viewing messages select the forum that you want to visit from the selection below Results to of Thread Ora- during submitting the backup job

error ora 01727

Error Ora p MySQL MariaDB PostgreSQL SQLite MS Office Excel Access Word Web Development HTML CSS Color Picker Languages C Language More ASCII Table Linux UNIX Java relatedl Clipart Techie Humor Advertisement Oracle Basics ALIASES AND AND numeric precision specifier is out of range to error OR BETWEEN COMPARISON OPERATORS DELETE DISTINCT EXISTS FROM GROUP BY HAVING IN INSERT number datatype in oracle INSERT ALL INTERSECT IS NOT NULL IS NULL JOIN LIKE MINUS NOT OR ORDER BY PIVOT REGEXP LIKE SELECT SUBQUERY TRUNCATE ora invalid identifier UNION UNION ALL UPDATE WHERE Oracle Advanced Oracle Cursors Oracle Exception Handling Oracle

error ora 3114

Error Ora p SQL TuningSecurityOracle UNIXOracle LinuxMonitoringRemote supportRemote plansRemote servicesApplication Server ApplicationsOracle FormsOracle PortalApp UpgradesSQL ServerOracle ConceptsSoftware SupportRemote Support SPAN Development Implementation Consulting StaffConsulting PricesHelp Wanted Oracle PostersOracle Books Oracle relatedl Scripts Ion Excel-DB Don Burleson Blog P TD TR TBODY FORM td ORA- Not Connected to Oracle tips Oracle Database Tips by Burleson Consulting td tr The ORA- Not Connected to Oracle error is commonly found when there is a problem with the network connectivity The docs note ORA- not connected to ORACLE Cause A call to Oracle was attempted when no connection was established Usually this happens because

error ora 01458

Error Ora table id toc tbody tr td div id toctitle Contents div ul li a href Ora- Solution a li ul td tr tbody table p SQL TuningSecurityOracle UNIXOracle LinuxMonitoringRemote supportRemote plansRemote servicesApplication Server ApplicationsOracle FormsOracle PortalApp UpgradesSQL ServerOracle ConceptsSoftware SupportRemote Support SPAN Development relatedl Implementation Consulting StaffConsulting PricesHelp Wanted Oracle ora- pro c PostersOracle Books Oracle Scripts Ion Excel-DB Don Burleson Blog p h id Ora- Solution p P TD TR TBODY FORM td ORA- invalid length inside variable character ora- invalid length for variable character string string Oracle Error Tips by Burleson Consulting The Oracle docs note

error ora 38029 object statistics are locked

Error Ora Object Statistics Are Locked p want to lock statistics in a table in certain cases for example if you want a table not be relatedl analyzed by automatic statistics job but analyze it later or in cases where you want prevent from analyzing statistics in cases where data in the table doesn't change The following example shows how to lock table statistics and what happens when one tries to gather statistics on table that has statistics locked -- create table SQL create table test x number Table created -- create index SQL create index test idx on test

error ora 12546 tns permission denied

Error Ora Tns Permission Denied p SQL TuningSecurityOracle UNIXOracle LinuxMonitoringRemote supportRemote plansRemote servicesApplication Server ApplicationsOracle FormsOracle PortalApp UpgradesSQL ServerOracle ConceptsSoftware SupportRemote Support relatedl SPAN Development Implementation Consulting StaffConsulting PricesHelp Wanted Oracle PostersOracle Books Oracle Scripts Ion Excel-DB Don Burleson Blog P TD TR TBODY FORM td ORA- TNS permission denied tips Oracle Error Tips by Stephanie F The Oracle docs note this on the ora- error ORA- TNS permission denied Cause User has insufficient privileges to perform the requested operation font Action Acquire necessary privileges and try again These two links have great resources on information concerning ORA- http www

error ora-12505

Error Ora- table id toc tbody tr td div id toctitle Contents div ul li a href Listener Refused Connection Error Ora- a li li a href Error Ora Sql Developer a li li a href Ora Jdbc a li li a href Listener Refused The Connection With The Following Error Ora- In Oracle Sql Developer a li ul td tr tbody table p here for a p h id Listener Refused Connection Error Ora- p quick overview of the site Help Center Detailed ora error answers to any questions you might have Meta Discuss the workings and p h

error ora 12540

Error Ora p SQL TuningSecurityOracle UNIXOracle LinuxMonitoringRemote supportRemote plansRemote servicesApplication Server ApplicationsOracle FormsOracle PortalApp UpgradesSQL ServerOracle ConceptsSoftware SupportRemote Support SPAN Development Implementation Consulting StaffConsulting PricesHelp Wanted Oracle PostersOracle relatedl Books Oracle Scripts Ion Excel-DB Don Burleson Blog ora- windows P TD TR TBODY FORM td ORA- tns- internal connection limit has been reached listener has shut down TNS Internal Limit Restriction Exceeded Tips Oracle Error Tips by Stephanie F Question The basic error we're getting is ORA- when we're trying to allocate sessions on a Redhat Linux server running Oracle Here is some example output of the DB error our

error ora 00931

Error Ora p ORA- missing identifier ORA- at SYS DBMS UTILITY line message Thu relatedl October Conor Messages Registered October Junior Member I am using the comma to table listing have you any idea why I might be getting this BEGIN ERROR at line ORA- missing identifier ORA- at SYS DBMS UTILITY line ORA- at SYS DBMS UTILITY line ORA- at QPI SPCOMMATOFILETBLUSERSITES line ORA- at line when I try running the comma to table stored procedure while not passing in s it works ok however when I try passing in s I get errors in my SQL Plus worksheet

error ora 12538

Error Ora table id toc tbody tr td div id toctitle Contents div ul li a href Ora- Forms i a li ul td tr tbody table p SQL TuningSecurityOracle UNIXOracle LinuxMonitoringRemote supportRemote plansRemote servicesApplication Server ApplicationsOracle FormsOracle PortalApp UpgradesSQL ServerOracle ConceptsSoftware SupportRemote Support SPAN relatedl Development Implementation Consulting StaffConsulting PricesHelp Wanted ora- no such protocol adapter Oracle PostersOracle Books Oracle Scripts Ion Excel-DB Don Burleson p h id Ora- Forms i p Blog P TD TR TBODY FORM td ORA- TNS no such protocol adapter font Oracle Database Tips by Burleson Consulting From the Oracle documentation we see this

error ora-06512 oracle

Error Ora- Oracle table id toc tbody tr td div id toctitle Contents div ul li a href Oracle Error Ora a li li a href Oracle Error Ora a li li a href Oracle Error Ora a li ul td tr tbody table p MySQL MariaDB PostgreSQL SQLite MS Office Excel Access Word Web Development HTML CSS Color Picker Languages C relatedl Language More ASCII Table Linux UNIX Java Clipart oracle error ora Techie Humor Advertisement Oracle Basics ALIASES AND AND OR BETWEEN COMPARISON p h id Oracle Error Ora p OPERATORS DELETE DISTINCT EXISTS FROM GROUP BY HAVING

error ora 06401

Error Ora p SQL TuningSecurityOracle UNIXOracle LinuxMonitoringRemote supportRemote plansRemote servicesApplication Server ApplicationsOracle FormsOracle PortalApp UpgradesSQL ServerOracle ConceptsSoftware relatedl SupportRemote Support SPAN Development Implementation Consulting StaffConsulting PricesHelp Wanted Oracle PostersOracle Books Oracle Scripts Ion Excel-DB Don Burleson Blog P TD TR TBODY FORM td ORA- NETCMN invalid driver designator tips Oracle Error Tips by Stephanie F The Oracle docs note this on the ora- error ORA- NETCMN invalid driver designator Cause The login connect string contains an invalid driver designator font Action Correct the string and re-submit Internet sources contain information on error ORA- specifically when using database links Here is

error ora 20026

Error Ora table id toc tbody tr td div id toctitle Contents div ul li a href Ora- No Data Found a li li a href Ora- a li li a href Ora- a li ul td tr tbody table p Sybase ASE Visual Expert for MS SQL Server Enable for relatedl PowerBuilder Deploy PB apps on the web Other ora- pl sql numeric or value error character string buffer too small Solutions Impact Analysis Source Code Documentation Knowledge Transfer Code Exploration Code Review ora Authorizations Authentication Audit Reporting Localization Translation SQL Extraction Source Change from Runtime PB Code Protection

error ora 01423

Error Ora table id toc tbody tr td div id toctitle Contents div ul li a href Ora- a li li a href Ora- a li ul td tr tbody table p MySQL MariaDB PostgreSQL SQLite MS Office Excel relatedl Access Word Web Development HTML CSS Color p h id Ora- p Picker Languages C Language More ASCII Table Linux UNIX ora- invalid number Java Clipart Techie Humor Advertisement Oracle Basics ALIASES AND AND OR BETWEEN COMPARISON OPERATORS p h id Ora- p DELETE DISTINCT EXISTS FROM GROUP BY HAVING IN INSERT INSERT ALL INTERSECT IS NOT NULL IS NULL

error trying to retrieve text for error ora-12154

Error Trying To Retrieve Text For Error Ora- table id toc tbody tr td div id toctitle Contents div ul li a href Error Ora a li li a href Error Ora a li li a href Error Ora a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed answers to relatedl any questions you might have Meta Discuss the workings ora error in oracle g and policies of this site About Us Learn more about Stack Overflow p h id Error Ora p the company Business Learn more about hiring

error while retrieving text for error ora-01019

Error While Retrieving Text For Error Ora- table id toc tbody tr td div id toctitle Contents div ul li a href Error While Trying To Retrieve Text For Error Ora- Windows a li li a href Ora- Windows a li li a href Error While Trying To Retrieve Text For Error Ora- C a li ul td tr tbody table p SQL TuningSecurityOracle UNIXOracle LinuxMonitoringRemote supportRemote plansRemote servicesApplication Server ApplicationsOracle FormsOracle PortalApp relatedl UpgradesSQL ServerOracle ConceptsSoftware SupportRemote Support SPAN Development error while trying to retrieve text for error ora vb Implementation Consulting StaffConsulting PricesHelp Wanted Oracle PostersOracle cse error

ora-12518 error oracle 10g

Ora- Error Oracle g table id toc tbody tr td div id toctitle Contents div ul li a href Ora Sql Developer a li li a href Listener Could Not Hand Off Client Connection Sqlplus a li li a href Direct handoff ttc listener off a li ul td tr tbody table p CommunityOracle User Group CommunityTopliners CommunityOTN Speaker BureauJava CommunityError You don't have JavaScript enabled This tool uses JavaScript and much of it will not work correctly without it enabled Please turn JavaScript back on and reload this page Please enter a title You relatedl can not post a

oracle error ora 31011

Oracle Error Ora table id toc tbody tr td div id toctitle Contents div ul li a href Error Ora Xml Parsing Failed a li li a href Ora- a li li a href Lpx- Unexpected End-of-file Encountered a li ul td tr tbody table p CommunityOracle User Group CommunityTopliners CommunityOTN Speaker BureauJava CommunityError You don't have JavaScript enabled This tool uses JavaScript and much of it relatedl will not work correctly without it enabled ora- xml parsing failed ora- Please turn JavaScript back on and reload this page Please p h id Error Ora Xml Parsing Failed p enter

oracle error ora-01797

Oracle Error Ora- table id toc tbody tr td div id toctitle Contents div ul li a href Any Sql a li li a href Ora- a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed answers to any questions you might have Meta Discuss the workings and policies of relatedl this site About Us Learn more about Stack Overflow the oracle error ora this operator must be followed by any or all company Business Learn more about hiring developers or posting ads with us Stack Overflow Questions database error ora-

oracle error ora-12518

Oracle Error Ora- table id toc tbody tr td div id toctitle Contents div ul li a href Listener Refused The Connection With The Following Error Ora a li li a href Direct handoff ttc listener off a li li a href Tns- Tns- Tns- Tns- a li li a href Logging listener name on a li ul td tr tbody table p CommunityOracle User Group CommunityTopliners CommunityOTN Speaker BureauJava CommunityError You don't have JavaScript enabled This tool uses JavaScript and much of it will not work correctly without it enabled Please turn JavaScript back on and reload this page