首页 > 数据库 > MySQL > 正文

mysql自动化安装脚本(ubuntu and centos64)

2024-07-24 12:47:21
字体:
来源:转载
供稿:网友
Ubuntu Mysql自动化安装脚本
复制代码 代码如下:

#/bin/bash
function hasDpkg
{
r=`dpkg -l | grep "$1"`
if [ -n "$r" ]
then
h=`dpkg -l | grep "ii $1"`
if [ -n "$h" ]
then
return 1
else
return 0
fi
else
return 0
fi
}

mysql="mysql-server-5.5"

hasDpkg $mysql

r=$?

if [ $r -eq 1 ]
then
:
# echo "$mysql was installed"
else
echo "$mysql was not installed"
echo mysql-server mysql-server/root_password password adv | sudo debconf-set-selections
echo mysql-server mysql-server/root_password_again password adv | sudo debconf-set-selections //设定root 用户及其密码
apt-get install $mysql
fi

CentOS64 mysql 自动化安装脚本
复制代码 代码如下:

#/bin/bash
function hasinstall
{
r=$(rpm -qa "$1")
if [ $r ]
then
return 1
else
return 0
fi
}

mysql="mysql-server"

hasinstall $mysql

r=$?

if [ $r -eq 1 ]
then
:
echo "$mysql was installed"
else
echo "$mysql was not installed"
yum install mysql mysql-server mysql-devel
service mysqld start
fi
#add User to Mysql database
echo "INFORM:Enter database root password"
mysql -uroot -p -hlocalhost </etc/cloud/mysql/adduser.sql

adduser.sql 脚本
复制代码 代码如下:

insert ignore into mysql.user(Host,User,Password)
values('localhost','loadserver','adv');
flush privileges;

grant all privileges on *.* to loadserver@localhost identified by 'adv';

flush privileges;

您可能感兴趣的文章:

ubuntu系统中nginx启动脚本Shell脚本实现自动检测修改最快的Ubuntu软件源Ubuntu、Linux Mint一键安装Chrome浏览器的Shell脚本分享用Shell脚本快速搭建Ubuntu下的Nodejs开发环境获取服务器信息的Shell脚本分享(ubuntu、centos测试通过)Ubuntu下定时提交代码到SVN服务器的Shell脚本分享Ubuntu Server下MySql数据库备份脚本代码Ubuntu服务器配置apache2.4的限速功能shell脚本分享ubuntu中实现定时弹窗的提醒脚本Ubuntu 14.04设置开机启动脚本的方法
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表