ubuntu 12.04上安装puppet

发现官方的说明问题很多,不过全做一个参考吧

puppet的agent端安装没有问题,但是master涉及到postgresql数据库的配置,简单运行puppet-enterprise-installer会出错

我在安装目录的answers目录下发现很多配置文件,其中full_suite_existing_postgres.sample最符合master的需求,于是将其复制到安装的根目录,修改其中的一些配置项,主要是将其中数据库的host设置为master的域名,对应的数据库设置用户名密码。

然后配置postgreSQL数据库,可以参考这篇文章,设置好postgres密码后,进入
nsfocus@controller:~$ psql -U postgres -W -h 192.168.19.1
Password for user postgres:
psql (9.1.9)
SSL connection (cipher: DHE-RSA-AES256-SHA, bits: 256)
Type "help" for help.

postgres=# CREATE USER "pe-puppetdb" PASSWORD 'onemorestrongpass';
CREATE ROLE
postgres=# CREATE DATABASE "pe-puppetdb" OWNER "pe-puppetdb" ENCODING 'utf8' LC_CTYPE 'en_US.utf8' LC_COLLATE 'en_US.utf8' template template0;
CREATE DATABASE
postgres=# CREATE DATABASE "console_auth" OWNER "auth_user" ENCODING 'utf8' LC_CTYPE 'en_US.utf8' LC_COLLATE 'en_US.utf8' template template0;
CREATE DATABASE

然后运行./puppet-enterprise-installer -a full_suite_existing_postgres.sample

如果还有错误,可以查看当前目录下的install_log.lastrun.[hostname]文件,看看最后FATAL的信息

Leave a Reply

Your email address will not be published. Required fields are marked *