473,785 Members | 2,443 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

MySQL 4.020c (Windows) service startup error

Help!

I installed MySQL 4.0.20C and it works if I started it with
mysqld --console

However, if I do the following:
mysqld --install

net start MySQL

I got the following error:

D:\mysql>net start MySQL
The MySQL service is starting.
The MySQL service could not be started.

A system error has occurred.

System error 1067 has occurred.

The process terminated unexpectedly.
Does anyone know what I have don't wrong? I was using Windows XP on my
notebook with latest security patches applied.

jml
Jul 20 '05 #1
2 6714
In news:aR******** ************@tw ister01.bloor.i s.net.cable.rog ers.com,
jmlynn <jm******@yahoo .com> typed:
Help!

I installed MySQL 4.0.20C and it works if I started it with
mysqld --console

However, if I do the following:
mysqld --install

net start MySQL

I got the following error:

D:\mysql>net start MySQL
The MySQL service is starting.
The MySQL service could not be started.

A system error has occurred.

System error 1067 has occurred.

The process terminated unexpectedly.
Does anyone know what I have don't wrong? I was using Windows XP on
my notebook with latest security patches applied.

jml


I have a similar problem to this, and I installed 4.0.20D

I could install the service succesfully with mysqld --install. When I
started the service I got a message saying "The MySQL service was started
succesfully" but a second later it died. Windows popped up with the usual
message "mysqld has encountered a problem and needs to
close....blah.. ..blah". The details of that error is as follows:

=============== =============== =============== ===
szAppName : mysqld.exe szAppVer : 0.0.0.0 szModName : unknown
szModVer : 0.0.0.0 offset : 00000000
=============== =============== =============== ===

Similar thing happened when I tried to do mysqld --console. I got the
"mysqld has encountered.... ..blah" with the following details in the error
message:

=============== =============== =============== ===
AppName: mysqld.exe AppVer: 0.0.0.0 ModName: mysqld.exe
ModVer: 0.0.0.0 Offset: 00257865
=============== =============== =============== ===

Does anyone have any idea what this means?

Cheers,
Dany.
Jul 20 '05 #2
Dany P. Wu wrote:
In news:aR******** ************@tw ister01.bloor.i s.net.cable.rog ers.com,
jmlynn <jm******@yahoo .com> typed:
Help!

I installed MySQL 4.0.20C and it works if I started it with
mysqld --console

However, if I do the following:
mysqld --install

net start MySQL

I got the following error:

D:\mysql>ne t start MySQL
The MySQL service is starting.
The MySQL service could not be started.

A system error has occurred.

System error 1067 has occurred.

The process terminated unexpectedly.
Does anyone know what I have don't wrong? I was using Windows XP on
my notebook with latest security patches applied.

jml

I have a similar problem to this, and I installed 4.0.20D

I could install the service succesfully with mysqld --install. When I
started the service I got a message saying "The MySQL service was started
succesfully" but a second later it died. Windows popped up with the usual
message "mysqld has encountered a problem and needs to
close....blah.. ..blah". The details of that error is as follows:

=============== =============== =============== ===
szAppName : mysqld.exe szAppVer : 0.0.0.0 szModName : unknown
szModVer : 0.0.0.0 offset : 00000000
=============== =============== =============== ===

Similar thing happened when I tried to do mysqld --console. I got the
"mysqld has encountered.... ..blah" with the following details in the error
message:

=============== =============== =============== ===
AppName: mysqld.exe AppVer: 0.0.0.0 ModName: mysqld.exe
ModVer: 0.0.0.0 Offset: 00257865
=============== =============== =============== ===

Does anyone have any idea what this means?

Cheers,
Dany.

I'm having a similar problem. Here's what I get when --install and then use
mysqld --console:

C:\mysql\bin>my sqld --install
Service successfully installed.

C:\mysql\bin>my sqld --console
040703 11:09:54 InnoDB: Started
mysqld: ready for connections.
Version: '4.0.20a-debug' socket: '' port: 0
040703 11:09:54 mysqld: Got error 10022 from select

I've uninstalled and reinstalled I don't know how many times. Sometimes the
--console command gets more lines, but they always end about the same. I can't
get anything to work beyond the initial --install (and --remove) arguments.
Jul 20 '05 #3

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

Similar topics

0
2891
by: Stefan Hinz | last post by:
Degan, jumping in to try and solve some problems that look pretty obvious to me ... > #options for default service (mysqld2) > (mysqld2) It should be , not (mysqld2).
0
1314
by: Dany P. Wu | last post by:
Hi everyone, I had this problem with 4.0.17 so I upgraded to 4.0.20D, alas with to no avail. I could install the service succesfully with mysqld --install. When I started the service I got a message saying "The MySQL service was started succesfully" but a second later it died. Windows popped up with the usual message "mysqld has encountered a problem and needs to close....blah....blah". The details of that error is as follows:
1
1395
by: ADale | last post by:
Hi all, I hope someone here may be able to help me out! I have already serached the net for info to sort my problem but I could not find anything that solved it. Now, go easy on me, I am a Linux newbie but am doing my best to learn asap.. Anyway, to the problem...
3
14958
by: Amjad | last post by:
Hi, I just wrote a test Windows Service that creates a text file on startup (please see my code below). The file is never created. Protected Overrides Sub OnStart(ByVal args() As String) Dim swLog As StreamWriter = File.CreateText("C:\myLog.txt") swLog.WriteLine("My Windows Service has just started.") swLog.Close() : swLog.Flush() End Sub
6
5787
by: John Salerno | last post by:
Hi everyone. I hope someone can help me with this problem. I have installed MySQL CE 5.0, but during the configuration wizard I get an error. It has frozen up during the final step (MySQL Server Instance Configuration). I'm installing it on Windows XP, and I used all the default settings, except that I changed "Detailed Configuration" to "Standard Configuration". At the "Start Service" item in the checklist, I got a 1045 error message...
1
3701
by: Sergey Krutous | last post by:
Can you please help me to resolve the following issue: I developed a windows service. At start up (I have overriden OnStart method) it connects to a web service and if the connection fails the windows service sets ExitCode property to non-zero value (55) and calls Stop method. If this happens when user starts the service in Services snap-in SCM shows error massage and service stops - it's OK. I configured automatic startup and Recovery...
4
4184
by: tshad | last post by:
What would be a good way to check programmatically whether a service was running? We have a service that dies periodically and I need to check to see if this service is running. I know how to check to see if the status is in stopped or running mode. But that doesn't tell me if it is actually running. I need to know this so that if it happens I can programmatically start the same service on another machine.
39
5870
by: alex | last post by:
I've converted a latin1 database I have to utf8. The process has been: # mysqldump -u root -p --default-character-set=latin1 -c --insert-ignore --skip-set-charset mydb mydb.sql # iconv -f ISO-8859-1 -t UTF-8 mydb.sql mydb_utf8.sql mysqlCREATE DATABASE mydb_utf8 CHARACTER SET utf8 COLLATE utf8_general_ci;
0
9647
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
1
10101
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
9959
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...
1
7509
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
6744
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
5396
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...
0
5528
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4063
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
2
3665
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.