欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

mysql一鍵安裝教程 mysql5.1.45全自動(dòng)安裝(編譯安裝)

 更新時(shí)間:2016年06月22日 11:32:30   作者:persist-win  
這篇文章主要介紹了mysql一鍵安裝教程,一鍵安裝MySQL5.1.45,全自動(dòng)安裝MySQL SHELL程序,實(shí)現(xiàn)編譯安裝,感興趣的

一.問題來源
 
安裝MySQL如果手動(dòng)安裝一臺(tái)還可以,但安裝多臺(tái),手動(dòng)安裝很麻煩,需要編寫一個(gè)shell程序 install_mysql.sh來進(jìn)行安裝

二.程序說明
 將MySQL5.1.45安裝到了 /home/longxibendi/mysql/usrl/local/mysql
 數(shù)據(jù)文件以及日志文件設(shè)置在了 /home/longxibendi/mysql/3309/
 配置文件my.cnf 在   /home/longxibendi/mysql/3309
 端口使用  3309

三.源程序 install_mysql.sh

#!/bin/bash 
#author longxibendi 
#function install MySQL5.1.45 
 
###################################### configure and install ##################################################### 
mkdir -p /home/longxibendi/mysql/usr/local/mysql 
cd  
mkdir mysql 
cd mysql 
wget http://downloads.mysql.com/archives/mysql-5.1/mysql-5.1.45.tar.gz 
 
tar zxvf mysql-5.1.45.tar.gz 
cd mysql-5.1.45 
 
 
./configure --prefix=/home/longxibendi/mysql/usr/local/mysql --without-debug --without-bench --enable-thread-safe-client --enable-assembler --enable-profiling --with-mysqld-ldflags=-all-static --with-client-ldflags=-all-static --with-charset=latin1 --with-extra-charset=utf8,gbk --with-innodb --with-mysqld-user=longxibendi --without-embedded-server --with-server-sufix=community --with-unix-socket-path=/home/longxibendi/mysql/usr/local/mysql/sock/mysql.sock --enable-assembler --with-extra-charsets=complex --enable-thread-safe-client --with-big-tables --with-readline --with-ssl --with-plugins=partition,heap,innobase,myisam,myisammrg,csv 
make -j `cat /proc/cpuinfo | grep 'model name' | wc -l ` && make install 
 
 
###################################### set log and data storage path ##################################################### 
 
chmod +w /home/longxibendi/mysql/usr/local/mysql 
mkdir -p /home/longxibendi/mysql/3309/data/ 
mkdir -p /home/longxibendi/mysql/3309/binlog/ 
mkdir -p /home/longxibendi/mysql/3309/relaylog/ 

 
###################################### create data file ##################################################### 
 
/home/longxibendi/mysql/usr/local/mysql/bin/mysql_install_db --basedir=/home/longxibendi/mysql/usr/local/mysql --datadir=/home/longxibendi/mysql/3309/data --user=longxibendi 
 
####################################### create my.cnf profile ##################################################### 
 
echo " 
[client] 
character-set-server = utf8 
port  = 3309 
socket = /home/longxibendi/mysql/usr/local/mysql/sock/mysql.sock 
 
[mysqld] 
character-set-server = utf8 
replicate-ignore-db = mysql 
replicate-ignore-db = test 
replicate-ignore-db = information_schema 
user  = mysql 
port  = 3309 
socket = /home/longxibendi/mysql/usr/local/mysql/sock/mysql.sock 
basedir = /home/longxibendi/mysql 
datadir = /home/longxibendi/mysql/3309/data 
log-error = /home/longxibendi/mysql/3309/mysql_error.log 
pid-file = /home/longxibendi/mysql/3309/mysql.pid 
open_files_limit  = 10240 
back_log = 600 
max_connections = 5000 
max_connect_errors = 6000 
table_cache = 614 
external-locking = FALSE 
max_allowed_packet = 16M 
sort_buffer_size = 1M 
join_buffer_size = 1M 
thread_cache_size = 300 
#thread_concurrency = 8 
query_cache_size = 20M 
query_cache_limit = 2M 
query_cache_min_res_unit = 2k 
default-storage-engine = MyISAM 
thread_stack = 192K 
transaction_isolation = READ-COMMITTED 
tmp_table_size = 20M 
max_heap_table_size = 20M 
long_query_time = 3 
log-slave-updates 
log-bin = /home/longxibendi/mysql/3309/binlog/binlog 
binlog_cache_size = 4M 
binlog_format = MIXED 
max_binlog_cache_size = 8M 
max_binlog_size = 20M 
relay-log-index = /home/longxibendi/mysql/3309/relaylog/relaylog 
relay-log-info-file = /home/longxibendi/mysql/3309/relaylog/relaylog 
relay-log = /home/longxibendi/mysql/3309/relaylog/relaylog 
expire_logs_days = 30 
key_buffer_size = 10M 
read_buffer_size = 1M 
read_rnd_buffer_size = 6M 
bulk_insert_buffer_size = 4M 
myisam_sort_buffer_size = 8M 
myisam_max_sort_file_size = 20M 
myisam_repair_threads = 1 
myisam_recover 
 
interactive_timeout = 120 
wait_timeout = 120 
 
skip-name-resolve 
#master-connect-retry = 10 
slave-skip-errors = 1032,1062,126,1114,1146,1048,1396 
 
#master-host   =  192.168.1.2 
#master-user   =  username 
#master-password =  password 
#master-port   = 3309 
 
server-id = 1 
 
innodb_additional_mem_pool_size = 16M 
innodb_buffer_pool_size = 20M 
innodb_data_file_path = ibdata1:56M:autoextend 
innodb_file_io_threads = 4 
innodb_thread_concurrency = 8 
innodb_flush_log_at_trx_commit = 2 
innodb_log_buffer_size = 16M 
innodb_log_file_size = 20M 
innodb_log_files_in_group = 3 
innodb_max_dirty_pages_pct = 90 
innodb_lock_wait_timeout = 120 
innodb_file_per_table = 0 
 
#log-slow-queries = /home/longxibendi/mysql/3309/slow.log 
#long_query_time = 10 
 
[mysqldump] 
quick 
max_allowed_packet = 32M 
 
" > /home/longxibendi/mysql/3309/my.cnf 
 
 
############################### solve bug http://bugs.mysql.com/bug.php?id=37942 ############################################# 
 
mkdir -p /home/longxibendi/mysql/share/mysql/english/ 
cp /home/longxibendi/mysql/usr/local/mysql/share/mysql/english/errmsg.sys /home/longxibendi/mysql/share/mysql/english/ 
 
############################### start MySQL Server ############################################# 
/bin/sh /home/longxibendi/mysql/usr/local/mysql/bin/mysqld_safe --defaults-file=/home/longxibendi/mysql/3309/my.cnf 2>&1 > /dev/null & 
############################### try use MySQL Server ############################################# 
/home/longxibendi/mysql/usr/local/mysql/bin/mysql -u root -p -S /home/longxibendi/mysql/usr/local/mysql/sock/mysql.sock -P3309 -h127.0.0.1 -e "show databases;" 

#!/bin/bash
#author longxibendi
#function install MySQL5.1.45

###################################### configure and install #####################################################
mkdir -p /home/longxibendi/mysql/usr/local/mysql
cd 
mkdir mysql
cd mysql
wget http://downloads.mysql.com/archives/mysql-5.1/mysql-5.1.45.tar.gz

tar zxvf mysql-5.1.45.tar.gz
cd mysql-5.1.45




./configure --prefix=/home/longxibendi/mysql/usr/local/mysql --without-debug --without-bench --enable-thread-safe-client --enable-assembler --enable-profiling --with-mysqld-ldflags=-all-static --with-client-ldflags=-all-static --with-charset=latin1 --with-extra-charset=utf8,gbk --with-innodb --with-mysqld-user=longxibendi --without-embedded-server --with-server-sufix=community --with-unix-socket-path=/home/longxibendi/mysql/usr/local/mysql/sock/mysql.sock --enable-assembler --with-extra-charsets=complex --enable-thread-safe-client --with-big-tables --with-readline --with-ssl --with-plugins=partition,heap,innobase,myisam,myisammrg,csv
make -j `cat /proc/cpuinfo | grep 'model name' | wc -l ` && make install



###################################### set log and data storage path #####################################################

chmod +w /home/longxibendi/mysql/usr/local/mysql
mkdir -p /home/longxibendi/mysql/3309/data/
mkdir -p /home/longxibendi/mysql/3309/binlog/
mkdir -p /home/longxibendi/mysql/3309/relaylog/


###################################### create data file #####################################################

/home/longxibendi/mysql/usr/local/mysql/bin/mysql_install_db --basedir=/home/longxibendi/mysql/usr/local/mysql --datadir=/home/longxibendi/mysql/3309/data --user=longxibendi


####################################### create my.cnf profile #####################################################

echo "
[client]
character-set-server = utf8
port  = 3309
socket = /home/longxibendi/mysql/usr/local/mysql/sock/mysql.sock

[mysqld]
character-set-server = utf8
replicate-ignore-db = mysql
replicate-ignore-db = test
replicate-ignore-db = information_schema
user  = mysql
port  = 3309
socket = /home/longxibendi/mysql/usr/local/mysql/sock/mysql.sock
basedir = /home/longxibendi/mysql
datadir = /home/longxibendi/mysql/3309/data
log-error = /home/longxibendi/mysql/3309/mysql_error.log
pid-file = /home/longxibendi/mysql/3309/mysql.pid
open_files_limit  = 10240
back_log = 600
max_connections = 5000
max_connect_errors = 6000
table_cache = 614
external-locking = FALSE
max_allowed_packet = 16M
sort_buffer_size = 1M
join_buffer_size = 1M
thread_cache_size = 300
#thread_concurrency = 8
query_cache_size = 20M
query_cache_limit = 2M
query_cache_min_res_unit = 2k
default-storage-engine = MyISAM
thread_stack = 192K
transaction_isolation = READ-COMMITTED
tmp_table_size = 20M
max_heap_table_size = 20M
long_query_time = 3
log-slave-updates
log-bin = /home/longxibendi/mysql/3309/binlog/binlog
binlog_cache_size = 4M
binlog_format = MIXED
max_binlog_cache_size = 8M
max_binlog_size = 20M
relay-log-index = /home/longxibendi/mysql/3309/relaylog/relaylog
relay-log-info-file = /home/longxibendi/mysql/3309/relaylog/relaylog
relay-log = /home/longxibendi/mysql/3309/relaylog/relaylog
expire_logs_days = 30
key_buffer_size = 10M
read_buffer_size = 1M
read_rnd_buffer_size = 6M
bulk_insert_buffer_size = 4M
myisam_sort_buffer_size = 8M
myisam_max_sort_file_size = 20M
myisam_repair_threads = 1
myisam_recover

interactive_timeout = 120
wait_timeout = 120

skip-name-resolve
#master-connect-retry = 10
slave-skip-errors = 1032,1062,126,1114,1146,1048,1396

#master-host   =  192.168.1.2
#master-user   =  username
#master-password =  password
#master-port   = 3309

server-id = 1

innodb_additional_mem_pool_size = 16M
innodb_buffer_pool_size = 20M
innodb_data_file_path = ibdata1:56M:autoextend
innodb_file_io_threads = 4
innodb_thread_concurrency = 8
innodb_flush_log_at_trx_commit = 2
innodb_log_buffer_size = 16M
innodb_log_file_size = 20M
innodb_log_files_in_group = 3
innodb_max_dirty_pages_pct = 90
innodb_lock_wait_timeout = 120
innodb_file_per_table = 0

#log-slow-queries = /home/longxibendi/mysql/3309/slow.log
#long_query_time = 10

[mysqldump]
quick
max_allowed_packet = 32M

" > /home/longxibendi/mysql/3309/my.cnf


############################### solve bug http://bugs.mysql.com/bug.php?id=37942 #############################################

mkdir -p /home/longxibendi/mysql/share/mysql/english/
cp /home/longxibendi/mysql/usr/local/mysql/share/mysql/english/errmsg.sys /home/longxibendi/mysql/share/mysql/english/

############################### start MySQL Server #############################################
/bin/sh /home/longxibendi/mysql/usr/local/mysql/bin/mysqld_safe --defaults-file=/home/longxibendi/mysql/3309/my.cnf 2>&1 > /dev/null &
############################### try use MySQL Server #############################################
/home/longxibendi/mysql/usr/local/mysql/bin/mysql -u root -p -S /home/longxibendi/mysql/usr/local/mysql/sock/mysql.sock -P3309 -h127.0.0.1 -e "show databases;"

四.成功安裝結(jié)果

當(dāng)安裝完成之后,直接回車,就可以看到以下信息
 information_schema
 mysql
 test

以上就是mysql 5.1.45編譯安裝配置方法,希望對(duì)大家的學(xué)習(xí)有所幫助。

相關(guān)文章

  • MySQL數(shù)據(jù)庫本地事務(wù)原理解析

    MySQL數(shù)據(jù)庫本地事務(wù)原理解析

    事務(wù)是數(shù)據(jù)庫系統(tǒng)中的重要概念,了解這一律念是以正確的方式開發(fā)和數(shù)據(jù)庫交互的應(yīng)用程序的前提,今天通過本文給大家介紹MySQL數(shù)據(jù)庫本地事務(wù)原理解析,感興趣的朋友一起看看吧
    2022-01-01
  • Mysql 索引該如何設(shè)計(jì)與優(yōu)化

    Mysql 索引該如何設(shè)計(jì)與優(yōu)化

    這篇文章主要介紹了Mysql 索引該如何設(shè)計(jì)與優(yōu)化,幫助大家更好的理解和學(xué)習(xí)使用MySQL,感興趣的朋友可以了解下
    2021-03-03
  • MySQL與Mongo簡(jiǎn)單的查詢實(shí)例代碼

    MySQL與Mongo簡(jiǎn)單的查詢實(shí)例代碼

    本文通過一個(gè)實(shí)例給大家用MySQL和mongodb分別寫一個(gè)查詢,本文圖片并茂給大家介紹的非常詳細(xì),感興趣的朋友參考下吧
    2016-10-10
  • Mysql using使用詳解

    Mysql using使用詳解

    本文主要介紹了Mysql using使用詳解,文中通過示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2022-02-02
  • 十個(gè)實(shí)用且簡(jiǎn)單的MySQL函數(shù)

    十個(gè)實(shí)用且簡(jiǎn)單的MySQL函數(shù)

    本文給大家分享了十個(gè)實(shí)用且簡(jiǎn)單的MySQL函數(shù),需要的朋友可以參考下
    2018-01-01
  • MySQL?數(shù)據(jù)庫中數(shù)據(jù)表超詳細(xì)的基本操作

    MySQL?數(shù)據(jù)庫中數(shù)據(jù)表超詳細(xì)的基本操作

    這篇文章主要介紹了MySQL?數(shù)據(jù)庫中數(shù)據(jù)表的基本操作,下面文章會(huì)從創(chuàng)建表的基本語法伊利舉例說明概括全篇數(shù)據(jù)表的基本操作詳情,需要的小伙伴可以參考一下文章的具體內(nèi)容,希望對(duì)你有所幫助
    2021-12-12
  • mysql5.7.23版本安裝教程及配置方法

    mysql5.7.23版本安裝教程及配置方法

    這篇文章主要介紹了mysql5.7.23版本安裝教程及配置方法,需要的朋友可以參考下
    2018-11-11
  • mysql 5.7.18 免安裝版window配置方法

    mysql 5.7.18 免安裝版window配置方法

    這篇文章主要為大家詳細(xì)介紹了mysql 5.7.18 免安裝版window配置方法,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2017-06-06
  • Mysql數(shù)據(jù)庫性能優(yōu)化二

    Mysql數(shù)據(jù)庫性能優(yōu)化二

    這篇文章主要介紹了Mysql數(shù)據(jù)庫性能優(yōu)化二 的相關(guān)資料,需要的朋友可以參考下
    2016-04-04
  • 詳解如何在阿里云服務(wù)器安裝Mysql數(shù)據(jù)庫

    詳解如何在阿里云服務(wù)器安裝Mysql數(shù)據(jù)庫

    這篇文章主要介紹了詳解如何在阿里云服務(wù)器安裝Mysql數(shù)據(jù)庫,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2020-11-11

最新評(píng)論