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…
Install Python 3.6 on Ubuntu 20.4
여러 버전 정보를 갖고 있는 repository를 추가한 후 해당 버전을 설치한다. $ sudo add-apt-repository ppa:deadsnakes/ppa $ sudo apt-get update $ sudo apt install python3.6 ※ 기존 python3를 변경할 경우 Ubuntu 20.4 내에서 호환성 문제가 발생할 수 있다.
To add add-apt-repository command on Ubuntu
add-apt-repository 명령어가 없을 경우 apt를 사용하여 패키지를 설치한다. $ sudo apt-get update $ sudo apt-get install software-properties-common
sudo: 명령이 없습니다. 해결방법
/etc/sudoers 파일에 명령을 실행할 경로를 추가한다. /etc/sudoers 파일은 읽기 전용이므로 모드를 변경한 후 수정한다. $ sudo chmod 640 /etc/sudoers # change mode $ sudo vim /etc/sudoers # execute vim editor # 거의 하단부의 secure_path에 실행할 명령어의 경로를 추가한다. 예) /usr/local/bin…
Install modules and libraries for FAE2.1
1. Server requirements for linux Python development package 설치 $ rpm -qa | grep python-devel # 설치여부확인 $ yum install python-devel # 설치 postgresql devel 설치 $ sudo yum install postgresql-server postgresql-devel postgresql-contrib
Install firefox
파이어폭스가 설치되어 있는지 확인한다. $ type -a firefox or $ firefox or /usr/bin/firefox /* check exists the file */ 이전 버전이 설치되어 있을 경우 이전 버전을 삭제한다. (이전 버전이 있으면 그냥 업데이트하면 된다.) $ sudo yum remove firefox # Redhat…