1. 在MySQL源代码目录下新建脚本 install.sh,把下面的代码添加到这个脚本中: #!/bin/bash##################################################### MySQL Server Config ###########################################################Determine to install M
1. 在MySQL源代码目录下新建脚本 install.sh,把下面的代码添加到这个脚本中:<code> #!/bin/bash ############################################ ######### MySQL Server Config ############## ############################################ #Determine to install MySQL server #"0" means do not install server programs INST_SERVER=1 #MySQL installation path INST_PATH="/usr/local/mysql" #Define the ports of MySQL installation, intput strings of #PORT with whitespace separated. #e.g. "3306 3307" means install two MySQL servers: # The first server will be installed to $INST_PATH/1 and listen 3306 port. # The second server will be installed to $INST_PATH/2 and listen 3307 port. # ... ... INST_PORTS="3306" #The management server information MGM_HOST="192.168.1.253" MGM_PORT="2200" ########################################### ######### MySQL Cluster Config ############ ########################################### #Determine to install cluster #"0" means do not install cluster programs INST_CLUSTER=1 #Define COMPUTERs in config.ini, intput strings of HostName with #whitespace separated. #The Id attribute is auto increment and start with 1. #e.g. "192.168.1.253 192.168.252" will generate the following code # [COMPUTER] # Id=1 # HostName=192.168.1.253 # [COMPUTER] # Id=2 # HostName=192.168.1.252 COMPUTERS="192.168.1.253 192.168.1.252" #Define MGMs in config.ini, intput strings of HostName with whitespace separated. #e.g. "192.168.1.253 192.168.252" will generate the following code # [MGM] # HostName=192.168.1.253 # [MGM] # HostName=192.168.1.252 MGMS="192.168.1.253" #Define DBs in config.ini, intput ids of ExecuteOnComputer with whitespace separated. #e.g. "1 2" will generate the following code # [DB] # ExecuteOnComputer=1 # [DB] # ExecuteOnComputer=2 DBS="1" #Define APIs in config.ini, intput ids of ExecuteOnComputer with whitespace separated. #e.g. "1 0 1 2" will generate the following code # [API] # ExecuteOnComputer=1 # [API] # [API] # ExecuteOnComputer=1 # [API] # ExecuteOnComputer=2 APIS="1 0 2 2" ###################################################################### ########## Starting to install programs, do not modify them! ######### ###################################################################### echo "Starting to install programs" > install.log #Find installation path if [ $# -gt 0 ] then INST_PATH="$1" else INST_PATH="/usr/local/mysql" fi if [ 0 -lt $INST_SERVER ] then echo "Now, installing the MySQL servers..." #Loop to install mysql servers INSTALLED_SERVER_COUNT=1 for PORT in $INST_PORTS do #Define the current mysql server installation path MYSL_PATH=$INST_PATH/$INSTALLED_SERVER_COUNT #Configure mysql server echo "Exec ./configure --prefix=$MYSL_PATH --with-pthread --with-unix-socket-path=$MYSL_PATH/var/mysql.sock --with-mysqld-user=root --with-tcp-port=$PORT --with-charset=gbk --with-ndbcluster" >> install.log ./configure --prefix=$MYSL_PATH --with-pthread --with-unix-socket-path=$MYSL_PATH/var/mysql.sock --with-mysqld-user=root --with-tcp-port=$PORT --with-charset=gbk --with-ndbcluster #Make mysql server echo "Exec make && make install" >> install.log make && make install #Create var directory for mysql data mkdir -p $MYSL_PATH/var #Create my.cnf echo "Create $MYSL_PATH/var/my.cnf" >> install.log echo "[client]" > $MYSL_PATH/var/my.cnf echo "port=$PORT" >> $MYSL_PATH/var/my.cnf echo "socket=$MYSL_PATH/var/mysql.sock" >> $MYSL_PATH/var/my.cnf echo "" >> $MYSL_PATH/var/my.cnf echo "[mysqld]" >> $MYSL_PATH/var/my.cnf echo "ndbcluster" >> $MYSL_PATH/var/my.cnf echo "ndb_connectstring=host=$MGM_HOST:$MGM_PORT" >> $MYSL_PATH/var/my.cnf echo "user=root" >> $MYSL_PATH/var/my.cnf echo "port=$PORT" >> $MYSL_PATH/var/my.cnf echo "basedir=$MYSL_PATH/" >> $MYSL_PATH/var/my.cnf echo "datadir=$MYSL_PATH/var/" >> $MYSL_PATH/var/my.cnf echo "socket=$MYSL_PATH/var/mysql.sock" >> $MYSL_PATH/var/my.cnf echo "default-character-set=gbk" >> $MYSL_PATH/var/my.cnf echo "default-storage-engine=INNODB" >> $MYSL_PATH/var/my.cnf echo "max_connections=500" >> $MYSL_PATH/var/my.cnf echo "" >> $MYSL_PATH/var/my.cnf echo "query_cache_size=33M" >> $MYSL_PATH/var/my.cnf echo "table_cache=1520" >> $MYSL_PATH/var/my.cnf echo "tmp_table_size=16M" >> $MYSL_PATH/var/my.cnf echo "thread_cache=38" >> $MYSL_PATH/var/my.cnf echo "" >> $MYSL_PATH/var/my.cnf echo "#MyISAM Specific options" >> $MYSL_PATH/var/my.cnf echo "#skip-myisam" >> $MYSL_PATH/var/my.cnf echo "" >> $MYSL_PATH/var/my.cnf echo "#INNODB Specific options" >> $MYSL_PATH/var/my.cnf echo "#skip-innodb" >> $MYSL_PATH/var/my.cnf chmod 755 $MYSL_PATH/var/my.cnf #Install mysql database echo "Exec $MYSL_PATH/bin/mysql_install_db" >> install.log $MYSL_PATH/bin/mysql_install_db #Create mysql control script if [ -e $MYSL_PATH/share/mysql/mysql.server ] then #Use default mysql control script #Create mysql server start script echo "Create $MYSL_PATH/start" >> install.log echo "$MYSL_PATH/share/mysql/mysql.server start" > $MYSL_PATH/start echo "Chmod 755 $MYSL_PATH/start" >> install.log chmod 755 $MYSL_PATH/start #Create mysql server stop script echo "Create $MYSL_PATH/stop" >> install.log echo "$MYSL_PATH/share/mysql/mysql.server stop" > $MYSL_PATH/stop echo "Chmod 755 $MYSL_PATH/stop" >> install.log chmod 755 $MYSL_PATH/stop #Create mysql server restart script echo "Create $MYSL_PATH/restart" >> install.log echo "$MYSL_PATH/share/mysql/mysql.server restart" > $MYSL_PATH/restart echo "Chmod 755 $MYSL_PATH/restart" >> install.log chmod 755 $MYSL_PATH/restart else #Use custom mysql control script #Create mysql server start script echo "Create $MYSL_PATH/start" >> install.log echo "$MYSL_PATH/libexec/mysqld &" > $MYSL_PATH/start echo "Chmod 755 $MYSL_PATH/start" >> install.log chmod 755 $MYSL_PATH/start #Create mysql server stop script echo "Create $MYSL_PATH/stop" >> install.log echo "$MYSL_PATH/bin/mysqladmin -u root -p shutdown" > $MYSL_PATH/stop echo "Chmod 755 $MYSL_PATH/stop" >> install.log chmod 755 $MYSL_PATH/stop #Create mysql server restart script echo "Create $MYSL_PATH/restart" >> install.log echo "$MYSL_PATH/bin/mysqladmin -u root -p shutdown" > $MYSL_PATH/restart echo "$MYSL_PATH/libexec/mysqld &" >> $MYSL_PATH/restart echo "Chmod 755 $MYSL_PATH/restart" >> install.log chmod 755 $MYSL_PATH/restart fi #Clean mysql server to get ready for the next installation echo "Exec make clean" >> install.log make clean INSTALLED_SERVER_COUNT=$(($INSTALLED_SERVER_COUNT + 1)) done echo "Configurations! MySQL servers has been installed successfully." echo "" echo "1. To start mysql server, use the following command:" echo " cd <mysql_installation_path>" echo " ./start" echo "" echo "2. To stop mysql server, use the following command:" echo " cd <mysql_installation_path>" echo " ./stop" echo "" echo "3. To restart mysql server, use the following command:" echo " cd <mysql_installation_path>" echo " ./restart" fi #Install cluster programs if [ 0 -lt $INST_CLUSTER ] then if [ -e $INST_PATH/1 ] then echo "Now, installing the cluster programs..." #Define the cluster installation path CLST_PATH=$INST_PATH/cluster #Create cluster directory echo "Exec mkdir -p $CLST_PATH" >> install.log mkdir -p $CLST_PATH #Copy cluster binaries echo "Exec cp $INST_PATH/1/bin/ndb* $CLST_PATH/" >> install.log cp $INST_PATH/1/bin/ndb* $CLST_PATH/ echo "Exec cp $INST_PATH/1/libexec/ndb* $CLST_PATH/" >> install.log cp $INST_PATH/1/libexec/ndb* $CLST_PATH/ #Create config.ini echo "Create $CLST_PATH/config.ini" >> install.log #Write default global configuration echo "[TCP DEFAULT]" >> $CLST_PATH/config.ini echo "" >> $CLST_PATH/config.ini echo "[MGM DEFAULT]" >> $CLST_PATH/config.ini echo "" >> $CLST_PATH/config.ini echo "[DB DEFAULT]" >> $CLST_PATH/config.ini echo " NoOfReplicas=1" >> $CLST_PATH/config.ini echo "" >> $CLST_PATH/config.ini echo "[API DEFAULT]" >> $CLST_PATH/config.ini echo "" >> $CLST_PATH/config.ini #Write computers configuration COMPUTER_ID=1 for COMPUTER in $COMPUTERS do echo "[COMPUTER]" >> $CLST_PATH/config.ini echo " Id=$COMPUTER_ID" >> $CLST_PATH/config.ini echo " HostName=$COMPUTER" >> $CLST_PATH/config.ini echo "" >> $CLST_PATH/config.ini COMPUTER_ID=$(($COMPUTER_ID + 1)) done #Write management server configuration for MGM in $MGMS do echo "[MGM]" >> $CLST_PATH/config.ini echo " HostName=$MGM" >> $CLST_PATH/config.ini echo "" >> $CLST_PATH/config.ini done #Write storage nodes configuration for DB in $DBS do echo "[DB]" >> $CLST_PATH/config.ini echo " ExecuteOnComputer=$DB" >> $CLST_PATH/config.ini echo "" >> $CLST_PATH/config.ini done #Write mysql servers configuration for API in $APIS do echo "[API]" >> $CLST_PATH/config.ini if [ 0 -ne $API ] then echo " ExecuteOnComputer=$API" >> $CLST_PATH/config.ini fi echo "" >> $CLST_PATH/config.ini done #Create Ndb.cfg echo "Create $CLST_PATH/Ndb.cfg" >> install.log echo "host=$MGM_HOST:$MGM_PORT" >> $CLST_PATH/Ndb.cfg echo "" >> $CLST_PATH/Ndb.cfg echo "Configurations! Cluster programs has been installed successfully." echo "" echo "1. To start management server(MGM), use the following command:" echo " cd $CLST_PATH" echo " ./ndb_mgmd" echo "" echo "2. To start stroage node(DB), use the following command:" echo " cd $CLST_PATH" echo " ./ndbd" echo "" echo "3. To manage the cluster, use the following command:" echo " cd $CLST_PATH" echo " ./ndb_mgm" echo "" echo "4. Else, nothing to do.;)" echo "" echo "Enjoy yourself." else echo "Cluster installation has been stopped, the reason is:"; echo " No database server installed." echo "So you can not use cluster programs in this machine!" fi fi </mysql_installation_path></mysql_installation_path></mysql_installation_path></code> |
3. 执行该脚本:./install.sh 或者 ./install

InnoDB使用redologs和undologs确保数据一致性和可靠性。1.redologs记录数据页修改,确保崩溃恢复和事务持久性。2.undologs记录数据原始值,支持事务回滚和MVCC。

EXPLAIN命令的关键指标包括type、key、rows和Extra。1)type反映查询的访问类型,值越高效率越高,如const优于ALL。2)key显示使用的索引,NULL表示无索引。3)rows预估扫描行数,影响查询性能。4)Extra提供额外信息,如Usingfilesort提示需要优化。

Usingtemporary在MySQL查询中表示需要创建临时表,常见于使用DISTINCT、GROUPBY或非索引列的ORDERBY。可以通过优化索引和重写查询避免其出现,提升查询性能。具体来说,Usingtemporary出现在EXPLAIN输出中时,意味着MySQL需要创建临时表来处理查询。这通常发生在以下情况:1)使用DISTINCT或GROUPBY时进行去重或分组;2)ORDERBY包含非索引列时进行排序;3)使用复杂的子查询或联接操作。优化方法包括:1)为ORDERBY和GROUPB

MySQL/InnoDB支持四种事务隔离级别:ReadUncommitted、ReadCommitted、RepeatableRead和Serializable。1.ReadUncommitted允许读取未提交数据,可能导致脏读。2.ReadCommitted避免脏读,但可能发生不可重复读。3.RepeatableRead是默认级别,避免脏读和不可重复读,但可能发生幻读。4.Serializable避免所有并发问题,但降低并发性。选择合适的隔离级别需平衡数据一致性和性能需求。

MySQL适合Web应用和内容管理系统,因其开源、高性能和易用性而受欢迎。1)与PostgreSQL相比,MySQL在简单查询和高并发读操作上表现更好。2)相较Oracle,MySQL因开源和低成本更受中小企业青睐。3)对比MicrosoftSQLServer,MySQL更适合跨平台应用。4)与MongoDB不同,MySQL更适用于结构化数据和事务处理。

MySQL索引基数对查询性能有显着影响:1.高基数索引能更有效地缩小数据范围,提高查询效率;2.低基数索引可能导致全表扫描,降低查询性能;3.在联合索引中,应将高基数列放在前面以优化查询。

MySQL学习路径包括基础知识、核心概念、使用示例和优化技巧。1)了解表、行、列、SQL查询等基础概念。2)学习MySQL的定义、工作原理和优势。3)掌握基本CRUD操作和高级用法,如索引和存储过程。4)熟悉常见错误调试和性能优化建议,如合理使用索引和优化查询。通过这些步骤,你将全面掌握MySQL的使用和优化。

MySQL在现实世界的应用包括基础数据库设计和复杂查询优化。1)基本用法:用于存储和管理用户数据,如插入、查询、更新和删除用户信息。2)高级用法:处理复杂业务逻辑,如电子商务平台的订单和库存管理。3)性能优化:通过合理使用索引、分区表和查询缓存来提升性能。


热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

AI Hentai Generator
免费生成ai无尽的。

热门文章

热工具

记事本++7.3.1
好用且免费的代码编辑器

禅工作室 13.0.1
功能强大的PHP集成开发环境

SecLists
SecLists是最终安全测试人员的伙伴。它是一个包含各种类型列表的集合,这些列表在安全评估过程中经常使用,都在一个地方。SecLists通过方便地提供安全测试人员可能需要的所有列表,帮助提高安全测试的效率和生产力。列表类型包括用户名、密码、URL、模糊测试有效载荷、敏感数据模式、Web shell等等。测试人员只需将此存储库拉到新的测试机上,他就可以访问到所需的每种类型的列表。

DVWA
Damn Vulnerable Web App (DVWA) 是一个PHP/MySQL的Web应用程序,非常容易受到攻击。它的主要目标是成为安全专业人员在合法环境中测试自己的技能和工具的辅助工具,帮助Web开发人员更好地理解保护Web应用程序的过程,并帮助教师/学生在课堂环境中教授/学习Web应用程序安全。DVWA的目标是通过简单直接的界面练习一些最常见的Web漏洞,难度各不相同。请注意,该软件中

适用于 Eclipse 的 SAP NetWeaver 服务器适配器
将Eclipse与SAP NetWeaver应用服务器集成。