Install MySQL 5.1.7 in RedHat Linux 5

Source: Internet
Author: User

Install MySQL 5.1.7 in RedHat Linux 5

Install MySQL 5.1.7 in RedHat Linux 5

[Root @ bkjia ~] # Cd/home/app/mysql
[Root @ bkjia mysql] # ls

-- Extract
MySQL-community-5.1.73-1.rhel5.i386.rpm-bundle.tar
[Root @ bkjia mysql] # tar-xvf MySQL-community-5.1.73-1.rhel5.i386.rpm-bundle.tar
MySQL-test-community-5.1.73-1.rhel5.i386.rpm
MySQL-embedded-community-5.1.73-1.rhel5.i386.rpm
MySQL-devel-community-5.1.73-1.rhel5.i386.rpm
MySQL-shared-compat-5.1.73-1.rhel5.i386.rpm
MySQL-shared-community-5.1.73-1.rhel5.i386.rpm
MySQL-server-community-5.1.73-1.rhel5.i386.rpm
MySQL-client-community-5.1.73-1.rhel5.i386.rpm
MySQL-community-debuginfo-5.1.73-1.rhel5.i386.rpm

-- Install
[Root @ bkjia mysql] # rpm-ivh *. rpm
Preparing... ######################################## ### [100%]
1: mySQL-shared-community ################################### ####### [1, 13%]
2: mySQL-devel-community ################################### ####### [1, 25%]
3: mySQL-client-community ################################### ####### [1, 38%]
4: mySQL-community-debugin ################################### ####### [1, 50%]
5: mySQL-embedded-communit ################################### ####### [1, 63%]
6: mySQL-server-community ################################### ####### [1, 75%]

Please remember to set a password for the MySQL root USER!
To do so, start the server, then issue the following commands:

/Usr/bin/mysqladmin-u root password 'new-password'
/Usr/bin/mysqladmin-u root-h bkjia.net password 'new-password'

Alternatively you can run:
/Usr/bin/mysql_secure_installation

Which will also give you the option of removing the test
Databases and anonymous user created by default. This is
Stronugly recommended for production servers.

See the manual for more instructions.

Please report any problems with the/usr/bin/mysqlbug script!

Starting MySQL... [OK]
Giving mysqld 2 seconds to start
7: mySQL-shared-compat ################################### ####### [1, 88%]
8: mySQL-test-community ################################### ####### [1, 100%]

-- Reset the root password
[Root @ bkjia mysql] #/usr/bin/mysqladmin-u root-h bkjia.net password 'root'
[Root @ bkjia mysql] #/usr/bin/mysqladmin-u root password 'root'

-- Start the service
[Root @ bkjia mysql] # service mysql start
Starting MySQL [OK]

-- Root logon
[Root @ bkjia mysql] # mysql-uroot-proot
Welcome to the MySQL monitor. Commands end with; or \ g.
Your MySQL connection id is 3
Server version: 5.1.73-community MySQL Community Server (GPL)

Copyright (c) 2000,201 3, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
Affiliates. Other names may be trademarks of their respective
Owners.

Type 'help; 'or' \ H' for help. type' \ C' to clear the current input statement.

Mysql> select now ();
+ --------------------- +
| Now () |
+ --------------------- +
| 08:01:09 |
+ --------------------- +
1 row in set (0.00 sec)

-- Create a Remote Account

Mysql> grant all privileges on *. * TO test @ localhost identified by 'test' with grant option;
Query OK, 0 rows affected (0.00 sec)

Mysql> grant all privileges on *. * TO test @ "%" identified by 'test' with grant option;
Query OK, 0 rows affected (0.00 sec)

-- Refresh Permissions
Mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)

Mysql> exit

-- Remote database user logon
[Root @ bkjia mysql] # mysql-utest-ptest
Welcome to the MySQL monitor. Commands end with; or \ g.
Your MySQL connection id is 4
Server version: 5.1.73-community MySQL Community Server (GPL)

Copyright (c) 2000,201 3, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
Affiliates. Other names may be trademarks of their respective
Owners.

Type 'help; 'or' \ H' for help. type' \ C' to clear the current input statement.

Mysql> select now ();
+ --------------------- +
| Now () |
+ --------------------- +
| 08:02:36 |
+ --------------------- +
1 row in set (0.00 sec)

Mysql>


Mysql> exit
Bye
[Root @ bkjia mysql] # exit
Logout
Last login: Sat Nov 22 07:53:02 2014 from 192.168.11.1

-- Copy the main configuration file
[Root @ bkjia ~] # Cp/usr/share/mysql/my-huge.cnf/etc/my. cnf

-- Add skip-name-resolve to the main configuration file, and skip-grant-tables to speed up remote connection

-- Modify the mysql configuration file in my. add lower_case_table_name = 1 under [mysqld] (location cannot be wrong) in cnf (1 indicates case insensitive, 0 case sensitive), save and restart mysql

[Root @ bkjia ~] # Vi/etc/my. cnf
# Example MySQL config file for very large systems.
#
# This is for a large system with memory of 1G-2G where the system runs mainly
# MySQL.
#
# MySQL programs look for option files in a set
# Locations which depend on the deployment platform.
# You can copy this option file to one of those
# Locations. For information about these locations, see:
# Http://dev.mysql.com/doc/mysql/en/option-files.html
#
# In this file, you can use all long options that a program supports.
# If you want to know which options a program supports, run the program
# With the "-- help" option.

# The following options will be passed to all MySQL clients
[Client]
# Password = your_password
Port = 3306
Socket =/var/lib/mysql. sock

# Here follows entries for some specific programs

# The MySQL server
[Mysqld]
Lower_case_table_name = 1
Skip-name-resolve
Skip-grant-tables
Port = 3306
Socket =/var/lib/mysql. sock
Skip-locking
"/Etc/my. cnf" 149L, 4748C written
[Root @ bkjia ~] #

-- Set the firewall to allow port 3306

[Root @ bkjia ~] # Vi/etc/sysconfig/iptables
# Firewall configuration written by system-config-securitylevel
# Manual customization of this file is not recommended.
* Filter
: Input accept [0: 0]
: Forward accept [0: 0]
: Output accept [0: 0]
: RH-Firewall-1-INPUT-[0: 0]
-A input-j RH-Firewall-1-INPUT
-A forward-j RH-Firewall-1-INPUT
-A RH-Firewall-1-INPUT-I lo-j ACCEPT
-A RH-Firewall-1-INPUT-p icmp -- icmp-type any-j ACCEPT
-An RH-Firewall-1-INPUT-p 50-j ACCEPT
-An RH-Firewall-1-INPUT-p 51-j ACCEPT
-A RH-Firewall-1-INPUT-p tcp-m state -- state NEW-m tcp -- dport 8080-j ACCEPT
-A RH-Firewall-1-INPUT-p tcp-m state -- state NEW-m tcp -- dport 1158-j ACCEPT
-A RH-Firewall-1-INPUT-p tcp-m state -- state NEW-m tcp -- dport 5560-j ACCEPT
-A RH-Firewall-1-INPUT-p udp -- dport 5353-d 224.0.0.20.- j ACCEPT
-A RH-Firewall-1-INPUT-p udp-m udp -- dport 631-j ACCEPT
-A RH-Firewall-1-INPUT-p tcp-m tcp -- dport 631-j ACCEPT
-A RH-Firewall-1-INPUT-m state -- state ESTABLISHED, RELATED-j ACCEPT
-A RH-Firewall-1-INPUT-m state -- state NEW-m tcp-p tcp -- dport 3306-j ACCEPT
-A RH-Firewall-1-INPUT-m state -- state NEW-m tcp-p tcp -- dport 1521-j ACCEPT
-A RH-Firewall-1-INPUT-m state -- state NEW-m tcp-p tcp -- dport 22-j ACCEPT
"/Etc/sysconfig/iptables" 25L, 1275C
# Firewall configuration written by system-config-securitylevel
# Manual customization of this file is not recommended.
* Filter
: Input accept [0: 0]
: Forward accept [0: 0]
: Output accept [0: 0]
: RH-Firewall-1-INPUT-[0: 0]
-A input-j RH-Firewall-1-INPUT
-A forward-j RH-Firewall-1-INPUT
-A RH-Firewall-1-INPUT-I lo-j ACCEPT
-A RH-Firewall-1-INPUT-p icmp -- icmp-type any-j ACCEPT
-An RH-Firewall-1-INPUT-p 50-j ACCEPT
-An RH-Firewall-1-INPUT-p 51-j ACCEPT
-A RH-Firewall-1-INPUT-p tcp-m state -- state NEW-m tcp -- dport 8080-j ACCEPT
-A RH-Firewall-1-INPUT-p tcp-m state -- state NEW-m tcp -- dport 1158-j ACCEPT
-A RH-Firewall-1-INPUT-p tcp-m state -- state NEW-m tcp -- dport 5560-j ACCEPT
-A RH-Firewall-1-INPUT-p udp -- dport 5353-d 224.0.0.20.- j ACCEPT
-A RH-Firewall-1-INPUT-p udp-m udp -- dport 631-j ACCEPT
-A RH-Firewall-1-INPUT-p tcp-m tcp -- dport 631-j ACCEPT
-A RH-Firewall-1-INPUT-m state -- state ESTABLISHED, RELATED-j ACCEPT
-A RH-Firewall-1-INPUT-m state -- state NEW-m tcp-p tcp -- dport 3306-j ACCEPT
-A RH-Firewall-1-INPUT-m state -- state NEW-m tcp-p tcp -- dport 1521-j ACCEPT
-A RH-Firewall-1-INPUT-m state -- state NEW-m tcp-p tcp -- dport 22-j ACCEPT
-A RH-Firewall-1-INPUT-j REJECT -- reject-with icmp-host-prohibited
COMMIT
~
~
~
~
~
~
~
~
~
~
~
~
~
"/Etc/sysconfig/iptables" 25L, 1275C written

-- Stop the Firewall Service
[Root @ bkjia ~] # Service iptables stop
Flushing firewall rules: [OK]
Setting chains to policy ACCEPT: filter [OK]
Unloading iptables modules: [OK]

-- Enable the Firewall Service
[Root @ bkjia ~] # Service iptables start
Applying iptables firewall rules: [OK]
Loading additional iptables modules: ip_conntrack_netbios_n [OK]
[Root @ bkjia ~] #


-- View network configurations

[Root @ bkjia ~] # Ifconfig
Eth0 Link encap: Ethernet HWaddr 00: 0C: 29: 0D: B0: 9D
Inet addr: 192.168.11.6 Bcast: 192.168.11.255 Mask: 255.255.255.0
Inet6 addr: fe80: 20c: 29ff: fe0d: b09d/64 Scope: Link
Up broadcast running multicast mtu: 1500 Metric: 1
RX packets: 121089 errors: 0 dropped: 0 overruns: 0 frame: 0
TX packets: 65139 errors: 0 dropped: 0 overruns: 0 carrier: 0
Collisions: 0 FIG: 1000
RX bytes: 169113515 (161.2 MiB) TX bytes: 5457976 (5.2 MiB)
Interrupt: 67 Base address: 0x2000

Lo Link encap: Local Loopback
Inet addr: 127.0.0.1 Mask: 255.0.0.0
Inet6 addr: 1/128 Scope: Host
Up loopback running mtu: 16436 Metric: 1
RX packets: 7086 errors: 0 dropped: 0 overruns: 0 frame: 0
TX packets: 7086 errors: 0 dropped: 0 overruns: 0 carrier: 0
Collisions: 0 txqueuelen: 0
RX bytes: 4800365 (4.5 MiB) TX bytes: 4800365 (4.5 MiB)

-- Remote connection

-------------------------------------- Split line --------------------------------------

Install MySQL in Ubuntu 14.04

MySQL authoritative guide (original book version 2nd) Clear Chinese scan PDF

Ubuntu 14.04 LTS install LNMP Nginx \ PHP5 (PHP-FPM) \ MySQL

Build a MySQL Master/Slave server in Ubuntu 14.04

Build a highly available distributed MySQL cluster using Ubuntu 12.04 LTS

Install MySQL5.6 and Python-MySQLdb in the source code of Ubuntu 12.04

MySQL-5.5.38 universal binary Installation

-------------------------------------- Split line --------------------------------------

This article permanently updates the link address:

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.