1. Python 버전확인
$ python --version
Python 3.9.20
2. Python 새로설치
$ wget https://www.python.org/ftp/python/3.12.8/Python-3.12.8.tgz <- 이렇게는 보안때문에 다운로드 안된다. PC에서 다운받아 업로드한다.
$ tar xvf Python-3.12.8.tgz
$ cd Python-3.12.8
$ ./configure --enable-optimizations
C compiler 없다는 에러 발생하면
$ sudo dnf install gcc
$ ./configure --enable-optimizations
$ make
$ sudo make install
3. 새 버전 Python로 연결
$ cd /usr/bin
$ sudo ln -sfn /usr/local/bin/python3.12 /usr/bin/python3
4. pip 설치
$ sudo yum install python-pip
$ which pip
/usr/bin/pip
$ pip --version
pip 24.3.1 from /usr/local/lib/python3.12/site-packages/pip (python 3.12)
5. VM에 Terminal에서 SSH나 FTP로 접근하기 위한 SSH키 생성하기
- Mac terminal에서 key파일 보관할 디렉토리로 이동후 아래 명령어로 public key, private key생성한다.
ssh-keygen -t rsa -b 4096 -f id_rsa_4096 -C “VM에 생성된 계정”
- id_rsa_4096.pub, id_rsa_4096 이렇게 2개파일 생성된다.
- 공개키 (pub 파일)내용을 GCP 메타데이터의 SSH에 추가
- 개인키가 있는 디렉토리에서 terminal 에서 아래 명령으로 gpc vm으로 접속
ssh -i id_rsa_4096 VM생성계정@외부ip
- FileZilla에서 접속할 Site추가하고, 아래 이미지 처럼
Protocol : SFTP
Host : 외부IP
Logon Type : Key file
User : VM생성계정
Key file : Private Key파일을 지정하여 접속한다.
6. VM서버에 접속후 App Root Directory 설정
# App Root Directory 생성
$ mkdir pl.menggle.com
$ cd pl.menggle.com
# 가상환경생성
$ python -m venv .venv
# 가상환경진입
$ source .venv/bin/activate
# 패키지 설치
(.venv) $ pip install -r pkg_list.txt
7. FTP로 Source Upload
8. Static File Collection
(.venv) python manage.py collectstatic --settings=base.settings.settings_prd
9. Nginx 설치, uWsgi Service 등록
$ sudo yum -y install nginx
$ which nginx
/usr/sbin/nginx
$ nginx -v
nginx version: nginx/1.20.1
참조 : https://blog.daonelab.com/post/35/1639/
이렇게 셋팅하고 uWsig systemctl start 테스트 오류발생
- selinux 설정변경
vi /etc/selinux/config #SELINUX=enforcing SELINUX=disabled
- nginx 설정변경
$ sudo su - $ vi /etc/nginx/nginx.conf user : nginx <- root로 변경
- VM 재가동으로 해결
10. GCP SQL메뉴에서 PostgreSQL 인스턴스 생성, 내부IP(VM에서 접속용), 외부IP(개발용 DBeaver접속용, 보안상 좋지않다.) 설정한다.
11. App에서 사용할 데이터베이스 및 사용자를 미리 생성
12. VM에서 접속 테스트
- 공개IP로 접속
$ gcloud sql connect 생성한DATABASE --user=postgres Allowlisting your IP for incoming connection for 5 minutes...done. Connecting to database with SQL user [postgres].Password: psql (13.18, server 17.2) WARNING: psql major version 13, server major version 17. Some psql features might not work. SSL connection (protocol: TLSv1.3, cipher: TLS_AES_256_GCM_SHA384, bits: 256, compression: off) Type "help" for help. postgres=>
- 내부IP로 접속
$ psql "sslmode=require hostaddr=DB내부ip user=postgres dbname=생성한DATABASE" Password for user postgres: psql (13.18, server 17.2) WARNING: psql major version 13, server major version 17. Some psql features might not work. SSL connection (protocol: TLSv1.3, cipher: TLS_AES_256_GCM_SHA384, bits: 256, compression: off) Type "help" for help. 생성한DATABASE=>
13. 기본 DB 생성
(.venv) $ python manage.py migrate --settings=base.settings.settings_prd
14. 관리자 계정 생성
(.venv) $ python manage.py createsuperuser --settings=base.settings.settings_prd
Username (leave blank to use 'axxxx_xxxx_xx'):
Email address:
Password:
Password (again):
Superuser created successfully.
15. App Table이 안만들어 졌다면 각 App마다 makemigrations, migrate 한다.
(.venv) $ python manage.py makemigrations userSession --settings=base.settings.settings_prd
Migrations for 'userSession':
userSession/migrations/0001_initial.py
+ Create model UserSession
+ Create model UserSessionTrace
(.venv) $ python manage.py makemigrations parkingLot --settings=base.settings.settings_prd
Migrations for 'parkingLot':
parkingLot/migrations/0001_initial.py
+ Create model ApiArea
+ Create model ApiAreaRecvLog
(.venv) $ python manage.py migrate userSession --settings=base.settings.settings_prd
Operations to perform:
Apply all migrations: userSession
Running migrations:
Applying userSession.0001_initial... OK
(.venv) $ python manage.py migrate parkingLot --settings=base.settings.settings_prd
Operations to perform:
Apply all migrations: parkingLot
Running migrations:
Applying parkingLot.0001_initial... OK
16. SSL 적용 (Certbot설치)
참조 : https://blog.daonelab.com/post/58/1983/
17. Redis Server설치
$ yum install epel-release
$ snap install redis
$ redis-cli
127.0.0.1:6379> info
# Server
redis_version:6.2.16
$ systemctl list-unit-files --type service | grep redis
$ systemctl enable redis
$ systemctl start redis
$ systemctl status redis
# ip주소, 비번설정
$ vi /etc/redis/redis.conf
$ systemctl restart redis