Ubuntu下安装MySQL5.6.23_MySQL
Ubuntu下安装MySQL 5.6.23
1.下载对应Linux-generic的源码包,解压,将解压后的文件夹重命名为mysql,移动到/usr/local目录下;
tar –xzf mysql-5.6.23-linux-glibc2.5-x86_64.tar.gz
mv mysql-5.6.23-linux-glibc2.5-x86_64 mysql
sudo mv mysql /usr/local
2.创建用户mysql和组mysql
vonzhou@de16-C6100: sudo groupadd mysql
vonzhou@de16-C6100: sudo useradd -r -g mysql mysql
3、进入mysql目录
vonzhou@de16-C6100: sudo cd /usr/local/mysql
4、将mysql文件夹own及grp变更为mysql
vonzhou@de16-C6100:/usr/local/mysql$ sudo chown -R mysql .
vonzhou@de16-C6100:/usr/local/mysql$ sudo chgrp -R mysql .
5、执行mysql安装脚本,设置用户
vonzhou@de16-C6100:/usr/local/mysql$ sudo ./scripts/mysql_install_db --user=mysql
Installing MySQL system tables..../bin/mysqld: error while loading shared libraries: libaio.so.1: cannot open shared object file: No such file or directory
vonzhou@de16-C6100:/usr/local/mysql$ sudo apt-get install libaio-dev
(..........)
vonzhou@de16-C6100:/usr/local/mysql$ sudo ./scripts/mysql_install_db --user=mysql
Installing MySQL system tables...2015-03-18 21:22:46 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
2015-03-18 21:22:46 5284 [Note] InnoDB: Using atomics to ref count buffer pool pages
2015-03-18 21:22:46 5284 [Note] InnoDB: The InnoDB memory heap is disabled
2015-03-18 21:22:46 5284 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
2015-03-18 21:22:46 5284 [Note] InnoDB: Memory barrier is not used
2015-03-18 21:22:46 5284 [Note] InnoDB: Compressed tables use zlib 1.2.3
2015-03-18 21:22:46 5284 [Note] InnoDB: Using Linux native AIO
2015-03-18 21:22:46 5284 [Note] InnoDB: Using CPU crc32 instructions
2015-03-18 21:22:46 5284 [Note] InnoDB: Initializing buffer pool, size = 128.0M
2015-03-18 21:22:46 5284 [Note] InnoDB: Completed initialization of buffer pool
2015-03-18 21:22:46 5284 [Note] InnoDB: The first specified data file ./ibdata1 did not exist: a new database to be created!
2015-03-18 21:22:46 5284 [Note] InnoDB: Setting file ./ibdata1 size to 12 MB
2015-03-18 21:22:46 5284 [Note] InnoDB: Database physically writes the file full: wait...
2015-03-18 21:22:46 5284 [Note] InnoDB: Setting log file ./ib_logfile101 size to 48 MB
2015-03-18 21:22:46 5284 [Note] InnoDB: Setting log file ./ib_logfile1 size to 48 MB
2015-03-18 21:22:47 5284 [Note] InnoDB: Renaming log file ./ib_logfile101 to ./ib_logfile0
2015-03-18 21:22:47 5284 [Warning] InnoDB: New log files created, LSN=45781
2015-03-18 21:22:47 5284 [Note] InnoDB: Doublewrite buffer not found: creating new
2015-03-18 21:22:47 5284 [Note] InnoDB: Doublewrite buffer created
2015-03-18 21:22:47 5284 [Note] InnoDB: 128 rollback segment(s) are active.
2015-03-18 21:22:47 5284 [Warning] InnoDB: Creating foreign key constraint system tables.
2015-03-18 21:22:47 5284 [Note] InnoDB: Foreign key constraint system tables created
2015-03-18 21:22:47 5284 [Note] InnoDB: Creating tablespace and datafile system tables.
2015-03-18 21:22:47 5284 [Note] InnoDB: Tablespace and datafile system tables created.
2015-03-18 21:22:47 5284 [Note] InnoDB: Waiting for purge to start
2015-03-18 21:22:48 5284 [Note] InnoDB: 5.6.23 started; log sequence number 0
2015-03-18 21:22:52 5284 [Note] Binlog end
2015-03-18 21:22:52 5284 [Note] InnoDB: FTS optimize thread exiting.
2015-03-18 21:22:52 5284 [Note] InnoDB: Starting shutdown...
2015-03-18 21:22:53 5284 [Note] InnoDB: Shutdown completed; log sequence number 1625977
OK
Filling help tables...2015-03-18 21:22:53 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
2015-03-18 21:22:53 5307 [Note] InnoDB: Using atomics to ref count buffer pool pages
2015-03-18 21:22:53 5307 [Note] InnoDB: The InnoDB memory heap is disabled
2015-03-18 21:22:53 5307 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
2015-03-18 21:22:53 5307 [Note] InnoDB: Memory barrier is not used
2015-03-18 21:22:53 5307 [Note] InnoDB: Compressed tables use zlib 1.2.3
2015-03-18 21:22:53 5307 [Note] InnoDB: Using Linux native AIO
2015-03-18 21:22:53 5307 [Note] InnoDB: Using CPU crc32 instructions
2015-03-18 21:22:53 5307 [Note] InnoDB: Initializing buffer pool, size = 128.0M
2015-03-18 21:22:53 5307 [Note] InnoDB: Completed initialization of buffer pool
2015-03-18 21:22:53 5307 [Note] InnoDB: Highest supported file format is Barracuda.
2015-03-18 21:22:53 5307 [Note] InnoDB: 128 rollback segment(s) are active.
2015-03-18 21:22:53 5307 [Note] InnoDB: Waiting for purge to start
2015-03-18 21:22:53 5307 [Note] InnoDB: 5.6.23 started; log sequence number 1625977
2015-03-18 21:22:53 5307 [Note] Binlog end
2015-03-18 21:22:53 5307 [Note] InnoDB: FTS optimize thread exiting.
2015-03-18 21:22:53 5307 [Note] InnoDB: Starting shutdown...
2015-03-18 21:22:55 5307 [Note] InnoDB: Shutdown completed; log sequence number 1625987
OK
To start mysqld at boot time you have to copy
support-files/mysql.server to the right place for your system
PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !
To do so, start the server, then issue the following commands:
./bin/mysqladmin -u root password 'new-password'
./bin/mysqladmin -u root -h de16-C6100 password 'new-password'
Alternatively you can run:
./bin/mysql_secure_installation
which will also give you the option of removing the test
databases and anonymous user created by default. This is
strongly recommended for production servers.
See the manual for more instructions.
You can start the MySQL daemon with:
cd . ; ./bin/mysqld_safe &
You can test the MySQL daemon with mysql-test-run.pl
cd mysql-test ; perl mysql-test-run.pl
Please report any problems at http://bugs.mysql.com/
The latest information about MySQL is available on the web at
http://www.mysql.com
Support MySQL by buying support/licenses at http://shop.mysql.com
WARNING: Found existing config file ./my.cnf on the system.
Because this file might be in use, it was not replaced,
but was used in bootstrap (unless you used --defaults-file)
and when you later start the server.
The new default config file was created as ./my-new.cnf,
please compare it with your file and take the changes you need.
6.上述步骤安装完成后,把该目录的所有权变更回来,除了data目录可以供我们普通用户操作;
vonzhou@de16-C6100:/usr/local/mysql$ sudo chown -R root .
vonzhou@de16-C6100:/usr/local/mysql$ sudo chown -R mysql data
7. 可以改变默认配置文件的位置;
vonzhou@de16-C6100:/usr/local/mysql$ sudo cp support-files/my-default.cnf /etc/my.cnf
8.后台启动mysql server;
vonzhou@de16-C6100:/usr/local/mysql$ sudo bin/mysqld_safe --user=mysql &
[1] 5375
vonzhou@de16-C6100:/usr/local/mysql$ 150318 21:29:24 mysqld_safe Logging to '/usr/local/mysql/data/de16-C6100.err'.
150318 21:29:24 mysqld_safe Starting mysqld daemon with databases from /usr/local/mysql/data
9. 设置MySQL root权限的密码;
vonzhou@de16-C6100:/usr/local/mysql$ sudo bin/mysqladmin -u root password '你的密码'
Warning: Using a password on the command line interface can be insecure.
10. 把执行脚本移到init.d目录下;
vonzhou@de16-C6100:/usr/local/mysql$ sudo cp support-files/mysql.server /etc/init.d/mysql.server
11.此时可以查看运行状态,可以用service命令的status/start/stop/restart控制;
vonzhou@de16-C6100:/usr/local/mysql$ sudo service mysql.server status
* MySQL running (5477)
12.设置开机启动(就是插入到那些开机会自动运行的脚本中),取消自启动的话defaults -> remove ;
vonzhou@de16-C6100:/usr/local/mysql$ sudo update-rc.d mysql.server defaults
Adding system startup for /etc/init.d/mysql.server ...
/etc/rc0.d/K20mysql.server -> ../init.d/mysql.server
/etc/rc1.d/K20mysql.server -> ../init.d/mysql.server
/etc/rc6.d/K20mysql.server -> ../init.d/mysql.server
/etc/rc2.d/S20mysql.server -> ../init.d/mysql.server
/etc/rc3.d/S20mysql.server -> ../init.d/mysql.server
/etc/rc4.d/S20mysql.server -> ../init.d/mysql.server
/etc/rc5.d/S20mysql.server -> ../init.d/mysql.server
13.搞个符号连接,方便命令的输入;
vonzhou@de16-C6100:/usr/local/mysql$ sudo ln -s /usr/local/mysql/bin/mysql /usr/local/bin/mysql
14. 此时,就按照好了,可以简单测试下。
vonzhou@de16-C6100:/usr/local/mysql$ mysql
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.6.23 MySQL Community Server (GPL)
Copyright (c) 2000, 2015, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| test |
+--------------------+
2 rows in set (0.00 sec)
mysql> exit
Bye

핫 AI 도구

Undresser.AI Undress
사실적인 누드 사진을 만들기 위한 AI 기반 앱

AI Clothes Remover
사진에서 옷을 제거하는 온라인 AI 도구입니다.

Undress AI Tool
무료로 이미지를 벗다

Clothoff.io
AI 옷 제거제

AI Hentai Generator
AI Hentai를 무료로 생성하십시오.

인기 기사

뜨거운 도구

메모장++7.3.1
사용하기 쉬운 무료 코드 편집기

SublimeText3 중국어 버전
중국어 버전, 사용하기 매우 쉽습니다.

스튜디오 13.0.1 보내기
강력한 PHP 통합 개발 환경

드림위버 CS6
시각적 웹 개발 도구

SublimeText3 Mac 버전
신 수준의 코드 편집 소프트웨어(SublimeText3)

뜨거운 주제











이 기사에서는 MySQL의 "공유 라이브러리를 열 수 없음"오류를 다룹니다. 이 문제는 MySQL이 필요한 공유 라이브러리 (.so/.dll 파일)를 찾을 수 없음에서 비롯됩니다. 솔루션은 시스템 패키지 M을 통한 라이브러리 설치 확인과 관련이 있습니다.

이 기사는 Docker에서 MySQL 메모리 사용을 최적화합니다. 모니터링 기술 (Docker Stats, Performance Schema, 외부 도구) 및 구성 전략에 대해 설명합니다. 여기에는 Docker 메모리 제한, 스와핑 및 CGroups와 함께 포함됩니다

이 기사는 MySQL의 Alter Table 문을 사용하여 열 추가/드롭 테이블/열 변경 및 열 데이터 유형 변경을 포함하여 테이블을 수정하는 것에 대해 설명합니다.

이 기사는 Linux에 MySQL을 직접 설치하는 것과 Phpmyadmin이없는 Podman 컨테이너 사용을 비교합니다. 각 방법에 대한 설치 단계에 대해 자세히 설명하면서 Podman의 격리, 이식성 및 재현성의 장점을 강조하지만 또한

이 기사는 자체 포함 된 서버리스 관계형 데이터베이스 인 SQLITE에 대한 포괄적 인 개요를 제공합니다. SQLITE의 장점 (단순성, 이식성, 사용 용이성) 및 단점 (동시성 제한, 확장 성 문제)에 대해 자세히 설명합니다. 기음

기사는 인증서 생성 및 확인을 포함하여 MySQL에 대한 SSL/TLS 암호화 구성에 대해 설명합니다. 주요 문제는 자체 서명 인증서의 보안 영향을 사용하는 것입니다. [문자 수 : 159]

이 안내서는 Homebrew를 사용하여 MacOS에 여러 MySQL 버전을 설치하고 관리하는 것을 보여줍니다. 홈 브루를 사용하여 설치를 분리하여 갈등을 방지하는 것을 강조합니다. 이 기사에는 설치, 서비스 시작/정지 서비스 및 Best Pra에 대해 자세히 설명합니다

기사는 MySQL Workbench 및 Phpmyadmin과 같은 인기있는 MySQL GUI 도구에 대해 논의하여 초보자 및 고급 사용자를위한 기능과 적합성을 비교합니다. [159 자].
