ubuntu에 PostgreSQL 설치 -1
Ubuntu 에서 PostgreSQL을 사용해야하는 상황. 1. PostgreSQL 설치 sudo apt update sudo apt install postgresql sudo apt install postgrewql-contrib 2. PostgreSQL 상태 확인 sudo systemctl status postgresql 3. PostgreSQL 에 로그인 sudo -u postgres psql 4. 새로운 DB , user 생성 CREATE DATABASE mydatabase; CREATE USER myuser WITH ENCRYPTED PASSWORD 'mypassword'; GRANT ALL PRIVILEGES ON DATABASE mydatabase TO myuser; 5. psql shell..
2023.09.01