MariaDB10自动化安装部署

本文涉及的产品
RDS MySQL Serverless 基础系列,0.5-2RCU 50GB
云数据库 RDS PostgreSQL,高可用系列 2核4GB
RDS MySQL Serverless 高可用系列,价值2615元额度,1个月
简介:

去MariaDB官网下载MariaDB本文用的是MariaDB 10.1.16

 https://downloads.mariadb.org


选择二进制版本,下载到/root目录下

mariadb-10.1.16-linux-x86_64.tar.gz





开始安装

[root@HE3 ~]# cat mariadb_auto_install.sh

[root@HE3 ~]# cat mariadb_auto_install.sh

[root@HE3 ~]# cat mariadb_auto_install.sh 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
###### 二进制自动安装数据库脚本root密码MANAGER将脚本和安装包放在/root目录即可###############
######数据库目录/usr/local/mysql############
######数据目录/data/mysql############
######日志目录/log/mysql############
######端口号默认3306其余参数按需自行修改############
##################
#author:rrhelei@126.com#
##################
#!/bin/bash
PATH= /bin : /sbin : /usr/bin : /usr/sbin : /opt/bin : /opt/sbin :~ /bin
export  PATH
# Check if user is root
if  [ $( id  -u) !=  "0"  ];  then
     echo  "Error: You must be root to run this script, please use root to install"
     exit  1
fi
clear
echo  "========================================================================="
echo  "A tool to auto-compile & install MariaDB 10.1.16 on Redhat/CentOS Linux "
echo  "========================================================================="
cur_dir=$( pwd )
#set mysql root password
echo  "==========================="
mysqlrootpwd= "MANAGER"
echo  -e  "Please input the root password of mysql:"
read  -p  "(Default password: MANAGER):"  mysqlrootpwd
if  "$mysqlrootpwd"  ""  ];  then
mysqlrootpwd= "MANAGER"
fi
echo  "==========================="
echo  "MySQL root password:$mysqlrootpwd"
echo  "==========================="
#which MySQL Version do you want to install?
echo  "==========================="
isinstallmysql56= "n"
echo  "Install MariaDB 10.1.16,Please input y"
read  -p  "(Please input y , n):"  isinstallmysql56
case  "$isinstallmysql56"  in
y|Y|Yes|YES| yes |yES|yEs|YeS|yeS)
echo  "You will install MySQL 5.6.25"
isinstallmysql56= "y"
;;
*)
echo  "INPUT error,You will exit install MariaDB 10.1.16"
isinstallmysql56= "n"
     exit
esac
get_char()
{
SAVEDSTTY=`stty -g`
stty - echo
stty cbreak
#dd if=/dev/tty bs=1 count=1 2> /dev/null
stty -raw
stty  echo
stty $SAVEDSTTY
}
echo  ""
echo  "Press any key to start...or Press Ctrl+c to cancel"
char=`get_char`
# Initialize  the installation related content.
function  InitInstall()
{
cat  /etc/issue
uname  -a
MemTotal=` free  -m |  grep  Mem |  awk  '{print  $2}' `  
echo  -e  "\n Memory is: ${MemTotal} MB "
#Set timezone
rm  -rf  /etc/localtime
ln  -s  /usr/share/zoneinfo/Asia/Shanghai  /etc/localtime
     #Delete Old Mysql program
rpm -qa| grep  mysql
rpm -e mysql
#Disable SeLinux
if  [ -s  /etc/selinux/config  ];  then
sed  -i  's/SELINUX=enforcing/SELINUX=disabled/g'  /etc/selinux/config
fi
     setenforce 0
}
#Installation of depend on and optimization options.
function  InstallDependsAndOpt()
{
cd  $cur_dir
cat  >> /etc/security/limits .conf<<EOF
* soft nproc 65535
* hard nproc 65535
* soft nofile 65535
* hard nofile 65535
EOF
echo  "fs.file-max=65535"  >>  /etc/sysctl .conf
}
#Install MySQL
function  InstallMySQL56()
{
echo  "============================Install MariaDB 10.1.16=================================="
cd  $cur_dir
#Backup old my.cnf
#rm -f /etc/my.cnf
if  [ -s  /etc/my .cnf ];  then
     mv  /etc/my .cnf  /etc/my .cnf.` date  +%Y%m%d%H%M%S`.bak
fi
#mysql directory configuration
groupadd mysql -g 512
useradd  -u 512 -g mysql -s  /sbin/nologin  -d  /home/mysql  mysql
tar  xvf  /root/mariadb-10 .1.16-linux-x86_64. tar .gz
mv  /root/mariadb-10 .1.16-linux-x86_64  /usr/local/mysql
mkdir  -p  /data/mysql
mkdir  -p  /log/mysql
chown  -R mysql:mysql  /data/mysql
chown  -R mysql:mysql  /usr/local/mysql
chown  -R mysql:mysql  /log
SERVERID=` ifconfig  eth0 |  grep  "inet addr"  awk  '{ print $2}' awk  -F.  '{ print $3$4}' `
cat  >> /etc/my .cnf<<EOF
[client]
port= 3306
socket=  /tmp/mysql .sock
default-character- set =utf8
[mysql]
default-character- set =utf8
[mysqld]
port= 3306
socket=  /tmp/mysql .sock
basedir=  /usr/local/mysql
datadir=  /data/mysql
open_files_limit    = 3072
back_log = 103
max_connections = 800
max_connect_errors = 100000
table_open_cache = 512
external-locking = FALSE
max_allowed_packet = 32M
sort_buffer_size = 2M
join_buffer_size = 2M
thread_cache_size = 51
query_cache_size = 32M
tmp_table_size = 96M
max_heap_table_size = 96M
slow_query_log = 1
slow_query_log_file =  /log/mysql/slow .log
log-error =  /log/mysql/error .log
long_query_time = 1
server- id  = $SERVERID
log-bin =  /log/mysql/mysql-bin
sync_binlog = 1
binlog_cache_size = 4M
max_binlog_cache_size = 8M
max_binlog_size = 1024M
expire_logs_days = 60
key_buffer_size = 32M
read_buffer_size = 1M
read_rnd_buffer_size = 16M
bulk_insert_buffer_size = 64M
character- set -server=utf8
default-storage-engine = InnoDB
binlog_format = row
innodb_buffer_pool_dump_at_shutdown = 1
innodb_buffer_pool_load_at_startup = 1
binlog_rows_query_log_events = 1
explicit_defaults_for_timestamp = 1
#log_slave_updates=1
#gtid_mode=on
#enforce_gtid_consistency=1
#innodb_write_io_threads = 8
#innodb_read_io_threads = 8
#innodb_thread_concurrency = 0
transaction_isolation = REPEATABLE-READ
innodb_additional_mem_pool_size = 16M
innodb_buffer_pool_size = 512M
#innodb_data_home_dir =
innodb_data_file_path = ibdata1:1024M:autoextend
innodb_flush_log_at_trx_commit = 1
innodb_log_buffer_size = 16M
innodb_log_file_size = 512M
innodb_log_files_in_group = 2
innodb_max_dirty_pages_pct = 50
innodb_file_per_table = 1
innodb_locks_unsafe_for_binlog = 0
wait_timeout = 14400
interactive_timeout = 14400
skip-name-resolve
[mysqldump]
quick
max_allowed_packet = 32M
EOF
/usr/local/mysql/scripts/mysql_install_db  --basedir= /usr/local/mysql  --datadir= /data/mysql  --defaults- file = /etc/my .cnf --user=mysql
cp  /usr/local/mysql/support-files/mysql .server  /etc/init .d /mysqld
chmod  700  /etc/init .d /mysqld
chkconfig --add mysql
chkconfig --level 2345 mysqld on
cat  >>  /etc/ld .so.conf.d /mysql-x86_64 .conf<<EOF
/usr/local/mysql/lib
EOF
ldconfig
if  [ -d  "/proc/vz"  ]; then
ulimit  -s unlimited
fi
/etc/init .d /mysqld  start
cat  >>  /etc/profile  <<EOF
export  PATH=$PATH: /usr/local/mysql/bin
export  LD_LIBRARY_PATH= /usr/local/mysql/lib
EOF
/usr/local/mysql/bin/mysqladmin  -u root password $mysqlrootpwd
cat  /tmp/mysql_sec_script <<EOF
use mysql;
delete from mysql.user where user!= 'root'  or host!= 'localhost' ;
flush privileges;
EOF
/usr/local/mysql/bin/mysql  -u root -p$mysqlrootpwd -h localhost <  /tmp/mysql_sec_script
#rm -f /tmp/mysql_sec_script
/etc/init .d /mysqld  restart
source  /etc/profile
echo  "============================MariaDB 10.1.16 install completed========================="
}
function  CheckInstall()
{
echo  "===================================== Check install ==================================="
clear
ismysql= ""
echo  "Checking..."
if  [ -s  /usr/local/mysql/bin/mysql  ] && [ -s  /usr/local/mysql/bin/mysqld_safe  ] && [ -s  /etc/my .cnf ];  then
   echo  "MySQL: OK"
   ismysql= "ok"
   else
   echo  "Error: /usr/local/mysql not found!!!MySQL install failed."
fi
if  "$ismysql"  "ok"  ];  then
echo  "Install MariaDB 10.1.16 completed! enjoy it."
echo  "========================================================================="
netstat  -ntl
else
echo  "Sorry,Failed to install MySQL!"
echo  "You can tail /root/mysql-install.log from your server."
fi
}
#The installation log
InitInstall 2>&1 |  tee  /root/mysql-install .log
CheckAndDownloadFiles 2>&1 |  tee  -a  /root/mysql-install .log
InstallDependsAndOpt 2>&1 |  tee  -a  /root/mysql-install .log
InstallMySQL56 2>&1 |  tee  -a  /root/mysql-install .log
CheckInstall 2>&1 |  tee  -a  /root/mysql-install .log





 [root@HE3 ~]# mysql -uroot -p
Enter password: 
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 6
Server version: 10.1.16-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)]> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
| test               |
+--------------------+
4 rows in set (0.00 sec)




至此,mariadb-10.1.16安装成功








 本文转自 dbapower 51CTO博客,原文链接:http://blog.51cto.com/suifu/1830575,如需转载请自行联系原作者

相关实践学习
每个IT人都想学的“Web应用上云经典架构”实战
本实验从Web应用上云这个最基本的、最普遍的需求出发,帮助IT从业者们通过“阿里云Web应用上云解决方案”,了解一个企业级Web应用上云的常见架构,了解如何构建一个高可用、可扩展的企业级应用架构。
MySQL数据库入门学习
本课程通过最流行的开源数据库MySQL带你了解数据库的世界。 &nbsp; 相关的阿里云产品:云数据库RDS MySQL 版 阿里云关系型数据库RDS(Relational Database Service)是一种稳定可靠、可弹性伸缩的在线数据库服务,提供容灾、备份、恢复、迁移等方面的全套解决方案,彻底解决数据库运维的烦恼。 了解产品详情:&nbsp;https://www.aliyun.com/product/rds/mysql&nbsp;
相关文章
|
2月前
|
人工智能 Ubuntu 前端开发
Dify部署全栈指南:AI从Ubuntu配置到HTTPS自动化的10倍秘籍
本文档介绍如何部署Dify后端服务及前端界面,涵盖系统环境要求、依赖安装、代码拉取、环境变量配置、服务启动、数据库管理及常见问题解决方案,适用于开发与生产环境部署。
609 1
|
2月前
|
弹性计算 Devops Shell
用阿里云 DevOps Flow 实现 ECS 部署自动化:从准备到落地的完整指南
阿里云 DevOps Flow 是一款助力开发者实现自动化部署的高效工具,支持代码流水线构建、测试与部署至ECS实例,显著提升交付效率与稳定性。本文详解如何通过 Flow 自动部署 Bash 脚本至 ECS,涵盖环境准备、流水线搭建、源码接入、部署流程设计及结果验证,助你快速上手云上自动化运维。
215 0
|
3月前
|
运维 Prometheus 监控
3 年部署经验总结:用自动化工具轻松管理 300+ 服务器开源软件
三年前接手公司IT部门时,我满怀信心,却发现部署效率低下。尽管使用了GitLab、Jenkins、Zabbix等100+开源工具,部署仍耗时费力。文档厚重如百科,却难解实际困境。一次凌晨三点的加班让我下定决心改变现状。偶然看到一篇国外博客,介绍了自动化部署的高效方式,我深受启发。
178 0
|
30天前
|
安全 Linux iOS开发
Nessus Professional 10.10 Auto Installer for RHEL 10, AlmaLinux 10, Rocky Linux 10 - Nessus 自动化安装程序
Nessus Professional 10.10 Auto Installer for RHEL 10, AlmaLinux 10, Rocky Linux 10 - Nessus 自动化安装程序
123 6
Nessus Professional 10.10 Auto Installer for RHEL 10, AlmaLinux 10, Rocky Linux 10 - Nessus 自动化安装程序
|
30天前
|
Ubuntu 安全 iOS开发
Nessus Professional 10.10 Auto Installer for Ubuntu 24.04 - Nessus 自动化安装程序
Nessus Professional 10.10 Auto Installer for Ubuntu 24.04 - Nessus 自动化安装程序
113 5
|
30天前
|
安全 Ubuntu iOS开发
Nessus Professional 10.10 Auto Installer for Windows - Nessus 自动化安装程序
Nessus Professional 10.10 Auto Installer for Windows - Nessus 自动化安装程序
116 3
Nessus Professional 10.10 Auto Installer for Windows - Nessus 自动化安装程序
|
5月前
|
存储 文字识别 自然语言处理
通义大模型在文档自动化处理中的高效部署指南(OCR集成与批量处理优化)
本文深入探讨了通义大模型在文档自动化处理中的应用,重点解决传统OCR识别精度低、效率瓶颈等问题。通过多模态编码与跨模态融合技术,通义大模型实现了高精度的文本检测与版面分析。文章详细介绍了OCR集成流程、批量处理优化策略及实战案例,展示了动态批处理和分布式架构带来的性能提升。实验结果表明,优化后系统处理速度可达210页/分钟,准确率达96.8%,单文档延迟降至0.3秒,为文档处理领域提供了高效解决方案。
615 1
|
28天前
|
弹性计算 人工智能 前端开发
在阿里云ECS上部署n8n自动化工作流:U2实例实战
本文介绍如何在阿里云ECS的u2i/u2a实例上部署开源工作流自动化平台n8n,利用Docker快速搭建并配置定时任务,实现如每日抓取MuleRun新AI Agent并推送通知等自动化流程。内容涵盖环境准备、安全组设置、实战案例与优化建议,助力高效构建低维护成本的自动化系统。
326 5
|
30天前
|
安全 Ubuntu iOS开发
Nessus Professional 10.10 Auto Installer for macOS Tahoe - Nessus 自动化安装程序
Nessus Professional 10.10 Auto Installer for macOS Tahoe - Nessus 自动化安装程序
78 5

热门文章

最新文章

推荐镜像

更多