📌 오늘의 국제 원자력 동향 2026년 3월 20일(금)
- 로사톰이 부셰르 원전 인근 피격 이후 원전 주변을 '안전섬'으로 설정해야 한다고 촉구하며 중동 전역으로 확산될 수 있는 방사선 사고 위험 관리가 핵심 이슈로 부상함.
- 카자흐스탄 원자력청이 2026년 우선과제로 러시아와의 Balkhash 원전 정부간 협정, EPC 계약, 방사성폐기물 법제 정비를 제시하며 국가 원전 프로그램의 실행 단계 진입 가능성이 커짐.
- 핀란드 정부가 1987년 원자력법을 대체할 신규 법안을 의회에 제출하며 SMR을 포함한 차세대 원전 인허가의 속도와 예측가능성을 높이려는 제도 정비에 착수함.
- 스웨덴 블리칼라가 노르순데트 부지의 적합성 확인 후 6기 규모 SEALER 기반 SMR 발전소 계획을 다음 단계로 넘기며 산업전력 수요 대응형 분산 원전 구상이 구체화됨.
- 체르노빌 부지 운영자가 외부전원 상실 시 핵심 설비를 지원할 2MW 태양광 설비의 준비공사에 착수하며 전시 상황의 원전 부지 복원력 확보가 안전 이슈로 부각됨.
Server (SoftInstall): 두 판 사이의 차이
편집 요약 없음 |
|||
| 37번째 줄: | 37번째 줄: | ||
$ sudo apt-get update # Fetches the list of available updates | $ sudo apt-get update # Fetches the list of available updates | ||
$ sudo apt-get upgrade # Strictly upgrades the current packages | $ sudo apt-get upgrade # Strictly upgrades the current packages | ||
== Mail 설정 == | |||
# apt-get install postfix | |||
# dpkg-reconfigure postfix | |||
Use following values: | |||
1. Internet Site | |||
2. mail.example.com | |||
3. root | |||
4. mail.example.com, localhost.localdomain, localhost | |||
5. No | |||
6. 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128 192.168.0.0/24 | |||
7. 0 | |||
8. + | |||
9. all | |||
Modify /etc/postfix/main.cf | |||
relayhost = 13.125.89.157 ; www.kns.org | |||
Stop and restart | |||
# systemctl stop postfix | |||
# systemctl start postfix | |||
== Reference == | == Reference == | ||
2019년 2월 11일 (월) 06:32 기준 최신판
Web server information.
Amazon
We use Amazon EC2 server instance created by jhchang (Oct. 2016)
- instance type : t2.micro
Amazon EC2 user : "atomic@snu.ac.kr",
The server has "Elastic IP" provided by Amazon. (52.78.94.187) The IP is registered to SNU domain name service as atomic.snu.ac.kr.
Disk storage
We have 100GB disk storage expanded from original size. Sys admin should putty to Amazon instance at check whether the space is enough periodically.
The disk space can be expanded as wish. (But it costs.)
Ports
For security, only port 22 (ssh) and 80 (http) is open to world.
Port 8142 for Parsoid(Visual Editor).
SSH
EC2 can be accessed using putty program.[1] It requires special cert file "jhchang.ppk" which is created from "jhchang.pem" provided by Amazon EC2 when the instance was created.
The .ppk file can be created using puttygen.
putty configuration
- Host name : atomic.snu.ac.kr
- Auto-login username : ubuntu
- Connection -> SSH -> Auth -> Private key file for authentication : jhchang.ppk
winscp
File transfer using winscp requires "jhchang.ppk".
System update
$ sudo apt-get update # Fetches the list of available updates $ sudo apt-get upgrade # Strictly upgrades the current packages
Mail 설정
# apt-get install postfix # dpkg-reconfigure postfix Use following values: 1. Internet Site 2. mail.example.com 3. root 4. mail.example.com, localhost.localdomain, localhost 5. No 6. 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128 192.168.0.0/24 7. 0 8. + 9. all
Modify /etc/postfix/main.cf
relayhost = 13.125.89.157 ; www.kns.org
Stop and restart
# systemctl stop postfix # systemctl start postfix