Closed ShireCiel closed 5 years ago
抱歉,最近几天一直在病中,无法及时回复。
前端这块build使用的内存控制不住……毕竟node的内存策略是尽可能多用少放,这只能后面加个提示了。
这个不太了解啊,我从PG 9.5开始使用至今,从来没设置过什么数据库编码。是11.X新版本有变化吗?
第二点。我今天重新在另外一台机器上安装了PG10 发现默认的数据库编码都是 UTF-8的而不是SQL_ASCII。 (我觉得可能跟系统默认编码有关,默认编码是什么安装好PG的默认编码就是什么。) 不过还是加上 “启动遇到 UnicodeEncodeError,检查一下PG数据库的编码" 的提示把。 除此之外没有其他问题了。 感觉作者写的BBS很棒,很简洁并且想要的功能点都有!
emmmm 你原来的系统是啥。我看ubuntu是默认源里没有,添加了PG官方源的话应该是默认建好utf8数据库。 另外archlinux(manjaro)软件源里有pg11,不过装好之后默认没建立数据库,但给出的建立提示也是utf-8的,虽然是en_US.UTF8
[fy@fy-pc ~]$ systemctl status postgresql
● postgresql.service - PostgreSQL database server
Loaded: loaded (/usr/lib/systemd/system/postgresql.service; enabled; vendor preset: disabled)
Active: failed (Result: exit-code) since Fri 2019-02-15 14:27:47 CST; 7s ago
Process: 1462 ExecStartPre=/usr/bin/postgresql-check-db-dir ${PGROOT}/data (code=exited, status=1/FAILURE)
2月 15 14:27:47 fy-pc systemd[1]: Starting PostgreSQL database server...
2月 15 14:27:47 fy-pc postgres[1462]: "/var/lib/postgres/data" is missing or empty. Use a command like
2月 15 14:27:47 fy-pc postgres[1462]: su - postgres -c "initdb --locale en_US.UTF-8 -D '/var/lib/postgres/data'"
2月 15 14:27:47 fy-pc postgres[1462]: with relevant options, to initialize the database cluster.
2月 15 14:27:47 fy-pc systemd[1]: postgresql.service: Control process exited, code=exited status=1
2月 15 14:27:47 fy-pc systemd[1]: postgresql.service: Failed with result 'exit-code'.
2月 15 14:27:47 fy-pc systemd[1]: Failed to start PostgreSQL database server.
emmmm 你原来的系统是啥。我看ubuntu是默认源里没有,添加了PG官方源的话应该是默认建好utf8数据库。 另外archlinux(manjaro)软件源里有pg11,不过装好之后默认没建立数据库,但给出的建立提示也是utf-8的,虽然是en_US.UTF8
[fy@fy-pc ~]$ systemctl status postgresql ● postgresql.service - PostgreSQL database server Loaded: loaded (/usr/lib/systemd/system/postgresql.service; enabled; vendor preset: disabled) Active: failed (Result: exit-code) since Fri 2019-02-15 14:27:47 CST; 7s ago Process: 1462 ExecStartPre=/usr/bin/postgresql-check-db-dir ${PGROOT}/data (code=exited, status=1/FAILURE) 2月 15 14:27:47 fy-pc systemd[1]: Starting PostgreSQL database server... 2月 15 14:27:47 fy-pc postgres[1462]: "/var/lib/postgres/data" is missing or empty. Use a command like 2月 15 14:27:47 fy-pc postgres[1462]: su - postgres -c "initdb --locale en_US.UTF-8 -D '/var/lib/postgres/data'" 2月 15 14:27:47 fy-pc postgres[1462]: with relevant options, to initialize the database cluster. 2月 15 14:27:47 fy-pc systemd[1]: postgresql.service: Control process exited, code=exited status=1 2月 15 14:27:47 fy-pc systemd[1]: postgresql.service: Failed with result 'exit-code'. 2月 15 14:27:47 fy-pc systemd[1]: Failed to start PostgreSQL database server.
我第一次用的ubuntu16.04试的。第二次 换了一台机器也是ubuntu16.04的。但是第一次默认是ASCII 第二次是换一台以及一样系统是UTF-8
终于遇到了类似案例,这次是18.04 解决方案: update pg_database set encoding = pg_char_to_encoding('UTF8') where datname = 'icarus';