Others/Ubuntu and Linux

Nginx은 무료 오픈 소스 웹서버 소프트 웨어가벼움과 높은 성능 목표로 웹서버, 리버스 프록시, 메일 프록시 등의 기능 가지고 있음 1. 일단 설치부터 (django_site) ubuntu@ip-172-31-11-144:~$ sudo apt-get install nginx 1-1. 버전도 확인 (django_site) ubuntu@ip-172-31-11-144:~$ nginx -v nginx version: nginx/1.18.0 (Ubuntu) 설치하면 나면 [ 출처 ] https://leffept.tistory.com/283?category=950490 [Django]Django + Nginx + Gunicorn 연동하기 2 지난번 시간에 Django + Gunicorn 을 연동하였으니 이제는 Ng..
gunicorn은 WSGI(Web Server Gateway Interface) 서버 WSGI란 python으로 작성된 웹 어플리케이션과 python으로 작성된 서버 사이의 약속된 인터페이스 또는 규칙 개발이 아니라 서버에 필요한 도구라 로컬 환경에 설치할 필요 없당 그래서 1. 서버 환경에 gunicon 설치 ! (django_site) ubuntu@ip-172-31-11-144:~/django_site$ pip install gunicorn Collecting gunicorn Downloading gunicorn-20.1.0-py3-none-any.whl (79 kB) |████████████████████████████████| 79 kB 7.7 MB/s Requirement already sati..
https://kitle.xyz/post/58/ (django_site) ubuntu@ip-172-31-11-144:~/django_site$ python manage.py shell Python 3.10.4 (main, Mar 31 2022, 08:41:55) [GCC 7.5.0] on linux Type "help", "copyright", "credits" or "license" for more information. (InteractiveConsole) >>> >>> >>> from django.contrib.auth.models import User >>> superusers = User.objects.filter(is_superuser=True) >>> superusers >>> Keyboar..
1. mysql 설치 (django_site) ubuntu@ip-172-31-11-144:~/django_site$ sudo apt-get install mysql-server 그럼 주르륵 설치 2. mysql 실행 / mysql 접속 -> 비밀번호 입력 (django_site) ubuntu@ip-172-31-11-144:~/django_site$ sudo systemctl start mysql (django_site) ubuntu@ip-172-31-11-144:~/django_site$ sudo /usr/bin/mysql -u root -p Enter password: 2-1. 사용자 정보 확인 -> 사용할 계정 만들기 -> 다시 사용자 정보 확인하기 #사용자 정보 확인 mysql> SELECT Use..
(오류 발생) ImportError: Couldn't import Django. Are you sure it's installed and available on your PYTHONPATH environment variable? Did you forget to activate a virtual environment? 에러 메세지를 확인하니 장고 가져올 수 없다, 가상환경 활성화 되어있냐 라는 뜻인디 , , pip list를 통해 django가 깔려 있는지 확인 해보니 없었당 가상 환경을 만든 후 django 를 install 안했나봄 pip install django 해서 django 설치 설치 후 (django_site) ubuntu@ip-172-31-11-144:~/django_site$ python..
print(blue)