最新版はこちら。 突っ込みは各日付の BBS エントリのほか、 メール (nakano@st.seikei.ac.jp) や フォーム からどうぞ。 なおスパム除けのため、BBS 機能には 緩い認証を入れて います。 検索エンジンから来た方は、エンジンの方のキャッシュを見るか、 下の簡易検索を試してみてください。
|
Namazu for hns による簡易全文検索 詳しくは 詳細指定/ヘルプを参照して下さい |
||||||||||||||||||||||||||||||||||||||||||||||||
sudo -u www-data psql www-data < ph_insert.ddlで食わせ、一括登録。
not null default nextval('"refs_ref_id_seq"'::text)と定義されている。さっきの一括登録のときは nextval() が呼ばれなかったので、 refs_ref_id_seq の last_value が増えていないのが敗因。
select setval('refs_ref_id_seq', max(ref_id)) from refs limit 1;によってシーケンスの値を修正 *1 。 これで新既登録も web から問題なくできるようになった。
insert into ref_abbrev (abbrev, full_text) values ('JJAP', 'Jpn. J. Appl. Phys.'); insert into ref_abbrev (abbrev, full_text) values ('JAP', 'J. Appl. Phys.'); insert into ref_abbrev (abbrev, full_text) values ('APL', ' Appl. Phys. Lett.'); insert into ref_abbrev (abbrev, full_text) values ('JMR', ' J. Mater. Res.'); insert into ref_abbrev (abbrev, full_text) values ('JVSTA', 'J. Vac. Sci. Technol. A'); insert into ref_abbrev (abbrev, full_text) values ('JVSTB', 'J. Vac. Sci. Technol. B'); insert into ref_abbrev (abbrev, full_text) values ('PRB', 'Phys. Rev. B:'); insert into ref_abbrev (abbrev, full_text) values ('PRL', 'Phys. Rev. Lett.'); insert into ref_abbrev (abbrev, full_text) values ('RSI', 'Rev. Sci. Instrum.');
30 3 * * * www-data pg_dump -b -F c www-data > /home/common/data/rmdb.ddl/home/common/data/ は nfs マウントしてるディレクトリで、 毎晩テープにバックアップを取っている。
local all peer sameuser host all 127.0.0.1 255.0.0.0 ident sameuser host all 0.0.0.0 0.0.0.0 rejectという指定があるからだった。 シーラカンス本の「2.8 セキュリティ機能」辺りを参照のこと。