📌 오늘의 국제 원자력 동향 2026년 4월 2일(목)

  • 우크라이나 내각이 미콜라이우 지역 핵연료 집합체 생산시설의 설계·건설 추진을 승인하며, Westinghouse 기술 기반의 자국 연료주기 구축이 에너지안보와 탈러시아 공급망 전환의 핵심 축으로 부상함.
  • 영국 GBE-N이 Amentum·Cavendish Nuclear 합작사와 Wylfa 롤스로이스 SMR 사업의 오너스 엔지니어 계약을 체결하며, 2029년 최종투자결정 전 규제·설계·건설 검증 체계 구축이 본격화됨.
  • 홀텍이 Palisades 원전 1차계통의 패시베이션을 마쳐 2022년 정지 이후 처음으로 운전온도·압력 조건을 복원하며, 연료장전 전 시험과 후속 설비개선 일정의 실행력이 재가동 성패를 좌우하는 국면임.

LAMP (SoftInstall)

New Atomic Wiki
둘러보기로 이동 검색으로 이동

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