yum repository 관리에 필요한 yum-utils 를 설치한다. (설치가 안되어있을 경우) $ sudo yum install -y yum-utils Docker repository 추가 $ sudo yum-config-manager \ --add-repo \ https://download.docker.com/linux/centos/docker-ce.repo Docker Engine 설치 $ sudo yum install docker-ce docker-ce-cli containerd.io Docker 실행 $ sudo systemctl start docker hellow-world 이미지로 Docker가 잘 설치 되었는지 확인 $ sudo docker run hello-world Unable to..
Repository 추가 $ sudo yum install -y https://centos7.iuscommunity.org/ius-release.rpm python3 및 필요 라이브러리 설치 $ sudo yum install -y python36u python36u-libs python36u-devel python36u-pip python 버전 확인 $ python3.6 -V Python 3.6.x python3 alias 추가 $ sudo ln -s /bin/python3.6 /bin/python3
1. Install and configure the necessary dependencies On CentOS 7 (and RedHat/Oracle/Scientific Linux 7), the commands below will also open HTTP and SSH access in the system firewall. sudo yum install -y curl policycoreutils-python openssh-server sudo systemctl enable sshd sudo systemctl start sshd sudo firewall-cmd --permanent --add-service=http sudo systemctl reload firewalld Next, install Postf..
먼저 다음 URL을 보고 yum repository를 설정 한다. https://downloads.mariadb.org/mariadb/repositories/#mirror=kaist&distro=CentOS&distro_release=centos7-amd64--centos7&version=10.2 아래의 내용을 /etc/yum.repos.d/MariaDB.repo 파일에 저장 한다. # MariaDB 10.2 CentOS repository list - created 2018-01-11 07:40 UTC # http://downloads.mariadb.org/mariadb/repositories/ [mariadb] name = MariaDB baseurl = http://yum.mariadb.org/10..
# PostgreSQL repository 설치 $ rpm -Uvh https://yum.postgresql.org/10/redhat/rhel-7-x86_64/pgdg-centos10-10-2.noarch.rpm # PostgresQL 설치 $ yum install postgresql10-server postgresql10 # PostgreSQL DB 초기화 $ /usr/pgsql-10/bin/postgresql-10-setup initdb #PostgreSQL 실행 $ systemctl start postgresql-10.service $ systemctl enable postgresql-10.service # postgre 계정 비밀번호 변경 $ su - postgres -c "psql" psql (..
먼저 yum을 이용해 subversion을 설치 한다. # yum install subversion svn의 데이터를 저장할 폴더를 생성 한다. # mkdir /home/svn 위에서 생성한 폴더로 이동한 후 repository를 생성 명령을 실행 한다. # cd /home/svn # svnadmin create repo repository 생성이 완료 되면 해당 폴더 하위에 conf 폴더가 생성 되며 conf 폴더 안에는 svnserve.conf라는 파일이 존재 한다. # vi /home/svn/repo/conf/svnserve.conf 아래는 vi로 열어본 svnserve.conf 파일의 내용이며 아래와 같이 수정 하자. ### This file controls the configuration of ..
# yum install yum-priorities # cd /etc/yum.repos.d/ # wget http://jpackage.org/jpackage50.repo 자바가 설치 되어 있지 않을 경우 자바 설치# yum install java # yum install tomcat6 tomcat6-webapps tomcat6-admin-webapps 참조 사이트 : http://www.how2centos.com/installing-tomcat-6-on-centos-5-5-tutorial/ ※ tomcat7 설치 방법
1. samba 설치확인 > rpm -qa samba 2. yum 으로 samba 설치 > yum install -y samba 3. samba 설정 > vi /etc/samba/smb.conf 파일을 수정 # 캐릭터셋 설정 unix charset = utf-8 dos charset = utf-8 display charset = utf-8 # 워크그룹 설정 workgroup = WORKGROUP server string = Samba Server Version %v # 접속 허용 IP 설정 (192.168.0.* 허용, 123.123.123.123 허용) hosts allow = 192.168.0. 123.123.123.123 # 특정 유저 허용 security = user passdb backend =..
- Total
- Today
- Yesterday