Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

No Format
$ sudo yum install docker

Docker 서비스 실행하기
$ sudo service docker start

부팅했을 때 자동으로 실행하기
$ sudo chkconfig docker on

최신 공식방법은 아래참고:

https://docs.docker.com/engine/installation/linux/docker-ce/centos/


git 설치

Panel

yum install git

http://artwook.tistory.com/261

...

No Format
create user 'user명'@'%' identified by '패스워드';
create user 'user명'@'localhost' identified by '패스워드';
flush privileges;


create database DB명;
grant all privileges on DB명.* to 'user명'@'%';
grant all privileges on DB명.* to 'user명'@'localhost';

그외 원격접속허용 : httpshttp://zetawikiall-record.tistory.com/wiki/MySQL_%EC%9B%90%EA%B2%A9_%EC%A0%91%EC%86%8D_%ED%97%88%EC%9A%A995