说明: 首先必须能链接外网. 如果不能直接访问,那也可以设置代理,请参考: 在内网机器上设置yum代理
使用 yum 的权限要求是 root 用户,如果你不是,那么可以需要 在 shell命令之前加上 sudo,或者 su root 切换到 super 管理员进行操作. 并可能需要输入密码.
1. 添加 yum 数据源;
建议命名为 MariaDB.repo 类似的名字:
[plain] view plain copy 在CODE上查看代码片派生到我的代码片
cd /etc/yum.repos.d/
vim /etc/yum.repos.d/MariaDB.repo
[plain] view plain copy 在CODE上查看代码片派生到我的代码片
# MariaDB 10.0 CentOS repository list - created 2015-08-12 10:59 UTC
# http://mariadb.org/mariadb/repositories/
[mariadb]
name = MariaDB
baseurl = http://yum.mariadb.org/10.0/centos6-amd64
gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB
gpgcheck=1
该文件的内容是参考官网,并从官网上生成的,设置安装源仓库的 具体的地址为: https://downloads.mariadb.org/mariadb/repositories/
选择好操作系统版本之后既可以查看,其他操作系统的安装源也可以在此处查看并设置。
如果服务器不支持https协议,或者gpgkey 保错,确保没问题的话,可以将 gpgcheck=1 修改为 gpgcheck=0,则不进行校验.
我的示例:
[root@localhost ~]# cat /etc/yum.repos.d/MariaDB.repo
# MariaDB 10.1 CentOS repository list - created 2017-04-05 08:04 UTC
# http://downloads.mariadb.org/mariadb/repositories/
[mariadb]
name = MariaDB
baseurl = http://yum.mariadb.org/10.1/centos6-amd64
gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB
gpgcheck=1
2. 安装数据库
# yum remove MariaDB-server MariaDB-client
yum -y install MariaDB-server MariaDB-client
如果要删除旧的数据库可以使用remove,参数 -y 是确认,不用提示。此处,安装的是服务器和客户端,一般来说安装这两个就可以了。
3. 启动数据库
如果不用进行其他的操作,则现在就可以直接启动数据库,并进行测试了。
# service MysqL status
# service MysqL stop
# 启动数据库
service MysqL start
4. 修改root密码
# 修改root密码
MysqLadmin -u root password 'root'
因为安装好以后的root密码是空,所以需要设置; 如果是测试服务器,那么你可以直接使用root,不重要的密码很多时候可以设置为和用户名一致,以免忘记了又想不起来。
如果是重要的服务器,请使用复杂密码,例如邮箱,各种自由组合的规则的字符等。
我的示例:
[root@localhost ~]# service MysqL start
Starting MysqL.170405 17:20:34 MysqLd_safe Logging to '/var/lib/MysqL/localhost.localdomain.err'.
170405 17:20:34 MysqLd_safe Starting MysqLd daemon with databases from /var/lib/MysqL
[ OK ]
root@localhost ~]# ps aux|grep mysq
root 8824 0.0 0.0 11436 1564 pts/0 S 17:20 0:00 /bin/sh /usr/bin/MysqLd_safe --datadir=/var/lib/MysqL --pid-file=/var/lib/MysqL/localhost.localdomain.pid
MysqL 8898 1.1 1.6 824048 134948 pts/0 Sl 17:20 0:00 /usr/sbin/MysqLd --basedir=/usr --datadir=/var/lib/MysqL --plugin-dir=/usr/lib64/MysqL/plugin --user=MysqL --log-error=/var/lib/MysqL/localhost.localdomain.err --pid-file=/var/lib/MysqL/localhost.localdomain.pid
MysqL -u root -p
如果是本机,那可以直接使用上面的命令登录,当然,需要输入密码. 如果是其他机器,那么可能需要如下的形式:
MysqL -h 127.0.0.1 -P 3306 -u root -p
[root@localhost ~]# MysqL
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 3
Server version: 10.1.22-MariaDB MariaDB Server
Copyright (c) 2000,2016,Oracle,MariaDB Corporation Ab and others.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
MariaDB [(none)]>
MariaDB [(none)]> show variables like 'innodb_file_per%';
+-----------------------+-------+
| Variable_name | Value |
+-----------------------+-------+
| innodb_file_per_table | ON |
+-----------------------+-------+
1 row in set (0.00 sec)
6. 简单sql测试
-- 查看MysqL的状态
status;
show engines;
show databases;
use test;
show tables;
-- 创建一个表
CREATE TABLE t_test (
id int(11) UNSIGNED NOT NULL AUTO_INCREMENT,
userId char(36),
lastLoginTime timestamp,
PRIMARY KEY (id)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- 插入测试数据
insert into t_test(userId)
values
('admin')
,('haha')
;
-- 简单查询
select * from t_test;
select id,userId from t_test where userId='admin' ;
7. 修改数据存放目录
MysqL,MariaDB 的默认数据存放在 /var/lib/MysqL/ 目录下,如果不想放到此处,或者是想要程序和数据分离,或者是磁盘原因,
需要切换到其他路径,则可以通过修改 datadir系统变量来达成目的.
# 停止数据库
[root@localhost ~]# service MysqL stop
Shutting down MysqL... [ OK ]
# 创建目录,假设没有的话
[root@localhost ~] # mkdir -p /data/MysqL
#设置权限
[root@localhost ~]# chown -R MysqL:MysqL /data/
[root@localhost ~]# ll /data/
total 4
drwxr-xr-x 5 MysqL MysqL 4096 Apr 5 17:50 MysqL
# 按下面的命令重新初始化数据库
[root@localhost ~]# /usr/bin/MysqL_install_db --defaults-file=/etc/my.cnf.d/server.cnf --datadir=/data/MysqL --user=MysqL
[root@localhost ~]# ls /data/MysqL/
aria_log.00000001 bogon.err ib_logfile0 localhost.localdomain.err performance_schema
aria_log_control ibdata1 ib_logfile1 MysqL test
# 其实查看 /etc/my.cnf 文件可以发现
# MariaDB 的此文件之中只有一个包含语句
# 所以需要修改的配置文件为 /etc/my.cnf.d/server.cnf
cp /etc/my.cnf.d/server.cnf /etc/my.cnf.d/server.cnf_original
vim /etc/my.cnf.d/server.cnf
然后 按 i 进入编辑模式,可以插入相关内容.使用键盘的上下左右键可以移动光标,编辑完成以后,按 ESC 退出编辑模式(进入命令模式),然后输入命令:wq 保存并退出
我的示例:
[root@localhost ~]# cat /etc/my.cnf.d/server.cnf
#
# These groups are read by MariaDB server.
# Use it for options that only the server (but not clients) should see
#
# See the examples of server my.cnf files in /usr/share/MysqL/
#
# this is read by the standalone daemon and embedded servers
[server]
# this is only for the MysqLd standalone daemon
[MysqLd]
datadir=/data/MysqL #设置/data/MysqL为新文件的数据目录
socket=/var/lib/MysqL/MysqL.sock
#
# * Galera-related settings
#
[galera]
# Mandatory settings
#wsrep_on=ON
#wsrep_provider=
#wsrep_cluster_address=
#binlog_format=row
#default_storage_engine=InnoDB
#innodb_autoinc_lock_mode=2
#
# Allow server to accept connections on all interfaces.
#
#bind-address=0.0.0.0
#
# Optional setting
#wsrep_slave_threads=1
#innodb_flush_log_at_trx_commit=0
# this is only for embedded server
[embedded]
# This group is only read by MariaDB servers,not by MysqL.
# If you use the same .cnf file for MysqL and MariaDB,
# you can put MariaDB-only options here
[mariadb]
# This group is only read by MariaDB-10.1 servers.
# If you use the same .cnf file for MariaDB of different versions,
# use this group for options that older servers don't understand
[mariadb-10.1]
#重启MysqL
[root@localhost ~]# service MysqL start
Starting MysqL.170405 17:50:20 MysqLd_safe Logging to '/data/MysqL/localhost.localdomain.err'.
170405 17:50:20 MysqLd_safe Starting MysqLd daemon with databases from /data/MysqL
[ OK ]
提示:
/usr/bin/MysqLd_safe_helper: Can't create/write to file '/data/MysqL/bogon.err' (Errcode: 13 "Permission denied")
ERROR!
害苦了我,多方查找才发selinx开启这呢,果断禁用,然后重启操作系统:OK!!!
vim /etc/sysconfig/selinux
SELINUX=disabled
[root@localhost ~]# MysqL
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 3
Server version: 10.1.22-MariaDB MariaDB Server
Copyright (c) 2000,MariaDB Corporation Ab and others.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
MariaDB [(none)]> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| MysqL |
| performance_schema |
| test |
+--------------------+
4 rows in set (0.00 sec)
既然上面指定了慢查询日志文件,我后来看了下MariaDB的err日志,发现MariaDB不会自己创建该文件,所以我们需要自己创建,并修改相应的文件权限(比如 MysqL 采用 MysqL用户,可能我们使用 root用户创建的文件,此时要求慢查询日志文件对MysqL用户可读可写就行。)
touch /usr/local/ieternal/MysqL_data/slow_query_log.log
chmod 666 /usr/local/ieternal/MysqL_data/slow_query_log.log
然后重新启动MysqL.
service MysqL start
8、MysqL初始设置
MysqL> delete from MysqL.user where user='';
2、设置root密码
1)、
MysqLadmin -u root password "newpass"
2)、
MysqL> SET PASSWORD FOR 'root'@'localhost' = PASSWORD('newpass');
3)、
MysqL> UPDATE MysqL.user SET Password = PASSWORD('db@pass123') WHERE user = 'root';
MysqL> FLUSH PRIVILEGES;
4)、在丢失root密码的时候,可以这样
MysqLd_safe --skip-grant-tables&
MysqL> UPDATE user SET password=PASSWORD("new password") WHERE user='root';
MysqL> FLUSH PRIVILEGES;
MysqL> grant all on *.* to pancou@'%' identified by 'pancou';
原文链接:https://www.f2er.com/centos/377596.html