ubuntu 오프라인 패키지 설치 mysql
4145 단어 ubuntu오프라인 패키지 설치 mysql자바Web
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 일 체험, 나중에 방법 이 있 을 거 라 고 믿 습 니 다)
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Ubuntu 22.04에 캐디 설치 - HostnExtra이 기사에서는 Ubuntu 22.04에 Caddy를 설치하는 방법을 설명합니다. 이 문서는 설치 프로세스를 안내하고 웹 사이트를 호스팅합니다. Caddy 웹 서버는 Go로 작성된 오픈 소스 웹 서버입니다. Ubunt...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.