473,545 Members | 2,599 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

mysql_pconnect Too many connections ERROR

I get this error mysql_pconnect Too many connections ... every now and
then.
Does anyone knows where it comes from ?
There are a lot of sites running on the server and all of them use the
Database frequently.
Is there any configuration that I will have to do to my server in order to
handle the load ?

Thank you...
I would appreciate answers from someone that already experienced that
problem.
Aug 1 '05 #1
4 4163
*** Angelos wrote/escribió (Mon, 1 Aug 2005 12:01:20 +0000 (UTC)):
I get this error mysql_pconnect Too many connections ... every now and
then.
Does anyone knows where it comes from ?


It comes from persistent connections: they remain open even when scripts
ends so your server can display this message even with low load.

If scripts are out of your control, I'd suggest disabling persistent
connections in php.ini: scripts that use mysql_pconnect( ) won't stop
working, they'll just use regular connections.

[MySQL]
; Allow or prevent persistent links.
;mysql.allow_pe rsistent = On
mysql.allow_per sistent=Off

--
-- Álvaro G. Vicario - Burgos, Spain
-- http://bits.demogracia.com - Mi sitio sobre programación web
-- Don't e-mail me your questions, post them to the group
--
Aug 1 '05 #2

"Alvaro G Vicario" <al************ ******@telecomp uteronline.com> wrote in
message news:15******** *************** *******@40tude. net...
*** Angelos wrote/escribió (Mon, 1 Aug 2005 12:01:20 +0000 (UTC)):
I get this error mysql_pconnect Too many connections ... every now and
then.
Does anyone knows where it comes from ?


It comes from persistent connections: they remain open even when scripts
ends so your server can display this message even with low load.

If scripts are out of your control, I'd suggest disabling persistent
connections in php.ini: scripts that use mysql_pconnect( ) won't stop
working, they'll just use regular connections.

[MySQL]
; Allow or prevent persistent links.
;mysql.allow_pe rsistent = On
mysql.allow_per sistent=Off

Cheers For that ... at the moment I have just used mysql_connect instead of
mysql_pconnect

But i Don't really understand when to use the pconnect...
Aug 1 '05 #3
On Mon, 01 Aug 2005 17:21:10 GMT, "Angelos" <ad**********@r edcatmedia.net>
wrote:
But i Don't really understand when to use the pconnect...


http://uk.php.net/manual/en/features...onnections.php

For non-persistent connections, the number of open connections is the number
of concurrent requests, so at maximum:

= Number of child processes/threads your webserver uses

The number of connections open to a database when using persistent connections
is related to:

Number of child processes/threads your webserver uses
*multiplied by*
Number of usernames used in scripts accessing the database server

If the number of usernames used is large, i.e. there's lots of different
scripts which each access different MySQL databases, then the number of
connections opened to the server and held open by the persistent connections
can get very high. This is usually the case in shared hosting; persistent
connections are often not a good idea on shared hosting.

Whereas if there's only a small number of databases accessed on the same
server, the number of connections may stay manageable, and so you can take
advantage of not having to open a new connection each time.

--
Andy Hassall / <an**@andyh.co. uk> / <http://www.andyh.co.uk >
<http://www.andyhsoftwa re.co.uk/space> Space: disk usage analysis tool
Aug 1 '05 #4
Angelos wrote:
I get this error mysql_pconnect Too many connections ... every now and
then.
Does anyone knows where it comes from ?
There are a lot of sites running on the server and all of them use the
Database frequently.
Is there any configuration that I will have to do to my server in order to
handle the load ?


One possible suggestion, rewriting mysql_pconnect to mysql_connect has
already been mentioned, but it your load on the mysql server is not to
high, why don't you just allow more connections? You just need to set
the max_connection variable in the [mysqld] section of your my.cnf.

The problem was apparent in some default linux installations, where the
number of allowed connections to the Apache was higher than the number
of allowed connections to the mysqld (ie 150 apache connections and
only 100 allowed mysqld connections).

But that said, you need to weight between this two choices. Either
rewrite php to use mysql_connect and have little slower pages, or
update the mysqld to accept more connections. It's a simple speed vs.
load, but if your server is mostly sitting idle, I'd go for the
max_connection solution in my.cnf...

-- Evanescent Lurker --

P.S. ooh, a URI:
http://dev.mysql.com/doc/mysql/en/to...nnections.html

Aug 1 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
2779
by: Randell D. | last post by:
Folks, I currently connect to my db with PHP code that uses non-persistent connections. I've read that persistent connections can help performance since a connection to the db will use an existing unused connection. If my system was to go through a busy period whereby I seen an extra 50% or more activity for ten minutes or so, would the...
0
1475
by: anders thoresson | last post by:
Hi, I have this function I call everytime I need to make a query from within my php-scripts: function db_connect ($user, $pwd, $db, $debug = 0) { $link = @mysql_pconnect("localhost", "$user", "$pwd"); if($link && mysql_select_db("$db")) if($debug == 1) {
4
6582
by: OneSolution | last post by:
Coming from a java background, I've been taught that connection pooling is the best thing due to the obvious benefits. I found out that the above pconnect() function will pool connections. So how do you use it properly? There's another post in this list stating that the user got connection refused error messages. Also, is there a real...
1
1528
by: WhatsPHP | last post by:
Can I use mysql_pconnect on an environment like this? There is just 1 server on which both PHP and MYSQL runs. It is an intranet server. At any point atleast 2 people will be actively using the server for their work. If the script uses mysql_pconnect and then the normal user name and password, will this speed up execution of scripts on the...
11
1668
by: =?ISO-8859-1?Q?J=F8rn?= Dahl-Stamnes | last post by:
Hello, I have been using mysql_connect in a script that display a lot of thumbnails for an album. Each thumbnail is displayed using the code: <IMG SRC="thm.php?id=some_id" ALT="some title"> thm.php use a mysql_connect to the database to access the info about the picture based on the id.
4
2066
hsriat
by: hsriat | last post by:
Got an issue regarding this... As said above (same as what php.net says), if we use mysql_pconnect(), it doesn't create more connections, if the connection parameters are same as the existing pconnection's. But if the already set pconnection is too busy serving others, would the next request of pconnect create another connection then or...
9
1881
by: John Murtari | last post by:
Folks, We have a fairly busy web site present using PHP 5 to talk to a MySQL 5.0.45 DB on an Apache 1.3 series server. It's spread out over several physical hosts (one DB server), we use DB tracking of sessions and there is some transaction usage also. Right now we keep it simple using mysql_connect. I'd looked at mysql_pconnect a few...
0
7425
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language...
1
7449
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For...
0
6009
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then...
1
5351
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes...
0
5069
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert...
0
3479
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in...
1
1911
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
1
1037
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
734
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.