`

Install MySQL for Database Server

 
阅读更多

[root@www ~]# yum -y install mysql-server
[root@www ~]# /etc/rc.d/init.d/mysqld start 
Initializing MySQL database:  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 www.server.world 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
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!

Starting mysqld:     [  OK  ]

[root@www ~]# chkconfig mysqld on 
[root@www ~]# mysql -u root # connect to MySQL
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.1.52 Source distribution

Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
This software comes with ABSOLUTELY NO WARRANTY. This is free software,
and you are welcome to modify and redistribute it under the GPL v2 license

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

# show user info
mysql> select user,host,password from mysql.user; 

# set root password
mysql> set password for root@localhost=password('password'); 
Query OK, 0 rows affected (0.00 sec)
# set root password
mysql> set password for root@'127.0.0.1'=password('password'); 
Query OK, 0 rows affected (0.00 sec)
# set root password
mysql> set password for root@'www.server.world'=password('password'); 
Query OK, 0 rows affected (0.00 sec)
# delete anonymous user
mysql> delete from mysql.user where user=''; 
Query OK, 2 rows affected (0.00 sec)
mysql> select user,host,password from mysql.user;

mysql> exit # quit
Bye
[root@www ~]# mysql -u root -p # connect with root
Enter password:# MySQL root password
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 4
Server version: 5.1.52 Source distribution

Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
This software comes with ABSOLUTELY NO WARRANTY. This is free software,
and you are welcome to modify and redistribute it under the GPL v2 license
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> exit
Bye
 
分享到:
评论

相关推荐

    mysql for linux

    通过执行相应的命令,如`sudo apt-get install mysql-server` 或 `sudo yum install mysql-server`,可以自动下载并安装MySQL服务器及其依赖。 - **手动编译安装**:对于较旧的系统或特定需求,可以从MySQL官方网站...

    在Ubuntu14.04上离线安装mysql5.7.19时需要的两个依赖包

    dpkg: error processing package mysql-community-server (--install): dependency problems - leaving unconfigured Processing triggers for man-db (2.6.7.1-1ubuntu1) ... Processing triggers for ureadahead ...

    远程连接MySQL所遇到的问题以及解决问题方法

    yum -y install mysql-server 安装完成后,需要配置 MySQL 服务器。使用以下命令编辑 my.cnf 文件: vi my.cnf 在 my.cnf 文件中,需要添加以下内容: [mysqld] datadir=/var/lib/mysql socket=/var/lib/mysql/...

    Mysql for mac 安装及Navicat客户端链接.docx

    sudo mysql.server start 2.4 输入命令: ./mysql 回车进入到 Mysql 编辑环境 2.5 刷新 Mysql 系统权限: FLUSH PRIVILEGES; 2.6 重置密码: ALTER USER 'root'@'localhost' IDENTIFIED BY '新的密码'; 三、...

    mysql install

    - `sudo apt-get install mysql-server` (Ubuntu/Debian) - `sudo yum install mysql-server` (CentOS/RHEL) 四、初始化与配置 1. 首次安装后,需要启动MySQL服务并初始化数据库。在命令行输入: - Windows:`...

    ubuntu server下安装mysql 以及设置双机热备份

    sudo apt-get install mysql-server 安装完成后,我们需要配置 MySQL 服务器以便外部访问数据库。我们可以使用以下命令来编辑 MySQL 配置文件: sudo vim /etc/mysql/my.cnf 在配置文件中,我们需要注意一处地方...

    linux_install_mysql.doc

    在本文中,它们分别是`MySQL-server-4.0.16-0.i386.rpm`和`MySQL-client-4.0.16-0.i386.rpm`。确保下载的是与你的Linux发行版相匹配的版本。 **二、安装MySQL** 1. **安装服务器端** 安装MySQL服务器端,你需要...

    embulk之sqlserver to mysql

    ### 使用Embulk实现SQL Server至MySQL的数据迁移 #### 一、背景介绍 随着业务发展和技术迭代,企业常常需要在不同的数据库之间进行数据迁移。本文主要介绍如何使用Embulk这一工具来实现从SQL Server到MySQL的数据...

    php 同时连接 sqlserver 和 mysql 的导数据的例子

    在IT行业中,数据库的多样性是常见的现象,不同的项目可能需要使用不同的数据库系统,例如SQL Server和MySQL。在某些情况下,我们需要在PHP环境中同时处理这两种数据库,进行数据迁移、同步或其他操作。本文将深入...

    linux 服务安装mysql命令

    [root@stonex ~]# yum -y install mysql-server 这将安装 MySQL 服务器和相关的依赖项。安装结果将显示安装的软件包,包括 mysql-server、mysql 和 perl-DBD-MySQL 等。 设置开机启动 安装完成后,我们需要设置 ...

    Mysql数据库定时备份(linux版)v1.0.docx

    sudo apt-get install mysql-server # For CentOS/RHEL sudo yum install mysql-server ``` 接着,创建一个用于备份的Shell脚本。打开终端并使用`vim`或你喜欢的文本编辑器创建一个新的文件,例如`mysqlbak.sh`。...

    mysql安装包对于Linux for susemysql安装包对于Linux for susemysql安装包对于Linux

    如果选择命令行方式,你需要先更新系统软件库,输入`zypper update`,接着使用`zypper install mysql-server mysql-client`命令安装MySQL服务器和客户端。这里`mysql-server`是数据库服务端,而`mysql-client`则包含...

    How-to-install-mysql-on-ubuntu.rar_Ubuntu!

    sudo apt install mysql-server ``` 安装过程中,系统会提示设置MySQL的root用户的密码。请确保选择一个安全且易于记忆的密码。 安装完成后,你需要启动MySQL服务并检查其状态: ```shell sudo systemctl start ...

    mysql5.7 安装教程

    5. 安装MySQL 5.7:`sudo apt-get install mysql-server` 6. 配置MySQL:`sudo mysql_secure_installation` - 设置root密码 - 清理匿名用户 - 禁止root远程登录 - 删除测试数据库 - 重新加载权限表 7. 开启...

    mysql的linux安装包.rar

    sudo apt-get install mysql-server ``` 在安装过程中,系统会提示你设置root用户的密码。请确保选择一个安全且易于记忆的密码。 如果使用的是RHEL、CentOS或Fedora,你需要先启用MySQL的Yum存储库: ```bash ...

    mysql下载及安装图解

    例如,`sudo apt-get install mysql-server` 或 `sudo yum install mysql-server`。 - **macOS**: 可以使用Homebrew,输入`brew install mysql`。 4. **配置MySQL**:安装完成后,需要初始化数据库并设置root用户...

    mysql linux简单教程

    sudo apt-get install mysql-server ``` 在CentOS或Fedora中,用的是yum命令: ```bash sudo yum install mysql-server ``` 安装过程中,系统可能会提示你设置root用户的密码。 二、启动与停止MySQL服务 安装...

    MySQL V5.5帮助文档

    1.3. Overview of the MySQL Database Management System 1.3.1. What is MySQL? 1.3.2. History of MySQL 1.3.3. The Main Features of MySQL 1.4. MySQL Development History 1.5. What Is New in MySQL 5.5 1.5.1...

    MySQL5.1安装图解

    对于Linux用户,MySQL5.1的安装通常通过包管理器进行,例如在Ubuntu中可以使用`sudo apt-get install mysql-server`命令,而在CentOS或RHEL中则是`sudo yum install mysql-server`。安装过程中,系统也会提示你设置...

Global site tag (gtag.js) - Google Analytics