📌 오늘의 국제 원자력 동향 2026년 5월 28(목)
- 미 국방부가 Project Pele와 Janus 프로그램을 통해 1~20MW급 마이크로리액터 실증을 촉진하나, HALEU 공급과 단위 발전비가 상업 확대의 제약으로 부각됨.
- Newcleo가 NewHold Investment Corp III와의 합병으로 24억달러 가치의 Nasdaq 상장을 추진하며, 납냉각고속로와 재처리 연료 제조 역량 확대 자금 조달에 나섬.
- Oklo가 미국 에너지부의 잉여 플루토늄 활용 프로그램 우선 협상 대상으로 선정되며, 첨단원자로 연료 공급 제약을 기존 핵물질 활용으로 완화하려는 경로가 부각됨.
- 로사톰이 Chukotka 광산 산업단지 전력공급을 위한 첫 FPU-106 부유식 원전용 58MWe RITM-200C 원자로 제작을 완료하며 소형 해상 원전 공급망을 확대함.
- Assystem과 AtkinsRéalis가 EDF·Sizewell C의 5년 전문서비스 프레임워크에 선정되며, Hinkley Point C와 Sizewell C를 잇는 영국 EPR 공급망 지원이 강화됨.
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