473,775 Members | 2,553 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

port number ???

Hi
I'm just started with MySQL
and I'm having MySQL_CC running
When I want to connect to my web-hotel database-server
what port-number most i write - default seems to be 3306 but is that correct one???
(with 3306 i seems to connect to the database on my PC)
--
Erik Reinert Nielsen
www.nogn.dk
Jul 19 '05 #1
4 12272
erik wrote:
Hi
I'm just started with MySQL
and I'm having MySQL_CC running
When I want to connect to my web-hotel database-server
what port-number most i write - default seems to be 3306 but is that correct one???
(with 3306 i seems to connect to the database on my PC)


If it is not default, it is impossible for us to tell what it is.

Jul 19 '05 #2
erik wrote:
Hi
I'm just started with MySQL
and I'm having MySQL_CC running
When I want to connect to my web-hotel database-server
what port-number most i write - default seems to be 3306 but is that correct one???
(with 3306 i seems to connect to the database on my PC)


If it is not default, it is impossible for us to tell what it is.

Jul 19 '05 #3

"erik" <fo************ **@c.dk> wrote in message
news:3f******** *************** @dtext01.news.t ele.dk...
Hi
I'm just started with MySQL
and I'm having MySQL_CC running
When I want to connect to my web-hotel database-server
what port-number most i write - default seems to be 3306 but is that correct one??? (with 3306 i seems to connect to the database on my PC)
--
Erik Reinert Nielsen
www.nogn.dk


Yes - its the correct port (though its configurable, if you've not changed
it)...

it sounds like you've specified an incorrect host though... meaning that you
should edit the connection in MySQL_CC and instead of giving the name of
your PC, or localhost as the name, instead, put in the name of your remote
web-hotel database server...

and... I am making the assumption that your web-hotel server is visable and
not protected by a firewall...

Jul 19 '05 #4

"erik" <fo************ **@c.dk> wrote in message
news:3f******** *************** @dtext01.news.t ele.dk...
Hi
I'm just started with MySQL
and I'm having MySQL_CC running
When I want to connect to my web-hotel database-server
what port-number most i write - default seems to be 3306 but is that correct one??? (with 3306 i seems to connect to the database on my PC)
--
Erik Reinert Nielsen
www.nogn.dk


Yes - its the correct port (though its configurable, if you've not changed
it)...

it sounds like you've specified an incorrect host though... meaning that you
should edit the connection in MySQL_CC and instead of giving the name of
your PC, or localhost as the name, instead, put in the name of your remote
web-hotel database server...

and... I am making the assumption that your web-hotel server is visable and
not protected by a firewall...

Jul 19 '05 #5

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

Similar topics

21
15726
by: Alexander N. Spitzer | last post by:
If I have a machine with 3 virtual IP addresses (192.168.1.), how can I start 3 instances of the same RMI application (each started with different properties/configs), each listening on the port 1234, but each instance binds to a different ip address. that is to say: instance #1 binds to 192.168.1.5/port 1234 instance #2 binds to 192.168.1.6/port 1234 instance #3 binds to 192.168.1.7/port 1234
2
22322
by: nik | last post by:
Hi all I'm struggling to find an answer to this one! We've configured our SQL boxes to run under a different port number, e.g. from 1433 to 4533. This works fine under our Citrix enviornmnet where the dsn is configured to use the new port. The problem comes in terms of SQL Server management. For example, when you try and configure SQL Replication, it is not possible to add the subscriber unless the SQL Servce runs under port 1433,...
5
4043
by: Jason | last post by:
After a server accepts a client connection on a certain port, a new socket is created on the server on a system managed dynamic port to handle the connection. Please confirm this. If so, how can I get the number of the dynamic port in the server (in server code)? Using LocalEndPoint.Port just returns the original listener port number. Thanks,
2
18404
by: Tom | last post by:
I've done this before, but apparently I didn't keep my notes.. I have DB2 Personal Edition on my Windows XP box to talk to our DB2 database on our AS/400. This HAS been working fine. Until this morning, that is. It was working Friday afternoon, and this morning, it was broken. It was giving me some error message about an invalid license file. So I uninstalled it (FP 4a) and have installed FP 5. When using the Configuration...
3
2677
by: MLH | last post by:
I found some code Dev Ashish posted nearly a decade ago in response to someone's inquiry describing their need to dial a number, monitor call progress and determine whether it was busy. This was back when A2.0 was more widely used, so the code is Access Basic. Autodialer is not the answer, as it requires users to take handsets off-hook manually. I find myself in need of more direct control of a voice/data/fax modem from an A97 program....
6
3125
by: kai | last post by:
Hi, I was tring to run an example (HelloWorld.aspx) from MSPrss book, I get this message: "ASP.NET Development Server faild to start listening port 1034. Error message: An attempt was made to access a socket in a way fobidden by its access permissions."
6
2819
by: swartzbill2000 | last post by:
If I do this: Dim receiver As New UdpClient() Then the documentation says the system will pick a port. How can I extract the chosen port number from receiver? Bill
0
5543
by: 14Dallas | last post by:
Hi, I have been working with another programmer to write this code. I haven't written code in years - DBase III and Pascal - anyways, back to my code question. The program opens a file and reads the contents that are seperated by spaces, not tabs - will never be seperated by tabs as it is output from another program. The contents of the file are essiantlly 3 fields/values # # Text Field 1 will be a number from 1 to 26, Field 2 will...
9
13575
by: xparrot1 | last post by:
I know that I can get the SERVER port number like this: HttpContext.Current.Request.ServerVariables My question is how do I get the remote CLIENT port number? Thanks Derek
3
10279
by: Jason | last post by:
Hello I've got some test code that I've found on the web that is a TCP server and a TCP client. The server sends data to the client on the port i specify. I know because get the port number through an IPEndPoint. However when I send the data back to the server, the server receives it on a different port number then what I specify, and I can't figure out why. In my server I use this bit code to create the endpoint and socket. I've...
0
10270
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10109
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10051
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 most users, this new feature is actually very convenient. If you want to control the update process,...
0
9916
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8939
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 launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7464
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 instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6718
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 into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5360
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 the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
3
2853
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 effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.