nginx에서 proxy_pass 사용 시 SELinux 오류 처리 방법
nginx에서 proxy_pass 를 사용하여 포트 포워딩을 시킬 경우 SELinux 보안 오류가 발생한다. 해당 오류가 발생하여 nginx가 동작하지 않을 경우 다음 명령어를 사용하여 설정을 활성화 시킨다.
Configuration remote connection to Sql Server
원격에 있는 SQL Server에 연결하려 할 때 연결이 되지 않는 경우가 있다. 연결이 되지 않을 때 확인해야 할 사항은 다음과 같다.SQL Server에 원격 연결 허용을 설정한다. 1. SQL Server의 원격 연결 허용을 설정한다. SQL Server > Properties 창을 띄운다. Connections…
Install simple static HTTP server
간단한 스크립트 테스트를 위해 HTTP server가 필요했는데 IIS 설정하기도 귀찮고 해서 찾아보니 npm http-server 가 있었다. 설치 및 사용 방법은 다음 링크를 참조하라. https://www.npmjs.com/package/http-server
Installing fonts on CentOS 7
리눅스에 폰트 설치하는 방법이다.
The GPG keys listed for the “MySQL 8.0 Community Server” repository are already installed but they are not correct for this package.
개발 서버에 mysql을 설치하려는데 다음과 같은 오류 메시지가 출력됐다. 처음 보는 오류 메시지였다. The GPG keys listed for the “MySQL 8.0 Community Server” repository are already installed but they are not correct for this package.Check that the correct key URLs…
Access denied for user ‘root’@’localhost’ (using password yes) MySQL
MySQL 사용 시 root 계정 비밀번호를 잃어버렸을 때 당혹스러워 이리저리 검색을 하다가 문제를 하결하였다. 해당 내용은 다음 링크와 같다. https://bobcares.com/blog/access-denied-for-user-rootlocalhost-using-password-yes-mysql/ mysql 서비스를 중지한다.sudo systemctl stop mysqld my.cnf 파일을 수정한다. (나의 경우 파일 경로 : /etc/my.cnf)파일을 찾을 수 없을 경우 sudo…
Install Pycharm
https://www.jetbrains.com/pycharm/download/#section=linux 링크로 이동 Community 다운로드 압축풀기 $ sudo tar xvfz pycharm-community-2021.1.3.tar.gz -C /opt/ 스크립트 실행 $ sudo /opt/pycharm-community-2021.1.3/bin/pycharm.sh 만약 Failed to initialize graphics environment 오류가 발생할 경우 $ xhost 명령어 실행 후 다시 스크립트 실행 Tools > Create Desktop Entry… 메뉴 실행하여 메뉴에…
Install Python3 on CentOS 8
패키지 매니저 최신 버전 업데이트 $ sudo dnf update -y Python 버전 확인 후 설치 $ sudo dnf search python3 $ sudo dnf install python39 -y 참고로 현재 최신버전은 Python 3.9.3 설치한 Python 버전(원하는 버전)으로 가상환경 만들기 $ mkdir environments…
install mod_wsgi
WSGI를 이용하여 django를 아파치 웹 서버에 배포 시 계속해서 Internal Server Error가 발생했는데 httpd 로그를 보니 “Apache/2.4.6 (CentOS) mod_wsgi/3.4 Python/2.7.5 configured — resuming normal operations”와 같이 CentOS를 설치하면 기본으로 설치되어 있는 Python 2.7.5로 구성되어 있어 내부 오류가 발생했음. 현재 설치한 Python…