ubuntu 오프라인 패키지 설치 mysql

1 Preliminary Note
Because we must run all the steps from this tutorial with root privileges, we can either prepend all commands in this tutorial with the string sudo, or we become root right now by typing
sudo su

2 Disabling AppArmor
Your manually installed MySQL 5.6.8 might refuse to start if AppArmor is running, therefore we disable AppArmor:
/etc/init.d/apparmor stop
update-rc.d -f apparmor remove
apt-get remove apparmor apparmor-utils

3 Installing MySQL 5.6.8rc1 (Linux Generic)
First we create a user and group called mysql:
groupadd mysql
useradd -r -g mysql mysql

Next install the libaio1 package:
apt-get install libaio1

다음: 다운로드 및 설치
다운로드: Oracle 홈 페이지 에서 오프라인 패 키 지 를 다운로드 할 수 있 습 니 다. 제 가 다운로드 한 것 은 my sql - 5.6.12 - linux - glibc 2.5 - i686. tar. gz 입 니 다.
오프라인 패 키 지 를 / usr / local 로 복사 합 니 다.
Unpack MySQL, rename the directory to mysql, and make it owned by the user and group mysql:
tar xvfz mysql-5.6.12-linux-glibc2.5-i686.tar.gz
mv mysql-5.6.12-linux-glibc2.5-i686 mysql
cd mysql
chown -R mysql .
chgrp -R mysql .

Run
scripts/mysql_install_db --user=mysql

여기에서 오류 가 발생 할 수 있 습 니 다:
Installing MySQL system tables..../bin/mysqld: error whileloading shared libraries: libaio.so.1: cannot open shared objectfile: No such file or directory
해결 방법:
이것 은 libaio 의 의존 라 이브 러 리 를 설치 해 야 한 다 는 것 을 설명 합 니 다.
sudo apt-get install libaio-dev

그리고 다시 실행:
scripts/mysql_install_db --user=mysql

to create the necessary databases (like the mysql database):
Change some ownerships:
chown -R root .
chown -R mysql data

MySQL uses the my.cnf file inside /usr/local/mysql, so we don't have to create one on our own. If you want to change MySQL settings, you can do it in that file.
The downloaded MySQL package comes with the init script mysql.server which we copy to /etc/init.d as follows:
cp support-files/mysql.server /etc/init.d/mysql.server

It is already executable, so we don't have to change permissions.
We can now start MySQL 5.6 as follows:
/etc/init.d/mysql.server start

To make MySQL start automatically at boot time, run the following command:
update-rc.d mysql.server defaults

The MySQL commands (like mysql, mysql_secure_installation, etc.) are located in the /usr/local/mysql/bin directory which is not in the PATH which means we would have to call these commands with the full or relative path which is cumbersome. To avoid this, we create the following symlink so that we can call all MySQL commands without a path:
ln -s /usr/local/mysql/bin/* /usr/local/bin/

Finally, we should set a MySQL root password:
mysql_secure_installation

root@server1:/usr/local/mysql# mysql_secure_installation
MySQL 서비스 시작:                      sudo start mysql
      MySQL 서비스 정지:                      sudo stop mysql
MySQL 관리자 비밀번호 변경:    sudo mysqladmin -u root password newpassword
      원 격 접근 설정 (정상 적 인 경우 mysql 에서 사용 하 는 3306 포트 는 IP 127.0.0.0.1 에서 만 감청 되 며, 다른 IP 의 접근 을 거부 합 니 다 (netstat 를 통 해 볼 수 있 습 니 다). 로 컬 모니터링 을 취소 합 니 다.
    my. cnf 파일 수정 필요:)   
      sudo vi /etc/mysql/my.cnf
      bid - address = 127.0.0.1 / / 이 내용 을 찾 아 설명 합 니 다.
4) MySQL 설치 후 디 렉 터 리 구조 분석 (이 구 조 는 apt - get install 온라인 설치 상황 만 사용):
     데이터베이스 저장 디 렉 터 리:             /var/lib/mysql/
     관련 프로필 저장 디 렉 터 리:         /usr/share/mysql
     관련 명령 저장 디 렉 터 리:            /usr / bin (mysqladmin mysqldump 등 명령)
     시작 단계 저장 디 렉 터 리:           /etc/rc.d/init.d/
5) MySQL 그래 픽 관리 소프트웨어
     일반적으로 사용 하 는 것 은 두 가지 가 비교적 좋 습 니 다. 하 나 는 개원 이 고 하 나 는 상업 비용 입 니 다.
    오픈 소스: MySQL Workbench  (구체 적 인 사용 소 개 는 제 가 사용 하면 서 천천히 정리 하 겠 습 니 다)
    비 즈 니스: Navicat (유 료, 30 일 체험, 나중에 방법 이 있 을 거 라 고 믿 습 니 다)

좋은 웹페이지 즐겨찾기