Вы находитесь на странице: 1из 7

TOP TECHNOLOGY INSTITUTE ESCARCEGA

Computer Systems Engineering

SUBJECT Database administration

Manual installation of a database manager

MEMBERS: Mario Alberto Chan Balan Rub Esmeralda Espinoza Martnez David Montiel Ramrez Rigo Alberto Rodrguez Mex Daniel Magaa Rodrguez Jazmn Montiel Ramrez

ISMA- 6 18-04-2013

INDEX

Introduction ---------------------------------------------------------------------------3

Requirements ------------------------------------------------------------------------4

Installation Development -------------------------------------------------------5

conclusion -----------------------------------------------------------------------------7

INTRODUCTION The goal for which to undertake the completion of this manual is to learn how to install a Database Management System (DBMS). Because the DBMS are important and that they allow you to interact with a large amount of data.

REQUIREMENTS TO INSTALL WORKBENCH To run MySQL on Windows, you need the following: A Linux operating system as 32-bit fedora, red hat, ubuntu, Support for TCP / IP 1GB RAM Processor 1.6 GHz or more. Enough space on the hard drive to unpack, install, and create the databases according to their requirements. Generally we recommend a minimum of 200 megabytes. INFORMATION MySQL Workbench is a visual tool for database design that integrates software development, database administration, database design, development and maintenance for the database system MySQL. He succeeds fabFORCE.net DBDesigner 4, and replaces the previous set of software, MySQL GUI Tools Bundle. From MySQL Workbench 5.2 the application has been developed a general database GUI application. Apart from modeling physical database that has a SQL editor and database server management interface, replacing the old MySQL GUI Tools Bundle. The new application however is not yet compatible with data migration, which was a part of the old tool set.

STEPS FOR INSTALLING MYSQL WORKBENCH 5.2

As a first step we have to install repositories These are the dependencies on fedora 18, 17, 16

rpm -Uvh http://download1.rpmfusion.org/free/fedora/rpmfusionfree-release-stable.noarch.rpm rpm -Uvh http://download1.rpmfusion.org/nonfree/fedora/rpmfusionnonfree-release-stable.noarch.rpm we have to install this repository rpm -Uvh http://rpms.famillecollet.com/remi-release-16.rpm

We need to install this repository yum - enablerepo = remi list mysql-server mysql Now we install mysql Install MySQL running in a terminal (requires root password): su-c 'yum install mysql-server mysql'

We added the MySQL service to start at the beginning and start the daemon manually: su-c '/ sbin / chkconfig - level 345 mysqld on' su-c'' service mysqld start '

Configure the database as root we can see that MySQL has started correctly by typing in console: su mysqlshow

It should show something like: + ---- + | Databases | + ---- + | Mysql | | Test | + ---- + Now we just change the password to access the database: Mysqladmin-u root-p password Replace password with your new password.

CONCLUSION This tool is very good from my point of view, because you can do everything that is needed for database design, implementation and management of the same, and it is easier and convenient to use this software if you are interested in databases.

Вам также может понравиться