Steps to Install/Uninstall MySQL Database in Linux

MySQL is a relational database management system (RDBMS) that runs as a server providing multi-user access to a number of databases.
MySQL runs on virtually all platforms, including Linux, Unix, and Windows. It is fully multi-threaded using kernel threads, and provides application program interfaces (APIs) for many programming languages, including C, C++, Eiffel, Java, Perl, PHP, Python, and Tcl. MySQL is used in a wide range of applications, including data warehousing, e-commerce, Web databases, logging applications and distributed applications. It is also increasingly embedded in third-party software and other technologies.Download Mysql Database Here

To install MySQL Database
MySQL Server manages Mysql data directory that contains databases and tables. The data directory is also the default location for other information such as log files and status files. When MySQL server starts, it listens for network connections from client programs and manages access to databases on behalf of those clientsStarting Mysql server

rpm -ivh –force –nodeps rpmFileName

Steps to create Database in Mysql

service mysqld restart

Creating Database:
Setting Password:

mysqladmin create databasename
mysqladmin create MCC

Steps to Login

mysqladmin password …………………..

To uninstall MySQL Database

mysql -u root -p DatabaseName
password :

 

rpm -e rpmFileName

mysql-4.1.12-3.RHEL4.1
mysql-server-4.1.12-3.RHEL4.1
mysqlclient10-3.23.58-4.RHEL4.1
mysqlclient10-devel-3.23.58-4.RHEL4.1
mysql-bench-4.1.12-3.RHEL4.1
mysql-devel-4.1.12-3.RHEL4.1

Related posts:

  1. Steps to install Oracle 10g Client for Redhat Linux
  2. Steps to install Oracle 10g Server in Redhat Linux

Comments are closed.