Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug correction #5

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions erros.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
Tecle ENTER para confirmar ou selecione o banco desejado [postgresql]:
Iniciando configuração do postgresql
Informe Hostname ou IP do servidor postgresql [localhost]:
Informe a porta do servidor postgresql [5432]:
Verificando conexão com postgresql. Executando: nc -zv localhost 5432
Connection to localhost 5432 port [tcp/postgres] succeeded!
Informe nome usuário com permissão (DROP, CREATE, GRANT) no banco postgresql [postgres]: bi_consulta
Informe a senha do usuário bi_consulta :
Gerando senhas para usuários no postgresql ...
hibuser=sle4aQKpaaaaaa
jcr_user=JJO2z5xoaaaaaaaaaaaaa
pentaho_user=F18ddz9saaaaaaaaaaasssss
Aplicar configurações? (y/n): y
/home/pentaho/biserver-ce/tomcat/conf/Catalina
psql: FATAL: nenhuma entrada no pg_hba.conf para máquina "::1", usuário "bi_consulta", banco de dados "postgres", SSL desabilitado
psql: FATAL: nenhuma entrada no pg_hba.conf para máquina "::1", usuário "bi_consulta", banco de dados "postgres", SSL desabilitado
psql: FATAL: nenhuma entrada no pg_hba.conf para máquina "::1", usuário "bi_consulta", banco de dados "postgres", SSL desabilitado
[root@vbpent01 pentaho5-installer]#
Empty file removed etl/README.md
Empty file.
2 changes: 1 addition & 1 deletion install
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ pwd=`pwd`
if [ "$(id -u)" == "0" ]; then
$pwd/scripts/install.sh $1
else
echo "Necessário executar como root. Utilize: sudo ./install"
echo "You need to execute as root. Use: sudo ./install (Necessário executar como root. Utilize: sudo ./install)"
fi
6 changes: 4 additions & 2 deletions lib/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# Drivers JDBC
Q: Where is the folder to put the JDBC .jars in Pentaho BA Server CE 5.2?<BR>
A: biserver-ce/tomcat/lib<BR>

<div class="body refbody">

Expand All @@ -10,11 +12,11 @@
<thead align="left" class="thead">
<tr class="row">
<th class="entry" colspan="1" id="d36e40" rowspan="1" valign="top" width="33.33333333333333%">
<strong class="ph b">Banco de Dados</strong>
<strong class="ph b">Databases / Banco de Dados</strong>
</th>

<th class="entry" colspan="1" id="d36e46" rowspan="1" valign="top" width="33.33333333333333%">
<strong class="ph b">Fornecedor</strong>
<strong class="ph b">Vendors / Fornecedor</strong>
</th>

<th class="entry" colspan="1" id="d36e52" rowspan="1" valign="top" width="33.33333333333333%">
Expand Down
21 changes: 21 additions & 0 deletions postgresql-commands.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
Oracle Linux

Cria a base de dados
service postgresql initdb

Start PostgreSQL
/etc/init.d/postgresql start

su postgres

PostgreSQL

Antes de executar o script de instalação é preciso criar um usuário com super poderes no PostgreSQL

CREATE ROLE bi_pentaho LOGIN ENCRYPTED PASSWORD 'md59d4d573fbe93e4cc23d9d56de27b1c67'
SUPERUSER CREATEDB CREATEROLE VALID UNTIL 'infinity';

localhost:
port: 5432
usuario: bi_pentaho
senha: biuser14
5 changes: 3 additions & 2 deletions scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,15 @@ database="postgresql"
# http://sourceforge.net/projects/pentaho/files/Business%20Intelligence%20Server/5.2/biserver-ce-5.2.0.0-209.zip/download
#biserver_tag="5.0.1-stable"

biserver_tag="5.2.0.0-209"
biserver_tag_path="5.2"
biserver_tag_file="5.2.0.0-209"

if [ "$1" ]; then
biserver_tag="$1"
fi
echo $biserver_tag

biserver_install_url="http://ufpr.dl.sourceforge.net/project/pentaho/Business%20Intelligence%20Server/$biserver_tag/biserver-ce-$biserver_tag.zip"
biserver_install_url="http://ufpr.dl.sourceforge.net/project/pentaho/Business%20Intelligence%20Server/$biserver_tag_path/biserver-ce-$biserver_tag_file.zip"

trunk=`echo $biserver_tag | grep TRUNK | wc -l`
echo $trunk
Expand Down
Empty file removed src/README.md
Empty file.
2 changes: 1 addition & 1 deletion uninstall
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ pwd=`pwd`
if [ "$(id -u)" == "0" ]; then
$pwd/scripts/uninstall.sh
else
echo "Necessário executar como root. Utilize: sudo ./uninstall"
echo "You need to execute as root. Use: sudo ./uninstall (Necessário executar como root. Utilize: sudo ./uninstall)"
fi