真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

MySQL云服務(wù)器應(yīng)用及cmake報(bào)錯(cuò)解決辦法

下文給大家?guī)?lái)有關(guān)MySQL云服務(wù)器應(yīng)用及cmake報(bào)錯(cuò)解決辦法內(nèi)容,相信大家一定看過類似的文章。我們給大家?guī)?lái)的有何不同呢?一起來(lái)看看正文部分吧,相信看完MySQL云服務(wù)器應(yīng)用及cmake報(bào)錯(cuò)解決辦法你一定會(huì)有所收獲。

創(chuàng)新互聯(lián)是一家集網(wǎng)站建設(shè),濠江企業(yè)網(wǎng)站建設(shè),濠江品牌網(wǎng)站建設(shè),網(wǎng)站定制,濠江網(wǎng)站建設(shè)報(bào)價(jià),網(wǎng)絡(luò)營(yíng)銷,網(wǎng)絡(luò)優(yōu)化,濠江網(wǎng)站推廣為一體的創(chuàng)新建站企業(yè),幫助傳統(tǒng)企業(yè)提升企業(yè)形象加強(qiáng)企業(yè)競(jìng)爭(zhēng)力??沙浞譂M足這一群體相比中小企業(yè)更為豐富、高端、多元的互聯(lián)網(wǎng)需求。同時(shí)我們時(shí)刻保持專業(yè)、時(shí)尚、前沿,時(shí)刻以成就客戶成長(zhǎng)自我,堅(jiān)持不斷學(xué)習(xí)、思考、沉淀、凈化自己,讓我們?yōu)楦嗟钠髽I(yè)打造出實(shí)用型網(wǎng)站。

1.MySQL數(shù)據(jù)庫(kù)使用場(chǎng)景介紹

目前Web主流架構(gòu)是LAMP(Linux+Apache+Mysql+PHP)和LNMP(Linux+Nginx+Mysql+PHP), Mysql更是得到各位IT運(yùn)維、DBA的青睞。

MySQL常用的兩大引擎有MyISAM和InnoDB,那么它們之間的區(qū)別是什么,根據(jù)不同場(chǎng)合該如何進(jìn)行選擇。

MyISAM類型的數(shù)據(jù)庫(kù)表強(qiáng)調(diào)的是性能,其執(zhí)行速度比InnoDB類型更快,但不提供事務(wù)支持,不支持外鍵,如果執(zhí)行大量的查詢操作,MyISAM引擎是更好的選擇。

InnoDB提供事務(wù)支持事務(wù)、外部鍵、行級(jí)鎖等高級(jí)數(shù)據(jù)庫(kù)功能,執(zhí)行大量的insert或update操作,出于性能方面的考慮,可以使用InnoDB引擎。

2.MySQL數(shù)據(jù)庫(kù)安裝方式

1)CentOS7.X基于YUM方式安裝MySQL的方法,執(zhí)行命令如下:

#yum install mariadb-server mariadb mariadb-libs -y

2)源碼安裝MySQL 5.5.6方法

[root@localhost tools]# wget http://mirrors.sohu.com/mysql/MySQL-5.5/mysql-5.5.62.tar.gz

[root@localhost tools]# tar -zxvf mysql-5.5.62.tar.gz

[root@localhost tools]# yum install cmake ncurses - devel ncurses -y

[root@localhost tools]# cd mysql-5.5.62

[root@localhost mysql-5.5.62]# 

cmake \

-DCMAKE_INSTALL_PREFIX=/usr/local/mysql \

-DMYSQL_UNIX_ADDR=/tmp/mysql.sock \

-DMYSQL_DATADIR=/data/mysql \    #數(shù)據(jù)庫(kù)存放路徑

-DSYSCONFDIR=/etc \        #配置文件路徑

-DMYSQL_USER=mysql \        #運(yùn)行用戶

-DMYSQL_TCP_PORT=3306 \

-DWITH_XTRADB_STORAGE_ENGINE=1 \

-DWITH_MYISAM_STORAGE_ENGINE=1 \          #開啟MyISAM引擎支持

-DWITH_INNOBASE_STORAGE_ENGINE=1 \       #開啟InnoDB引擎支持

-DWITH_MEMORY_STORAGE_ENGINE=1 \

-DWITH_READLINE=1 \

-DENABLED_LOCAL_INFILE=1 \

-DWITH_PARTITION_STORAGE_ENGINE=1 \

-DWITH_EXTRA_CHARSETS=1 \

-DEXTRA_CHARSETS=all \           #安裝擴(kuò)展所有字符集

-DDEFAULT_CHARSET=utf8 \       #默認(rèn)字符集

-DDEFAULT_COLLATION=utf8_general_ci \

-DWITH_BIG_TABLES=1 \

-DWITH_DEBUG=0

#cmake報(bào)以下錯(cuò)誤

-- Could NOT find Curses (missing:  CURSES_LIBRARY CURSES_INCLUDE_PATH) 

CMake Error at cmake/readline.cmake:83 (MESSAGE):

 Curses library not found.  Please install appropriate package,

 remove CMakeCache.txt and rerun cmake.On Debian/Ubuntu, package name is libncurses5-dev, on Redhat and derivates it is ncurses-devel.

Call Stack (most recent call first):

 cmake/readline.cmake:118 (FIND_CURSES)

  cmake/readline.cmake:214 (MYSQL_USE_BUNDLED_READLINE)

  CMakeLists.txt:394 (MYSQL_CHECK_READLINE)

[root@localhost mysql-5.5.62]#  rm CMakeCache.txt         #此步驟非常重要

[root@localhost mysql-5.5.62]# yum install bison ncurses-devel git

#cmake               #重新配置環(huán)境

[root@localhost mysql-5.5.62]# make && make install

[root@localhost mysql]# pwd

/usr/local/mysql

[root@localhost mysql]# \cp support-files/my-large.cnf  /etc/my.cnf

[root@localhost mysql]# \cp support-files/mysql.server  /etc/init.d/mysqld

[root@localhost mysql]# chkconfig --add mysqld

[root@localhost mysql]# chkconfig --level 35 mysqld on

[root@localhost mysql]# mkdir -p /data/mysql

[root@localhost mysql]# /usr/local/mysql/scripts/mysql_install_db  --user=mysql --datadir=/data/mysql/ --basedir=/usr/local/mysql/     #初始化數(shù)據(jù)庫(kù)

Installing MySQL system tables...

[root@localhost mysql]# ln -s /usr/local/mysql/bin/ *  /usr/bin/

[root@localhost mysql]# service mysqld restart

 ERROR! MySQL server PID file could not be found!

Starting MySQL.Logging to '/data/mysql/localhost.localdomain.err'.

. SUCCESS! 

[root@localhost mysql]# mysql

Welcome to the MariaDB monitor.  Commands end with ; or \g.

Your MySQL connection id is 1

Server version: 5.5.62-log Source distribution

Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

MySQL [(none)]> 

MySQL [(none)]> use mysql;

Database changed

MySQL [mysql]> update user set password=password('****') where user='root';    #設(shè)置密碼

Query OK, 4 rows affected (0.00 sec)

Rows matched: 4  Changed: 4  Warnings: 0

MySQL [mysql]> flush privileges;

3.MySQL數(shù)據(jù)庫(kù)配置文件詳解

[mysqld]

port            = 3306

socket          = /tmp/mysql.sock   #通信設(shè)置

skip-external-locking

key_buffer_size = 256M       #索引緩沖區(qū)的大小

max_allowed_packet = 1M

table_open_cache = 256     #打開表的緩存數(shù)量

sort_buffer_size = 1M   

read_buffer_size = 1M        #讀查詢操作所能使用的緩沖區(qū)大小

read_rnd_buffer_size = 4M

myisam_sort_buffer_size = 64M

thread_cache_size = 8     #可重用的線程數(shù)

query_cache_size= 16M    #查詢結(jié)果緩沖區(qū)大小

# Try number of CPU's*2 for thread_concurrency

thread_concurrency = 8     #最大線程數(shù),云服務(wù)器邏輯CPU*2

對(duì)于上文關(guān)于MySQL云服務(wù)器應(yīng)用及cmake報(bào)錯(cuò)解決辦法,大家覺得是自己想要的嗎?如果想要了解更多相關(guān),可以繼續(xù)關(guān)注我們的行業(yè)資訊板塊。


名稱欄目:MySQL云服務(wù)器應(yīng)用及cmake報(bào)錯(cuò)解決辦法
標(biāo)題URL:http://weahome.cn/article/gsdodd.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部