📌 오늘의 국제 원자력 동향 2026년 8월 11일 (화)
- Vistra가 ERCOT 접속 대기열 감사 전까지 텍사스주 정부의 데이터센터 개발 일시정지를 지지하면서도 Comanche Peak 원전의 Amazon 전력공급 계약은 일정 영향이 제한적일 것으로 전망함
- 헝가리 Paks 원전이 다뉴브강 수위 회복에 따라 두 번째 터빈 재가동 절차에 들어가며 폭염·가뭄기 원전 냉각수 의존성과 전력수급 취약성이 함께 부각됨
- 루마니아 Cernavoda 원전 주변 다뉴브강 수위 하락 전망이 이어지며 운영 지속을 위한 물길 우회, 준설 예산, 전력 비상 대응이 동시에 쟁점으로 부상함
- 슬로바키아 Mochovce 4호기가 최초 임계와 최소제어출력에 도달하며 471MW급 신규 원전의 단계적 출력 상승과 전력 생산 전 시험 절차가 본격화됨
- 중국 Changjiang 4호기가 주제어실 운영을 시작하며 Hualong One 2단계 사업의 2027년 초 기동·완전운전 목표를 향한 시운전 준비가 진전됨
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