[MySql] 설치 자료
http://ftp.kaist.ac.kr/mysql/Downloads/MySQL-5.1/
사이트에서 아래와 동일파일명 의 1.73버전으로 다운로드(파일안에 바이너리 참조)
mysql-5.1.72-linux-x86_64-glibc23.tar.gz
- 파일링크
https://drive.google.com/file/d/1nPADFRhg_LK_9deOrD7YKYIPNyRiMOiK/view?usp=sharing
가이드 (참조)
shell> cd /opt
shell> tar zxvf mysql-5.1.73-linux-x86_64-glibc23 mysql
shell> groupadd mysql
shell> useradd -r -g mysql mysql
shell> cd /usr/local
shell> ln -s /opt/mysql-5.1.73-linux-x86_64-glibc23 mysql
shell> cd mysql
shell> chown -R mysql .
shell> chgrp -R mysql .
shell> scripts/mysql_install_db --user=mysql
shell> chown -R root .
shell> chown -R mysql data
# Next command is optional
shell> cp support-files/my-medium.cnf /etc/my.cnf
shell> bin/mysqld_safe --user=mysql &
# Next command is optional
shell> cp support-files/mysql.server /etc/init.d/mysql.server (mysql.server 이름을 mysql로 하니 실행이되지않았음, 확인필요)
chmod 755 /etc/init.d/mysql.server (안하니까 되고 하니까 안되던데 확인필요_기존에755로되있음)
chkconfig --add mysql.server (chkconfig에 등록하는거같음)
vi /etc/ld.so.conf.d/mysql-x86_64.conf (생성)
- /usr/local/mysql/bin (입력)
ldconfig
vi /etc/profile
- PATH=/usr/local/mysql/bin:$PATH (입력)
source /etc/profile
service mysql.server start
/usr/local/mysql/bin/mysql (실행방법)
--------------------------------------------------------------------------------------
예제)
cd /etc/ld.so.conf.d/
[root@MetaDB ld.so.conf.d]# ll
합계 4
-r--r--r--. 1 root root 324 2016-05-11 02:32 kernel-2.6.32-642.el6.x86_64.conf
vi mysql-x86_64.conf (생성)
[root@MetaDB ld.so.conf.d]# ll
합계 8
-r--r--r--. 1 root root 324 2016-05-11 02:32 kernel-2.6.32-642.el6.x86_64.conf
-rw-r--r--. 1 root root 21 2018-12-05 01:58 mysql-x86_64.conf
ldconfig
'자료실 > IT-자료실' 카테고리의 다른 글
[윈도우] CMD/DOS 문서 편집기 "nano" 사용법 (0) | 2019.02.01 |
---|---|
[윈도우] 원격 데스크톱 클라이언트 파일 (0) | 2019.01.01 |
GPD-WIN 리눅스 관련 자료 (0) | 2018.09.29 |
Cisco Packet Tracer 7.1 (0) | 2018.08.22 |
Cisco Packet Tracer 5.3.3 (0) | 2018.08.22 |