国产chinesehd精品酒店,邱淑贞aa极毛片,国产在线色视频,玖玖爱zh综合伊人久久

網(wǎng)站首頁(yè)
手機(jī)版

如何在linux上面安裝mariadb總結(jié) 使用yum安裝mariadb服務(wù)器安裝命令

更新時(shí)間:2023-07-16 00:13:02作者:未知

如何在linux上面安裝mariadb總結(jié) 使用yum安裝mariadb服務(wù)器安裝命令

1、下載MariaDB(mariadb-5.5.31.tar.gz)

[root@zabbix_server opt]# wget http://www.cmake.org/files/v2.8/cmake-2.8.5.tar.gz

2、安裝MariaDB

[root@zabbix_server opt]# tar xzvf mariadb-5.5.31.tar.gz
[root@zabbix_server cmake-2.8.5]# cd cmake-2.8.5
[root@zabbix_server cmake-2.8.5]# ./bootstrap
[root@zabbix_server cmake-2.8.5]# make
[root@zabbix_server cmake-2.8.5]# make install

3、安裝MariaDB所需軟件包

yum install libaio-devel -y
cmake . -DCMAKE_INSTALL_PREFIX=/usr/local/mariamysql
-DWITH_INNOBASE_STORAGE_ENGINE=1 -DWITH_FEDERATED_STORAGE_ENGINE=1
-DENABLED_LOCAL_INFILE=1 -DEXTRA_CHARSETS=all -DDEFAULT_CHARSET=utf8
-DDEFAULT_COLLATION=utf8_general_ci -DWITH_DEBUG=0
-DBUILD_CONFIG=mysql_release -DFEATURE_SET=community
-DWITH_EMBEDDED_SERVER=OFF
cp support-files/my-innodb-heavy-4G.cnf /etc/my.cnf
/usr/local/mariamysql/scripts/mysql_install_db
--basedir=/usr/local/mariamysql/ --datadir=/usr/local/mariamysql/data/
--user=mysql
/usr/local/mariamysql/bin/mysqld_safe --user=mysql &

4、查看mariadb是否安裝成功

[root@zabbix_server mariadb-5.5.31]# ps -ef | grep mysql
root 9010 17846 0 16:08 pts/0 00:00:00 /bin/sh /usr/local/mariamysql/bin/mysqld_safe --user=mysql
mysql 9459 9010 0 16:08 pts/0 00:00:01 /usr/local/mariamysql/bin/mysqld --basedir=/usr/local/mariamysql --datadir=/data/database --plugin-dir=/usr/local/mariamysql/lib/plugin --user=mysql --log-error=/data/database/zabbix_server.err --open-files-limit=40960 --pid-file=zabbix_server.pid --socket=/data/database/mysql.sock --port=3306
root 10391 17846 0 16:16 pts/0 00:00:00 grep mysql

[root@zabbix_server mariadb-5.5.31]# mysql
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 41
Server version: 5.5.31-MariaDB-log MariaDB Server

Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
This software comes with ABSOLUTELY NO WARRANTY. This is free software,
and you are welcome to modify and redistribute it under the GPL v2 license

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
root@zabbix ((none)) > show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
| zabbix |
+--------------------+
3 rows in set (0.00 sec)
root@zabbix ((none)) >

本文標(biāo)簽: 所需  軟件包  sec  

為您推薦

如何在linux上面安裝mariadb總結(jié) 使用yum安裝mariadb服務(wù)器安裝命令

如何在linux上面安裝mariadb總結(jié) 1.下載MariaDB(mariadb-5.5.31.tar.gz) [root@zabbix_server opt

2023-07-16 00:13

Ubuntu(Linux)下如何配置IP地址

Ubuntu(Linux)下如何配置IP地址 一.使用命令設(shè)置ubuntu的ip地址 1.修改配置文件blacklist.conf禁用IPV6: sudo vi

2023-07-16 00:12

兩臺(tái)Linux主機(jī)如何建立ssh信任關(guān)系?(如何讓兩臺(tái)linux機(jī)器在同一局域網(wǎng)里面)

兩臺(tái)Linux主機(jī)如何建立ssh信任關(guān)系? 在管理的服務(wù)器列表里或許有很多臺(tái)Linux主機(jī),它們之后互相訪問(wèn)以及做很多的事情相互作用,如果它們之間都是使用密碼來(lái)

2023-07-16 00:11

如何升級(jí)linux系統(tǒng)glibc版本?(centos 升級(jí)glibc)

如何升級(jí)linux系統(tǒng)glibc版本? 小編提供了如下的四種方法,但是,小編建議大家不要自己更新 glibc .因?yàn)樗窍到y(tǒng)基礎(chǔ)庫(kù).他如果出現(xiàn)函數(shù)接口變化(版本

2023-07-16 00:11

Linux系統(tǒng)\Centos沒(méi)有網(wǎng)卡eth0配置文件怎么辦

Linux系統(tǒng)\Centos沒(méi)有網(wǎng)卡eth0配置文件怎么辦 一.臨時(shí)解決辦法 1大家都知道linux下面設(shè)置ip是 ifconfig 命令,通過(guò)下面命令即可臨時(shí)

2023-07-16 00:10

linux里,如何查某個(gè)進(jìn)程使用了哪些文件?

linux里,如何查某個(gè)進(jìn)程使用了哪些文件? 只查看該進(jìn)程:ps -ef | grep 11345 查看該進(jìn)程打開(kāi)的文件:lsof -p 11345 查看內(nèi)存分

2023-07-16 00:10