我的编程空间,编程开发者的网络收藏夹
学习永远不晚

mariaDB 10.1源码如何安装

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

mariaDB 10.1源码如何安装

这篇文章主要为大家展示了“mariaDB 10.1源码如何安装”,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下“mariaDB 10.1源码如何安装”这篇文章吧。

[root@localhost yum.repos.d]# yum -y install gcc*

[root@localhost yum.repos.d]# yum -y install ncurses-devel

[root@localhost yum.repos.d]# yum install bison bison-devel ncurses libxml2 libxml2-devel cmake  #cmake 要求版本2.8以上

[root@localhost ~]# useradd mysql

[root@localhost ~]# mkdir /mariaDB/{data,logs,socket} -p

[root@localhost ~]# chown mysql:mysql /mariaDB/ -R

[root@localhost ~]# chmod 777 /mariaDB/socket/

[root@localhost ~]# tar -xzvf mariadb-10.1.22.tar.gz

[root@localhost ~]# cd mariadb-10.1.22

cmake \

-DCMAKE_INSTALL_PREFIX=/mariaDB \

-DDEFAULT_CHARSET=utf8 \

-DDEFAULT_COLLATION=utf8_general_ci \

-DENABLED_LOCAL_INFILE=ON \

-DWITH_XTRADB_STORAGE_ENGINE=1 \

-DWITH_MYISAM_STORAGE_ENGINE=1 \

-DWITH_INNOBASE_STORAGE_ENGINE=1 \

-DWITH_FEDERATEDX_STORAGE_ENGINE=1 \

-DWITH_PARTITION_STORAGE_ENGINE=1 \

-DWITH_PERFSCHEMA_STORAGE_ENGINE=1 \

-DCOMPILATION_COMMENT='MariaDB 10.1 production environment' \

-DWITH_READLINE=ON \

-DSYSCONFDIR=/mariaDB/data \

-DMYSQL_UNIX_ADDR=/mariaDB/socket/socket \

-DMYSQL_DATADIR=/mariaDB/data

[root@localhost ~]# make

[root@localhost ~]# make install

[root@localhost ~]# vi /mariaDB/my.cnf

[client]

port = 3306

socket = /mariaDB/data/mysql.sock


[mysql]

no-auto-rehash


[mysqld]

server-id = 1

user = mysql

port = 3306

socket = /mariaDB/socket/mysql.sock

basedir = /mariaDB

datadir = /mariaDB/data


default-storage-engine = InnoDB


external-locking = FALSE

skip-name-resolve


#connect options

back_log = 600  #

max_connections = 1000

max_connect_errors = 10    #number which allow to connect server for error password  

connect_timeout=20   #The number of seconds that the mysqld server waits for a connect packet

max_allowed_packet = 32M


### Table Cache Settings

table_open_cache = 800  ## Range: 64~ 524288

open_files_limit = 5000

tmp_table_size = 2G               #recommend same size as tmp_table_size

max_heap_table_size = 2G     #recommend 256 min



### Thread Cache

thread_cache_size = 64

#thread_stack = 192K



### Query Cache  

query_cache_size = 64M

query_cache_limit = 4M


### Per-Thread Buffers

sort_buffer_size = 2M

read_buffer_size = 2M

read_rnd_buffer_size = 16M

bulk_insert_buffer_size = 64M

join_buffer_size = 2M

thread_stack = 512k


##transaction infomation

transaction_isolation = READ-COMMITTED



#slog log

slow_query_log_file=/mariaDB/logs/slow-log.log

slow_query_log=1

long_query_time=4   #set time when executing is more this time,the sql be writen in slow log

log_queries_not_using_indexes=1  #when executing sql,the table have not index for the sql, the sql will be writen in slow log


##bin log

log-bin = /mariaDB/logs/ray-bin.log

binlog_cache_size = 10M

max_binlog_cache_size = 8M

max_binlog_size = 128M

expire_logs_days = 7

binlog_format = ROW

binlog_stmt_cache_size = 10M


key_buffer_size = 256MB


lower_case_table_names = 1


###innodb options

innodb_buffer_pool_instances=8

innodb_file_per_table = on

innodb_thread_concurrency = 8

innodb_read_io_threads = 16     ##2*cpu个数*cpu核数,个人建议与cpu核数相等或2倍

innodb_write_io_threads = 16


##innodb memery

innodb_buffer_pool_size = 512M

innodb_max_dirty_pages_pct = 70

innodb_lock_wait_timeout = 120



##redo log

innodb_log_buffer_size = 16M

innodb_log_file_size = 128M

innodb_log_files_in_group = 3

innodb_flush_log_at_trx_commit = 1


autocommit=0


#set independent undo

innodb_undo_directory=/mariaDB/data

innodb_undo_logs=128

innodb_undo_tablespaces=4



[mysqldump]

quick

max_allowed_packet = 32M


[mysqld_safe]

log-error=/mariaDB/logs/mysql_ray.err

pid-file=/mariaDB/data/ray.pid

/mariaDB/scripts/mysql_install_db --user=mysql --basedir=/mariaDB --datadir=/mariaDB/data --innodb_undo_tablespaces=4 --defaults-file=/mariaDB/my.cnf

/mariaDB/bin/mysqld_safe --defaults-file=/mariaDB/my.cnf 2>&1 > /dev/null &

vi /mariaDB/mysqld

#!/bin/bash

mysql_port=3306

mysql_username="root"

mysql_password="123456"

function_start_mysql()

{

printf "Starting MySQL...\n"

/bin/sh /mariaDB/bin/mysqld_safe --defaults-file=/mariaDB/my.cnf 2>&1 > /dev/null &

}

function_stop_mysql()

{

printf "Stoping MySQL...\n"

/mariaDB/bin/mysqladmin -u ${mysql_username} -p${mysql_password} -S /mariaDB/socket/mysql.sock shutdown

}

function_restart_mysql()

{

printf "Restarting MySQL...\n"

function_stop_mysql

function_start_mysql

}

function_kill_mysql()

{

kill -9 $(ps -ef | grep 'bin/mysqld_safe' | grep ${mysql_port} | awk '{printf $2}')

kill -9 $(ps -ef | grep 'libexec/mysqld' | grep ${mysql_port} | awk '{printf $2}')

}

case $1 in

start)

function_start_mysql;;

stop)

function_stop_mysql;;

kill)

function_kill_mysql;;

restart)

function_stop_mysql

function_start_mysql;;

*)

echo "Usage: /mariaDB/mysqld {start|stop|restart|kill}";;

esac

修改root密码

[root@MariaDB ~]# mysqladmin -uroot password '123456'

[root@MariaDB ~]# mysql -uroot -p'123456' -S /mariaDB/socket/mysql.sock

以上是“mariaDB 10.1源码如何安装”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注亿速云行业资讯频道!

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

mariaDB 10.1源码如何安装

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

用yum源配合源码包安装openresty、mariadb、php7服务

在开始部署之前,有必要先简单介绍一下! OpenResty 是一个基于 Nginx 与 Lua 的高性能 Web 平台,其内部集成了大量精良的 Lua 库、第三方模块以及大多数的依赖项。用于方便地搭建能够处理超高并发、扩展性极高的动态
2022-11-30

Ubuntu上如何安装MariaDB

今天小编给大家分享一下Ubuntu上如何安装MariaDB的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起来了解一下吧。一、前提条件你需要拥
2023-07-04

centos7源码如何安装php5.6

本文小编为大家详细介绍“centos7源码如何安装php5.6”,内容详细,步骤清晰,细节处理妥当,希望这篇“centos7源码如何安装php5.6”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来学习新知识吧。centos7源码
2023-07-04

paramiko 2.4.1源码如何安装

这篇文章主要介绍了paramiko 2.4.1源码如何安装,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。事实是,完全不够的,我一共安装了10包后才能安装paramiko。下面
2023-06-04

linux源码如何安装git

小编给大家分享一下linux源码如何安装git,希望大家阅读完这篇文章之后都有所收获,下面让我们一起去探讨吧!linux源码安装git的方法:1、下载git源码上传至Linux服务器;2、登录目标机器,解压并安装;3、安装“gcc gcc-
2023-06-21

Linux系统如何安装MariaDB

小编给大家分享一下Linux系统如何安装MariaDB,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!MariaDB 简介:MariaDB是MySQL源代码的一个分
2023-06-28

编程热搜

目录