Accessing MySQL on VB.NET using MySQL Connector/Net, Part II: Setup MySQL Server
Programming, VB.NET February 17th, 2009Setup MySQL Server
This section I’ll show how to setup MySQL Server on a database PC. You can see index of this series at Accessing MySQL on VB.NET using MySQL Connector/Net, Part I: Introduction
- Download MySQL 5.1.30 Community Edition from mysql.com.

- Double-click the setup file mysql-essential-5.1.30-win32.msi. Click Next.

- On Setup Type, select Typical. Click Next.

- On Ready to Install the Program, click Install.

- On Wizard Completed, check Configure the MySQL Server Now and click Finish.

- On MySQL Configuration Wizard, click Next.

- On MySQL Server Instance Configuration, select Standard Configuration.
Note: If you want to develop in a single PC environment, you can select Detailed Configuration instead and choose Developer Machine so MySQL Server won’t consume too much resource on the PC.

- On MySQL Server Instance Configuration, verify that all check boxes are checked on this page and click Next. The first and second (Install As Windows Service and Launch the MySQL Server automatically) check boxes configure MySQL as a Windows service so that you don’t have to login to the PC and start MySQL Server manually, it’ll start when the PC is on automatically.

- On MySQL Server Instance Configuration, check only the upper check box Modify Security Settings and enter the root password. The root user is the default user on MySQL who has all privileges on the MySQL Server. In this example, I set the root’s password to “password”. Click Next.
Note: This is just an example, you should set password more complexity than this.

- On MySQL Server Instance Configuration, click Execute to start the configuration.

- When the configuration is done, click Finish to complete install and configure MySQL Server.

Related post
- Accessing MySQL on VB.NET using MySQL Connector/Net, Part V: Install MySQL Connector Net Install MySQL Connector Net From last 4 parts, I have prepared MySQL Server with sample database. I’ve done on a...
- Accessing MySQL on VB.NET using MySQL Connector/Net, Part IV: Create & Grant MySQL User Account Create & Grant MySQL User Account By default, the root account on MySQL Server has all privileges on every tables...
- Accessing MySQL on VB.NET using MySQL Connector/Net, Part I: Introduction Introduction Here comes again, tutorial about programming to access a database server. This tutorial shows you how to use Microsoft...
- Accessing MySQL on VB.NET using MySQL Connector/Net, Part III: Install Sample Database Install Sample Database You can download example databases for MySQL at http://dev.mysql.com/doc (Scroll down to Example Databases section). By the...
- Accessing MySQL on VB.NET using MySQL Connector/Net, Part VI: Create Connection Create Connection After I have prepared many things for showing how to access MySQL Server using VB.NET. Let’s see what...
Related posts:



