분류 전체보기: 204개의 글

[MySql] 설치 자료

Posted by nkjok
2018. 12. 4. 21:38 자료실/IT-자료실
반응형

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

 

반응형

[윈도우10] 정품인증 로고 없애기

Posted by nkjok
2018. 12. 3. 17:09 OS&기타/Windows
반응형

관리자 권한으로 cmd 창을 연다.

시작       ->       cmd       ->        마우스우클릭(관리자권한실행)     


slmgr /rearm


입력한다. (재부팅)

반응형

[루분투_데비안] 기본 웹 브라우저 변경 방법

Posted by nkjok
2018. 12. 3. 16:33 OS&기타/Linux
반응형
root@sens:~# update-alternatives --config x-www-browser
Press <enter> to keep the current choice[*], or type selection number:  번호 입력






root@sens:~# update-alternatives --config x-www-browser
대체 항목 x-www-browser에 대해 (/usr/bin/x-www-browser 제공) 2개 선택이 있습니다.

  선택       경로                         우선순� 상태
------------------------------------------------------------
  0            /usr/bin/google-chrome-stable   200       자동 모드
* 1            /usr/bin/firefox                40        수동 모드
  2            /usr/bin/google-chrome-stable   200       수동 모드

Press <enter> to keep the current choice[*], or type selection number:   1


반응형

[우분투] VNC 설정 방법

Posted by nkjok
2018. 11. 30. 23:17 OS&기타/Linux
반응형

- SSH root 로그인 허용

vi /etc/ssh/sshd_config
PermitRootLogin yes

- 이네이블 방법

systemctl enable ssh.service


 


   53  apt-get -y install gnome-panel
   54  apt-get -y install gnome-settings-daemon
   55  apt-get -y install metacity
   56  apt-get -y install vnc4server
   57  vncserver
- 전용 비밀번호
   58  vi /root/.vnc/xstartup
- 추가해줘야함
gnome-panel &
gnome-settings-daemon &
metacity &
nautilus &
   59  reboot
   60  ufw allow 5901/tcp
   61  vncserver -kill :1
   62  vncserver :1


반응형

[원격데스크톱] 그래픽카드(GPU) 사용하기

Posted by nkjok
2018. 11. 4. 06:23 OS&기타/Windows
반응형

gpedit.msc


관리 템플릿 / Windows 구성 요소 / 터미널 서비스 / 원격 데스크톱 세션 호스트 / 원격 세션 환경 

/ RemoteFX for Windwos Server 2008 R2 / Configure RemoteFX(RemoteFX 구성) 사용안함 -> 사용함으로 변경.



반응형

[우분투] 터미널에서 adobe flash player 설치방법

Posted by nkjok
2018. 11. 3. 19:16 OS&기타/Linux
반응형

apt-get install flashplugin-installer


adobe flash player  설치방법

반응형

BitComet_1.27_setup

Posted by nkjok
2018. 11. 3. 19:10 자료실/기타-자료실
반응형
반응형

Mysql - mysqldump시 LOCK TABLES 오류

Posted by nkjok
2018. 10. 15. 17:34 자격증관련/리눅스마스터2급
반응형

mysqldump로 DB 백업시 아래와 같은 오류 메세지가 발생하며 중단되는 경우가 있습니다.

 

 

- mysqldump: got errer : 1146 : table '테이블명' doesn't exist when using LOCK TABLES

 

원인 : 해당 table에 lock이 걸려 있어 덤프가 안되는 문제 입니다.

조치 : mysqldump에 --lock-all-table 옵션을 추가 하여 진행 하면 정상적으로 백업 됩니다.

 

Ex) mysqldump -u [User] -p --lock-all-tables [DBName] > [dump file name].sql


반응형