安装Mysql Server

添加系统以外源:

http://kernal.blog.51cto.com/8136890/1426095

[1]Install Mysql Server

# yum -y install mysql-server
# /etc/rc.d/init.d/mysqld start
Initializing MySQL database:  WARNING: The host ‘webserver1.lisys.cn‘ could not be looked up with resolveip.
This probably means that your libc libraries are not 100 % compatible
with this binary MySQL version. The MySQL daemon, mysqld, should work
normally with the exception that host name resolving will not work.
This means that you should use IP addresses instead of hostnames
when specifying MySQL privileges !
Installing MySQL system tables...
OK
Filling help tables...
OK
 
To start mysqld at boot time you have to copy
support-files/mysql.server to the right place for your system
 
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 webserver1.lisys.cn password ‘new-password‘
 
Alternatively you can run:
/usr/bin/mysql_secure_installation            # 使用此命令初始化mysql
 
which will also give you the option of removing the test
databases and anonymous user created by default.  This is
strongly recommended for production servers.
 
See the manual for more instructions.
 
You can start the MySQL daemon with:
cd /usr ; /usr/bin/mysqld_safe &
 
You can test the MySQL daemon with mysql-test-run.pl
cd /usr/mysql-test ; perl mysql-test-run.pl
 
Please report any problems with the /usr/bin/mysqlbug script!
 
                                                           [  OK  ]
Starting mysqld:                                           [  OK  ]
# chkconfig mysqld on

[2]configure Mysql

# /usr/bin/mysql_secure_installation 
 
NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MySQL
      SERVERS IN PRODUCTION USE!  PLEASE READ EACH STEP CAREFULLY!
 
 
In order to log into MySQL to secure it, we‘ll need the current
password for the root user.  If you‘ve just installed MySQL, and
you haven‘t set the root password yet, the password will be blank,
so you should just press enter here.
 
Enter current password for root (enter for none): 
OK, successfully used password, moving on...
 
Setting the root password ensures that nobody can log into the MySQL
root user without the proper authorisation.
 
Set root password? [Y/n] y
New password:                     # 输入为root设置的密码
Re-enter new password:            # 再次输入密码 
Password updated successfully!
Reloading privilege tables..
 ... Success!
 
By default, a MySQL installation has an anonymous user, allowing anyone
to log into MySQL without having to have a user account created for
them.  This is intended only for testing, and to make the installation
go a bit smoother.  You should remove them before moving into a
production environment.
 
Remove anonymous users? [Y/n] y    # 移除匿名用户
 ... Success!
 
Normally, root should only be allowed to connect from ‘localhost‘.  This
ensures that someone cannot guess at the root password from the network.
 
Disallow root login remotely? [Y/n] y    # 不允许root远程登陆
 ... Success!
 
By default, MySQL comes with a database named ‘test‘ that anyone can
access.  This is also intended only for testing, and should be removed
before moving into a production environment.
 
Remove test database and access to it? [Y/n] y    # 删除test数据库
 - Dropping test database...
 ... Success!
 - Removing privileges on test database...
 ... Success!http://www.server-world.info/en/note?os=CentOS_6&p=zabbix&f=1
 
Reloading the privilege tables will ensure that all changes made so far
will take effect immediately.
 
Reload privilege tables now? [Y/n] y    # 重新加载权限表
 ... Success!
 
Cleaning up...
 
 
All done!  If you‘ve completed all of the above steps, your MySQL
installation should now be secure.
 
Thanks for using MySQL!

至此Mysql Server 5.1.73 安装完成!

安装Mysql Server,布布扣,bubuko.com

时间: 2024-10-15 03:57:08

安装Mysql Server的相关文章

ubuntu 14.04 安装mysql server初级教程

序,mysql数据库是开源的,被大多数企业所使用 目录 一.apt-get install 软件安装原理剖析二.安装mysql server三.配置和管理msyql 一.apt-get install 软件安装原理剖析 /etc/apt/sources.list 这个文件很重要,里面放了一些软件资源的库地址,我们每次利用apt-get install命令安装软件时,都是在读取这个文件. Ubuntu 软件仓库被分为四个部分:main(主要的), restricted(受限的), universe

hive0.13.1安装-mysql server作为hive的metastore

hive0.13.1在hadoop2.4.1伪分布式部署上安装过程 环境:redhat enterprice 6.5 +hadoop2.4.1+hive0.13.1+mysql单节点伪分布式部署 相关网址: hive官网安装指导:https://cwiki.apache.org/confluence/display/Hive/GettingStarted#GettingStarted-InstallingHivefromaStableRelease hive之metastore的三种保存方式:h

CentOS 7 安装MySql Server 5.6

1. 安装MySql Server 在/etc/yum.repos.d/目录下添加以下文件mysql-community.repo文件,内容如下: 1 [mysql56-community] 2 name=MySQL 5.6 Community Server 3 baseurl=http://repo.mysql.com/yum/mysql-5.6-community/el/5/$basearch/ 4 enabled=1 5 gpgcheck=0 执行yum install mysql-com

CentOS 7中如何安装mysql server

以前一直用RHEL 6.3和6.4,系统盘里自带了mysql server,配置好yum源后,直接yum install mysql-server就可安装mysql服务器端了,最近用CentOS 7.1,发现系统盘没有提供mysql-server的RPM包,在网上搜罗了半天,最后在mysql的官方网站找到答案. 只需在/etc/yum.repos.d/目录下添加以下文件mysql-community.repo文件,内容如下: # Enable to use MySQL 5.6 [mysql56-

Docker下安装MySQL Server镜像

安装环境,CentOS  Linux version 3.10.0-514.el7.x86_64 1.查找最新的mysql镜像 docker search mysql 2.下载最新的mysql-server镜像 docker pull mysql/mysql-server:latest 3.下载完成之后可以查看到下载的镜像 docker images 4.生成容器,-e 命令设定默认密码, --name可以自定义镜像的名称 docker run --name mysql -p 3306:3306

[database] MySQL Server/Workbench 安装入门

1. 安装MySQL Server 下载地址:https://dev.mysql.com/downloads/windows/installer/ 32位和64位都是一样的 建议选大的那个.18M的在安装过程也是需要另外下载的,我下的时候超级慢,所以还是一步到位下载好吧. 安装的时候可以选择Server Only,其余的默认就好 2. 安装MySQL Workbench 下载地址:https://dev.mysql.com/downloads/workbench/ 安装的时候需要设置root密码

centos 安装 mysql

安装mysql server #yum install mysql-server 安装mysql client #yum install mysql 设置服务自动启动 #chkconfig --levels 235 mysqld on 设置mysql root密码 #/usr/bin/mysqladmin -u root password '******' 启动.停止.重启 一.启动方式 1.使用 service 启动:service mysqld start 2.使用 mysqld 脚本启动:

在Ubuntu上安装Mysql

安装mysql server: 1.  sudo apt-get install mysql-server 2.  如果出现Unable to locate package……,执行sudo apt-get update,然后再执行sudo apt-get upgrade,再执行sudo apt-get install mysql-server 3.  进入mysql命令窗口,需要输入mysql  -h localhost –u root –p 4.  接着输入安装时的密码 5.  创建用户CR

[Mac][MySQL]如何启动MySQL Server

方法来自 MySQL 5.7官方手册 http://dev.mysql.com/doc/refman/5.7/en/osx-installation-launchd.html 有两种方法,另一种是命令行方式. 按以下顺序操作: 必须已经安装MySQL Server, 打开系统偏好设置,在搜索框中输入 MySQL 或者直接找到MySQL,点击它 接下来会弹出标题为MySQL的窗口,点击 Start MySQL Server 按钮即可.另外根据实际需要,决定是否勾选下方的 Automatically