📌 오늘의 국제 원자력 동향 2026년 5월 2(토)
- 벨기에 정부가 Engie·Electrabel의 원전 자산 전면 인수를 위한 협상에 착수하며 기존 원전 연장운전과 신규 원전 확대를 국가 주도 체제로 재편하려는 흐름이 부각됨.
- 캐나다 정부가 연내 원자력 전략 발표와 원격·북부 방위시설용 국산 마이크로리액터 타당성 평가 투자를 예고하며 신규 건설·연료·수출을 묶는 국가 전략 수립에 나섬.
- 캐나다 Darlington SMR 사업이 원자로 건물 기초용 Basemat 모듈 설치를 완료하며 G7 최초 상용 SMR 건설 프로젝트의 모듈식 시공·공급망 확장 단계가 본격화됨.
- 인도 AERB가 Rajasthan의 NFC-Kota 연료공장 운영허가를 발급하며 700MWe PHWR 확대를 뒷받침할 국내 핵연료 공급 기반 강화가 진전됨.
- 러시아 점령하 자포리자 원전이 체르노빌 사고 40주년에 외부전원을 한때 모두 상실하며 우크라이나 전시 핵안전 리스크가 다시 부각됨.
LAMP (SoftInstall)
둘러보기로 이동
검색으로 이동
LAMP
Date time
# ln -sf /usr/share/zoneinfo/ROK /etc/localtime # date
MySQL
Install
$ sudo apt-get update $ sudo apt-get install mysql-server $ sudo systemctl start mysql $ sudo systemctl enable mysql
To set initial password
$ mysql_secure_installation
Problem in root password
Disable password checking temporally. by adding a line at /etc/mysql/mysql.conf.d/mysqld.cnf
[mysqld] skip-grant-tables
Stop and restart mysql
$ sudo systemctl stop mysql $ sudo systemctl start mysql
Change using no password mode.
$ mysql -u -p
mysql> user mysql;
mysql> update user set plugin="mysql_native_password" where User='root';
mysql> update user set authentication_string=PASSWORD('newpassword') where User='root';
mysql> flush privileges;
mysql> quit
Restart mysql after deleting "skip-grant-table"
$ sudo systemctl stop mysql $ sudo systemctl start mysql
Check if working well.
$ mysql -u root -p Enter password: xxxx mysql> use user; mysql> select * from user where User='root';
Apache2
Install
$ sudo apt-get install apache2 apache2-utils
$ sudo systemctl enable apache2 $ sudo systemctl start apache2
Missing file
404 Not found를 처리하기 위해 /etc/apache2/apache.conf를 수정
<Directory / > Overrride FileInfo ErrorDocument 404 /error.html </Directory>
SSL
Lets Encrypt SSL install; (for ubuntu)
$ sudo add-apt-repository ppa:certbot/certbot $ sudo apt install python-certbot-apache
Setup SSL Certificate; Modify /etc/apache2/sites-available/000-default.conf</conf>.
Change server name properly.
ServerName atomic.snu.ac.kr
Check configuration
$ sudo apache2ctl configtest
Obtain an SSL certicate
$ sudo certbot --apache -d atomic.snu.ac.kr
Verify SSL auto renewal.
$ sudo certbot renew --dry-run
Php
Install
$ sudo apt-get install php
$ sudo apt-get install php-gd
$ sudo apt-get install libapache2-mod-php php-mysql