Submitted by patrick on Sun, 05/05/2013 - 20:45
Submitted by patrick on Wed, 03/27/2013 - 23:11
sc [ServerName] delete [ServiceName]
Submitted by patrick on Wed, 03/27/2013 - 22:57
I had an empty standard installation of MySQL but somehow I could not create a database using the InnoDB engine. The engine was just not activated (you can check that with the
Submitted by patrick on Tue, 03/26/2013 - 21:09
Submitted by patrick on Mon, 02/27/2012 - 23:35
The most fundamental difference between Git and other revision control systems like SVN or CVS is the way how you work with it. With Git you will usually clone a repository. This creates a directory on your desktop where all the data about all revisions is stored. This means that you are not depending on a server somewhere. You can easily just use git locally.
Submitted by patrick on Thu, 12/22/2011 - 20:00
If you visit a webpage with a self-signed certification you will usually see the following warning: There is a problem with this website's security certificate.
To avoid the messge you need to install the certificate into the Trusted Root Certification Authorities certificat store. This can be done very easily with executing the following command:
certmgr -add Certificate.cer -s -r localMachine root
The certmgr command line tool can be found in the Windows Driver Kit Version 7.1.0
Submitted by patrick on Tue, 10/11/2011 - 20:00
First you need to find out which settings file is active. Usually you can find it under C:\ProgramData\MySQL\MySQL Server 5.5\my.ini. Then you need to add the output configuration. Be careful to use the right syntax for the path. Below [mysqld] you can add something like:
log-output=FILE
general_log = 1
general_log_file = "C:/mysql-queries.log"
After you restart the service your queries will be logged. If it doesn't work you can consult the Errorfile (C:\ProgramData\MySQL\MySQL Server 5.5\data\computername.err)
Submitted by patrick on Sun, 01/30/2011 - 22:11
Sometimes git gui displays a lot of files like this:
old mode 100644
new mode 100755
They only differ in their permissions and usually we don't really care.
Just execute the following command in the root directory of the repository:
git config core.filemode false