반응형 OS91 gcp ssh 접속 불가 오픈스택으로 이미지를 설치하고 세팅하고 있던 도중 원격 접속을 시도해보려고 하니 에러메세지가 표출되며 접속이 안되는 문제가 있었습니다. 문제가 있었던 이미지는 아래와 같습니다. 이미지 : CentOS 6.8 64비트 처음에 PUTTY로 접근을 시도할시 아래의 메세지가 나타났습니다. disconnected no supported authentication methods available (server sent publickey gssapi-with-mic) 우선 자세히 확인하기 위해서는 콘솔로 접근을 해야하며 콘솔로 접근이 되었다면 vi /etc/ssh/sshd_config로 이동하여 /를 누른후 PasswordAuthentication를 적고 엔터를 눌러찾습니다. PasswordAuthentication.. 2019. 6. 27. CentOS 7에서 Postgresql 9.6.2, Postgis 2.3.2-1 설치(인터넷 환경) 인터넷이 되는 환경에서 PostgreSQL(9.6.2)와 PostGIS(2.3.2)를 설치하는 절차입니다.PostgreSQL 9.6.2 설치1. PostgreSQL과 PostGIS 설치를 위한 yum 저장소 업데이트rpm -Uvh https://yum.postgresql.org/9.6/redhat/rhel-7-x86_64/pgdg-centos96-9.6-3.noarch.rpm2. PostgreSQL 설치yum install postgresql96-server postgresql963. 데이터베이스 저장소 생성./postgresql96-setup initdb4. PostgreSQL 서비스 실행systemctl enable postgresql-9.6 systemctl enable postgresql-9.6... 2019. 3. 5. CentOS 7 방화벽 해제 1. samba라는 서비스 방화벽 조건에서 제외 firewall-cmd --permanent --zone=public --add-service=sambafirewall-cmd --reload 2. 방화벽 해제systemctl stop firewalld 3. 리부팅시 방화벽 실행 하지 않게 하기systemctl disable firewalld 출처: https://blog.miyam.net/49 [낭만 프로그래머] 2019. 2. 16. CentOS에 Python 3.x 설치하는 방법 20 Feb 2018 | Python CentOS에 Python 3.x 설치Repository를 yum에 추가$ sudo yum install -y https://centos7.iuscommunity.org/ius-release.rpm yum search로 python 3.x 버전 확인아래 명령어를 수행하면 python3으로 시작하는 라이브러리들을 확인할 수 있습니다.$ yum search python3필요 라이브러리들 설치$ sudo yum install -y python36u python36u-libs python36u-devel python36u-pip Python 설치 및 버전 확인$ python -V Python 2.7.5 $ python3.6 -V Python 3.6.4기본적으로 python 명령어는 Python 2.x를 가리키고.. 2019. 2. 16. 이전 1 2 3 4 5 6 7 8 ··· 23 다음 반응형