📌 오늘의 국제 원자력 동향 2026년 3월 21일(토)
- X-energy가 미국 IPO 서류를 제출하며 AI 전력 수요와 정책 지원을 배경으로 한 차세대 원전 투자 기대가 자본시장 조달 국면으로 이동함
- X-energy와 Talen이 PJM 시장에서 XE-100 다기 배치를 검토하며 데이터센터와 제조업 수요를 겨냥한 미국 SMR 사업화 경로를 구체화함
- IAEA가 자포리자·하르키우·체르노빌의 외부전원 취약성을 재차 경고하며 우크라이나 핵시설의 전시 전력안정성이 핵심 안전 변수로 부상함
- SCK-CEN이 Framatome과 BR2 연구로용 저농축 우라늄 연료 공급 계약을 체결하며 HEU 대체 전환을 가속화함
- 후쿠시마 제1원전 3호기 압력용기 하부의 구멍과 연료잔해 추정 물질이 처음 확인되며 잔해 제거 전략 수립이 진전됨
LAMP (SoftInstall): 두 판 사이의 차이
둘러보기로 이동
검색으로 이동
| 8번째 줄: | 8번째 줄: | ||
To set initial password | To set initial password | ||
$ mysql_secure_installation | $ 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> 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 == | == Apache2 == | ||
2019년 1월 25일 (금) 07:43 판
LAMP
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> 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>
Php
Install
$ sudo apt-get install php $ sudo apt-get install php7.2-gd