Yosemite で Server.app (v4.0) の postgres を使う
OS X Server version 3.2.2 の postgres だけを無理矢理 Yosemite で起動することに成功していたが,やっぱりちゃんと新しい Server を買おうと思って,Server.app 4.0 を購入した。
ところが,起動して調べてみると・・・
$ sudo serveradmin status postgres postgres:error = <62706c69 73743030 d4010203 04050618 19582476 65727369 6f6e5824 6f626a65 63747359 24617263 68697665 72542474 6f701200 0186a0a4 07081112 55246e75 6c6cd409 0a0b0c0d 0e0f1056 4e53436f 64655a4e 53557365 72496e66 6f584e53 446f6d61 696e5624 636c6173 73100180 00800280 035f1014 636f6d2e 6170706c 652e7365 72766572 6d677264 d2131415 165a2463 6c617373 6e616d65 5824636c 61737365 73574e53 4572726f 72a21517 584e534f 626a6563 745f100f 4e534b65 79656441 72636869 766572d1 1a1b5472 6f6f7480 0108111a 232d3237 3c424b52 5d666d6f 7173758c 919ca5ad b0b9cbce d3000000 00000001 01000000 00000000 1c000000 00000000 00000000 00000000 d5> postgres:errorDescription = "The operation couldn’t be completed. (com.apple.servermgrd error 1.)" postgres:errorCode = 1
起動していない? サービスのリストを確認すると,postgres がなくなっている!!
$ sudo serveradmin list | grep postgres $
でも ps を見てみると
$ ps aux | grep postgres /Applications/Server.app/Contents/ServerRoot/usr/bin/postgres_real -D /Library/Server/Wiki/Database.xpg/Cluster.pg -c log_line_prefix=%t -c log_lock_waits=on -c log_statement=ddl -c logging_collector=on -c max_connections=500 -c unix_socket_directories=/Library/Server/Wiki/PostgresSocket -c unix_socket_group=_teamsserver -c unix_socket_permissions=0770 -c log_connections=on -c listen_addresses= -c log_directory=/Library/Server/Wiki/Logs -c log_filename=postgres-%a.log -c log_rotation_age=1440 -c log_truncate_on_rotation=on
起動している。しかし,起動オプションをよく見てみると
-D /Library/Server/Wiki/Database.xpg/Cluster.pg
Wiki だけのために立ち上がっているようだ。どうやら,新しいサーバでは Server.app のサービスだけが postgres を使えるという仕組みになってしまったようだ。そんな・・・。仕方がないので,Server 3.2.2 と同じように postgres だけ立ち上げることにした。
インストールした OS X Server を,なかったことにする方法
- /Applications/Server.app を移動する
$ sudo mv /Applications/Server.app ~/tmp/
- /Library/Server を削除する
$ sudo rm -rf /Library/Server
- 再起動する
- Server.app を元に戻す
$ sudo mv ~/tmp/Server.app /Applications/
あとは,/Library/Server/PostgreSQL/Data フォルダを作って,3.2.2 と同じように設定する。postgres のバージョンは 9.3.5 になっていた。
$ sudo -u _postgres psql -U dolphin dolphin psql (9.3.5) Type "help" for help. dolphin=>
・・・多分 Server.app の使い方としては間違っている。