This is a discussion on a newbie question(network question) within the MySQL forums, part of the Database Server Software category; --> Hello, Now, i have three computers at my home and i installed mysql to one of the computers. I ...
| |||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| Hello, Now, i have three computers at my home and i installed mysql to one of the computers. I want to access mysql from other computers. However, i couldn't access to that mysql server. When i tried to connect from client, it gave that error(mysql error number 2003). What can i do for solving that problem? Best Regards, Emrah Ayanoglu P.S: I tried both of linux and windows, but i couldn't succeed. |
| |||
| On 31 Jan 2007 13:16:53 -0800, hardemr wrote: > Hello, > > Now, i have three computers at my home and i installed mysql to one of > the computers. I want to access mysql from other computers. However, i > couldn't access to that mysql server. When i tried to connect from > client, it gave that error(mysql error number 2003). What can i do for > solving that problem? > > Best Regards, > > Emrah Ayanoglu > > P.S: I tried both of linux and windows, but i couldn't succeed. Check your server config and ensure that network access is turned on, with a port= option in the [mysqld] stanza. -- 69. All midwives will be banned from the realm. All babies will be delivered at state-approved hospitals. Orphans will be placed in foster-homes, not abandoned in the woods to be raised by creatures of the wild. --Peter Anspach's list of things to do as an Evil Overlord |
| ||||
| On 1 Feb, 18:45, "Peter H. Coffin" <hell...@ninehells.com> wrote: > Check your server config and ensure that network access is turned on, > with a port= option in the [mysqld] stanza. > You need also to esplicitly allow any external host to connect to your sql server. This can be done putting couples of HOST, USER in the "user" table of your "mysql" database: On localhost: mysql -u youruser -p -D mysql then insert into user (etccetera) Bye Roberto |