- 打入如下命令:
- [root@mysql ~]# yum -y install mysql-server //自动从网上搜索资源并自动下载安装
- [root@mysql ~]# chkconfig mysqld on //设置开机启动MySql服务
- 检查是否为开机启动
- 打入命令:[root@mysql ~]# chkconfig –list
- 看到:mysqld 0:off 1:off 2:on 3:on 4:on 5:on 6:off 即表示已设置为开机启动,2、3、4、5为on
- 启动MySql服务
- /etc/rc.d/init.d/mysqld start //从文件启动MySql服务
- service mysqld start //以服务名方式启动
MySql初始化环境设置(一)
- 设置MySQL的root用户设置密码,因为MySQL被安装时,它的root用户时没有设置密码的。
– [root@mysql ~]# mysql -u root
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.1.61 Source distribution
Copyright (c) 2000, 2011, 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>
2. 如上,默认是不需要密码就可以进入数据库操作,下面查看MySQL数据库用户信息
MySql初始化环境设置(二)
- 打入命令:select user,host,password from mysql.user; //可以看到密码都为空
– +------+-----------+----------+
– | user | host | password |
– +------+-----------+----------+
– | root | localhost | |
– | root | mysql | |
– | root | 127.0.0.1 | |
– | | localhost | |
– | | mysql | |
– +------+-----------+----------+
– 5 rows in set (0.00 sec)
– set password for root@localhost=password(‘123456789’); //设置root用户密码为123456789
MySql初始化环境设置(三)
• 打入命令:select user,host,password from mysql.user; //查看刚设置的密码,可以看到密码已经经过加密处理
– +------+-----------+-------------------------------------------+
– | user | host | password |
– +------+-----------+-------------------------------------------+
– | root | localhost | *CC67043C7BCFF5EEA5566BD9B1F3C74FD9A5CF5D |
– | root | mysql | |
– | root | 127.0.0.1 | |
– | | localhost | |
– | | mysql | |
– +------+-----------+-------------------------------------------+
– 5 rows in set (0.00 sec)
• 打入exit命令退出数据库连接,测试root密码是否生效
MySql初始化环境设置(四)
• 打入命令:mysql –u root
– ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'mysql -u root' at line 1
– 弹出图上提示说明刚设置的密码已生效
• 下面通过密码登陆,打入命令:mysql –u root –p //在Enter password后输入刚才设置的密码,看到下面即表示登陆成功
– [root@mysql ~]# mysql -u root -p
– Enter password:
– Welcome to the MySQL monitor. Commands end with ; or \g.
– Your MySQL connection id is 3
– Server version: 5.1.61 Source distribution
– Copyright (c) 2000, 2011, 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>
增删改查语句
• Show databases; //查看系统已存在的数据库
• use databasesname; //选择需要使用的数据库
• drop database databasename; //删除选定的数据库
• exit //退出数据库的连接
• create database test01; //建立名为test的数据库
– mysql> show databases;
– +--------------------+
– | Database |
– +--------------------+
– | information_schema |
– | mysql |
– | test |
– | test01 |
– +--------------------+
– 4 rows in set (0.00 sec)
• 可以看到新建的test01数据库
• use test01; //连接到数据库test01
– mysql> use test01;
– Database changed
• mysql> create talbe test(num int,name varchar(50)); //在数据库中建立表
– mysql> create table test(num int,name varchar(50));
– Query OK, 0 rows affected (0.11 sec)
• mysql> insert into test values(1,’Hello World!’) ; //插入一个值到表中
– mysql> create table test(num int,name varchar(50));
– Query OK, 0 rows affected (0.11 sec)
• select * from test; //查看数据库中表的信息
– mysql> select * from test;
– +------+--------------+
– | num | name |
– +------+--------------+
– | 1 | Hello World! |
– +------+--------------+
– 1 row in set (0.00 sec)
相关推荐
在CentOS 6.2中,通常通过`yum`包管理器来安装MySQL。执行以下命令: ```bash sudo yum install mysql-server ``` 安装完成后,MySQL的服务可以通过`service`命令启动、停止和检查状态: ```bash sudo service ...
CentOS 6.2 yum安装配置lnmp服务器(Nginx+PHP+MySQL)
### 服务器CentOS 6.2 yum安装配置LNMP (Nginx+PHP+MySQL) 在本篇文章中,我们将详细介绍如何在CentOS 6.2操作系统上使用`yum`工具来配置LNMP环境,即Nginx作为Web服务器、MySQL作为数据库服务器以及PHP作为解析...
首先,本篇文章详细介绍了在CentOS 6.2系统上使用YUM包管理器安装LAMP(Linux、Apache、MySQL/MariaDB、PHP)环境以及phpMyAdmin的全过程。LAMP环境是网站开发中常用的服务器端软件组合,phpMyAdmin是一款用于管理...
在本文中,我们将详细探讨如何在CentOS 6.2操作系统上使用`yum`命令来安装和配置LNMP(Nginx + PHP + MySQL)服务器。LNMP是Linux(CentOS 6.2)、Nginx(一个高性能的HTTP和反向代理服务器)、PHP(一种服务器端...
在安装CentOS 6.2时,需确保网络连接正常,以便通过YUM(Yellowdog Updater, Modified)包管理器获取必要的软件包。 1. **Nginx安装与配置**: Nginx是一款高性能的HTTP和反向代理服务器,以其低内存占用和高并发...
提供的文件"美河学习在线eimhe.com]centos6.2 X86_64系统定制详细说明.pdf"应该包含了上述步骤的详细指南和具体操作方法。阅读这份文档,你将能够按照已验证的流程进行定制,避免不必要的错误和重复工作。在实践中,...
本教程将详细介绍如何在CentOS 6.2上进行基本操作,包括安装、设置第三方YUM源以及构建LAMP(Linux、Apache、MySQL、PHP)服务器。 一、CentOS 6.2 安装 1. **下载与准备**:首先,你需要从官方网站或其他可靠的...
执行`yum install mysql mysql-server`来安装MySQL及其服务器组件。启动MySQL服务,并设置root用户的密码。为了优化性能,可以复制`my-medium.cnf`到`/etc/my.cnf`作为MySQL的配置文件。 最后,我们需要安装PHP,它...
在本教程中,我们将深入探讨如何在 CentOS 6.2 操作系统上手动编译安装 Apache 2.4.1、MySQL 5.5.21 和 PHP 5.3.10,构建一个 LAMP (Linux + Apache + MySQL + PHP) 环境。这个过程分为多个步骤,包括系统环境的准备...
### CentOS 6.2 安装配置 LAMP 环境 #### 一、概述 在 CentOS 6.2 上安装 LAMP (Linux + Apache + MySQL + PHP) 环境是搭建 Web 服务器的基础步骤之一。通过这些软件组件,可以实现动态网页服务功能。下面将详细...
### CentOS6.2安装Redmine2.3详细步骤解析 #### 一、环境准备与依赖安装 在开始安装Redmine之前,确保您的CentOS 6.2系统已经更新到最新状态,并安装了必要的依赖包。 **第1步:安装支持插件和其他插件** 执行...
以上就是CentOS 6.2环境下从MySQL 5.1升级到5.5的详细步骤。确保在整个过程中密切关注错误信息,及时解决出现的问题,确保数据安全和系统的稳定运行。在升级完成后,务必测试新版本MySQL的功能,以确保一切正常工作...
### 基于Centos6.2X64系统下的邮件系统部署详解 #### 一、概述 本文档详细介绍如何在Centos6.2 X64系统上搭建一套完整的邮件服务系统,包括邮件服务器(Postfix)、邮件客户端(Roundcube)、邮件认证与管理工具...
【安装MySQL】 在CentOS系统中,MySQL是LAMP...以上就是CentOS使用本地yum源搭建LAMP环境的详细步骤,包括Apache、MySQL和PHP的安装与配置。遵循这些步骤,你可以构建一个稳定的基础环境,用于开发和运行PHP应用程序。
在CentOS 6.2上安装MySQL,首先需要添加官方的Yum仓库,然后通过Yum进行安装: 1. 添加MySQL Yum源: ``` sudo rpm -Uvh https://dev.mysql.com/get/mysql57-community-release-el6-11.noarch.rpm ``` 2. 安装...
本文档将详细介绍如何在CentOS 7环境下离线安装并配置SNMP V3,以及如何利用Python脚本来监控服务器的各项参数。 #### 二、准备工作 确保已具备以下条件: 1. **CentOS 7系统**:服务器或虚拟机已经安装了CentOS 7...
其次,安装 MySQL,因为 Centos 7 中的 MySQL 需要付费,因此我们安装 MariaDB,可以使用命令 `yum install -y mariadb mariadb-server`。然后,需要设置 MariaDB 服务开机自启动,可以使用命令 `systemctl enable ...