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..
PostgreSQL repository 설치 및 활성화 $ sudo yum -y install https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm $ sodu yum -y update PostgreSQL repository 활성화 확인 $ sudo yum repolist Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile * base: mirror.kakao.com * epel: ftp.jaist.ac.jp * extras: mirror.kakao.com * updates: mirror.naverc..
https://github.com/hpcugent/logstash-patterns/blob/master/files/grok-patterns GitHub - hpcugent/logstash-patterns: Grok patterns for parsing and structuring log messages with logstash Grok patterns for parsing and structuring log messages with logstash - GitHub - hpcugent/logstash-patterns: Grok patterns for parsing and structuring log messages with logstash github.com
1. 공개 서명키 다운로드 및 설치 $ sudo rpm --import https://artifacts.elastic.co/GPG-KEY-elasticsearch 2. /etc/yum.repos.d/ 폴더에 elastic.repo 파일을 만들고 vi 편집기로 연다. $ sudo vi /etc/yum.repos.d/elastic.repo 아래의 내용을 저장 한다. [elasticsearch] name=Elasticsearch repository for 7.x packages baseurl=https://artifacts.elastic.co/packages/7.x/yum gpgcheck=1 gpgkey=https://artifacts.elastic.co/GPG-KEY-elasticsearch enabled=..
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
참고 : https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/doc/settings/nginx.md * 이 글은 이미 인증서를 가지고 있는 경우의 내용이며 yum을 사용하여 gitlab를 설치한 경우 이다. * 그리고 아래의 내용은 gitlab.example.com 도메인 사용한 예시 이다. 인증서 파일 복사 (root 권한 사용) # etc/gitlab/ssl 폴더 생성 $ mkdir -p /etc/gitlab/ssl # 인증서 파일을 gitlab의 ssl 폴더에 복사 $ cp [인증서 파일].crt /etc/gitlab/ssl $ cp [인증서 파일].key /etc/gitlab/ssl GitLab 설정 파일 열기 (root 권한 사용) $ vi /e..
Backup yum을 사용하여 gitlab을 설치한 경우 아래의 명령 사용 $ sudo gitlab-rake gitlab:backup:create위 명령을 실행하고 나면 백업된 파일은 /var/opt/gitlab/bakups 폴더에 생성 된다. 소스를 가져다 gitlab을 설치한 경우 아래의 명령 사용 $ sudo -u git -H bundle exec rake gitlab:backup:create RAILS_ENV=production 복구는 나중에 직접 해본 후 글을 남길 예정... 참고: https://gitlab.com/gitlab-org/gitlab-ce/blob/master/doc/raketasks/backup_restore.md
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 (..
※ 아래의 모든 과정은 root 권한으로 진행 해야 한다. 1. 우선 yum update를 한다. $ yum update 2. docker의 yum repo를 추가 한다. $ vi /etc/yum.repos.d/docker.repo #아래 내용을 추가하고 저장한다. [dockerrepo] name=Docker Repository baseurl=https://yum.dockerproject.org/repo/main/centos/$releasever/ enabled=1 gpgcheck=1 gpgkey=https://yum.dockerproject.org/gpg 3. docker package를 설치 한다.$ yum install docker-engine 4. docker를 실행한다.$ systemctl st..
CentOS 7 부터는 iptables 대신 firewalld를 기본으로 사용하는듯 하다. 방화벽에 포트 및 서비스 추가 # 서비스 추가 # 서비스 명에는 http, https, ssh 와 같은 서비스를 넣어주면 된다. # $ firewall-cmd --permanent --zone=public --add-service=서비스명 $ firewall-cmd --permanent --zone=public --add-service=http # 포트 추가 # $ firewall-cmd --permanent --zone=public --add-port=포트번호/프로토콜 $ firewall-cmd --permanent --zone=public --add-port=80/tcp 방화벽에 포트 및 서비스 삭제 # 서비스..
먼저 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 설치 방법
sudo 명령을 사용하기 위해서는 /etc/sudoers 파일을 수정 해야 한다. ## Sudoers allows particular users to run various commands as ## the root user, without needing the root password. ## ## Examples are provided at the bottom of the file for collections ## of related commands, which can then be delegated out to particular ## users or groups. ## ## This file must be edited with the 'visudo' command. ## Host Aliases ## ..
> hdparm -tT /dev/sda /dev/sda: Timing cached reads: 20724 MB in 2.00 seconds = 10375.81 MB/sec Timing buffered disk reads: 304 MB in 3.02 seconds = 100.60 MB/sec > hdparm --help hdparm - get/set hard disk parameters - version v6.6 Usage: hdparm [options] [device] .. Options: -a get/set fs readahead -A set drive read-lookahead flag (0/1) -b get/set bus state (0 == off, 1 == on, 2 == tristate) -B..
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