📌 오늘의 국제 원자력 동향 2026년 3월 28일(토)
- 대만전력이 마안산 원전 재가동과 운전면허 갱신을 위한 계획서를 원자력안전위원회에 제출하며, 탈원전 종료 이후 실제 재가동 여부는 18~24개월 추가 안전점검과 기술심사 결과에 좌우되는 단계로 진입함.
- 핀란드 정부가 의뢰한 보고서가 대형원전 2.4GW 증설과 SMR 열·전력 활용, 기존 원전 수명연장 옵션을 함께 제시하며 신규 원전은 국가 지원 없이는 시장성 확보가 어렵다는 평가를 내놓음.
- 인도 원자력규제위원회가 마히 반스와라 원전 1·2호기의 굴착 착수 준비를 승인하며, 700MWe급 PHWR 10기 일괄 확대 구상이 현장 착수 단계로 진입함.
- 켄터키주와 맥크래큰 카운티가 Paducah 레이저 농축시설에 최대 9,890만달러 인센티브를 제시하며, 미국의 고갈우라늄 재농축 기반 국내 핵연료 공급망 구축이 지역산업 투자와 결합되는 양상이 강화됨.
- IAEA가 이란 아르다칸 옐로케이크 생산시설 피격 뒤 외부 방사선 수치 상승이 없다고 밝히며, 핵연료 전단계 시설 타격이 직접 방사선 피해로 이어지지는 않았으나 추가 점검 필요성이 커짐.
VisualEditor (SoftInstall): 두 판 사이의 차이
| 36번째 줄: | 36번째 줄: | ||
You can check daemon status by | You can check daemon status by | ||
$ ps -ax|grep parsoid | |||
== RESTbase == | == RESTbase == | ||
RESTbase is installed at <code>/var/lib/restbase</code>. | RESTbase is installed at <code>/var/lib/restbase</code>. | ||
2018년 2월 25일 (일) 10:45 판
Visual Editor is Java based editor. It works with Parsoid server[1], RESTbase, and SQLite DB. Parsoid is called from client side. The port, 8142 should be open to world.
Parsoid
Installation
Parsoid[2] is not included in ubuntu package repository. Following commands are required to install Parsoid.
$ sudo apt-key advanced --keyserver keys.gnupg.net --recv-keys 90E9F83F22250DD7 $ sudo apt-add-repository "deb https://releases.wikimedia.org/debian jessie-mediawiki main" $ sudo apt-get update $ sudo apt-get install apt-transport-https $ sudo apt-get update && sudo apt-get install parsoid
Parsoid is installed at /etc/mediawiki/parsoid/.
Configuration file is /etc/mediawiki/parsoid/config.yaml.
We need to specify location of api.php.
mwApis:
- # This is the only required parameter,
# the URL of you MediaWiki API endpoint.
uri: 'http://localhost/api.php'
# The "domain" is used for communication with Visual Editor
# and RESTBase. It defaults to the hostname portion of
# the `uri` property below, but you can manually set it
# to an arbitrary string.
domain: 'localhost'
- Note that space should be used. (not tab key)
Daemon
Parsoid is serving TCP port 8142. Daemon is controlled by;
$ sudo service parsoid start $ sudo service parsoid stop
Any error will be recorded at /var/log/parsoid/parsoid.log
You can check daemon status by
$ ps -ax|grep parsoid
RESTbase
RESTbase is installed at /var/lib/restbase.
It uses SQLite database engine.
sqlite3 and restbase-mod-table-sqlite should be presented at node_modules directory.
MediaWiki setup
LocalSettings.php should be corrected.