Configurar java no linix distribuicao slackware
Estou tentando configurar o java na distribuicao slavckware no linux porem nao estou obtendo sucesso.
Tentei configurar uma vez editando o profile dentro de /etc para criar uma variavel global conforme manda a regra porem apos a criacao desta variavel houve um problema de conflito e o SO nao reconhecia mais nenum comando, qualquer que fosse o comando digitado a mensagem(- bash command not found).
Se for possivel alguem me passar o procedimento para configurar o java nesta distrbuicao, com variaveis globais e como configurar o java no proprio diretorio de intalacao eu fico grato.
Estou no aguardo.
Diogo Andrade
Curtidas 0
Respostas
Dyego Carmo
25/02/2010
Por favor cole o seu /etc/profile aqui , que realizo as modificações.
GOSTEI 0
Diogo Andrade
25/02/2010
# /etc/profile: This file contains system-wide defaults used by
# all Bourne (and related) shells. # Set the values for some environment variables:
export MINICOM="-c on"
export MANPATH=/usr/local/man:/usr/man
export HOSTNAME="`cat /etc/HOSTNAME`"
export LESSOPEN="|lesspipe.sh %s"
export LESS="-M"
export HISTSIZE=10000 # If the user doesn't have a .inputrc, use the one in /etc.
if [ ! -r "$HOME/.inputrc" ]; then
export INPUTRC=/etc/inputrc
fi # Set the default system $PATH:
PATH="/usr/local/bin:/usr/bin:/bin:/usr/games" # For root users, ensure that /usr/local/sbin, /usr/sbin, and /sbin are in
# the $PATH. Some means of connection don't add these by default (sshd comes
# to mind).
if [ "`id -u`" = "0" ]; then
echo $PATH | grep /usr/local/sbin 1> /dev/null 2> /dev/null
if [ ! $? = 0 ]; then
PATH=/usr/local/sbin:/usr/sbin:/sbin:$PATH
fi
fi # I had problems with the backspace key using 'eval tset' instead of 'TERM=',
# but you might want to try it anyway instead of the section below it. I
# think with the right /etc/termcap it would work.
# eval `tset -sQ "$TERM"` # Set TERM to linux for unknown type or unset variable:
if [ "$TERM" = "" -o "$TERM" = "unknown" ]; then
TERM=linux
fi # Set ksh93 visual editing mode:
if [ "$SHELL" = "/bin/ksh" ]; then
VISUAL=emacs
# VISUAL=gmacs
# VISUAL=vi
fi # Set a default shell prompt:
#PS1='`hostname`:`pwd`# '
if [ "$SHELL" = "/bin/pdksh" ]; then
PS1='! $ '
elif [ "$SHELL" = "/bin/ksh" ]; then
PS1='! ${PWD/#$HOME/~}$ '
elif [ "$SHELL" = "/bin/zsh" ]; then
PS1='%n@%m:%~%# '
elif [ "$SHELL" = "/bin/ash" ]; then
PS1='$ '
else
PS1='\u@\h:\w\$ '
fi
PS2='> '
export PATH DISPLAY LESS TERM PS1 PS2 # Default umask. A umask of 022 prevents new files from being created group
# and world writable.
umask 022 # Notify user of incoming mail. This can be overridden in the user's
# local startup file (~/.bash.login or whatever, depending on the shell)
if [ -x /usr/bin/biff ]; then
biff y 2> /dev/null
fi # Append any additional sh scripts found in /etc/profile.d/:
for profile_script in /etc/profile.d/*.sh ; do
if [ -x $profile_script ]; then
. $profile_script
fi
done
unset profile_script # For non-root users, add the current directory to the search path:
if [ ! "`id -u`" = "0" ]; then
PATH="$PATH:."
fi
Desta forma esta bom ou se voce preferir de outra forma por favor me diga, obrigado
# all Bourne (and related) shells. # Set the values for some environment variables:
export MINICOM="-c on"
export MANPATH=/usr/local/man:/usr/man
export HOSTNAME="`cat /etc/HOSTNAME`"
export LESSOPEN="|lesspipe.sh %s"
export LESS="-M"
export HISTSIZE=10000 # If the user doesn't have a .inputrc, use the one in /etc.
if [ ! -r "$HOME/.inputrc" ]; then
export INPUTRC=/etc/inputrc
fi # Set the default system $PATH:
PATH="/usr/local/bin:/usr/bin:/bin:/usr/games" # For root users, ensure that /usr/local/sbin, /usr/sbin, and /sbin are in
# the $PATH. Some means of connection don't add these by default (sshd comes
# to mind).
if [ "`id -u`" = "0" ]; then
echo $PATH | grep /usr/local/sbin 1> /dev/null 2> /dev/null
if [ ! $? = 0 ]; then
PATH=/usr/local/sbin:/usr/sbin:/sbin:$PATH
fi
fi # I had problems with the backspace key using 'eval tset' instead of 'TERM=',
# but you might want to try it anyway instead of the section below it. I
# think with the right /etc/termcap it would work.
# eval `tset -sQ "$TERM"` # Set TERM to linux for unknown type or unset variable:
if [ "$TERM" = "" -o "$TERM" = "unknown" ]; then
TERM=linux
fi # Set ksh93 visual editing mode:
if [ "$SHELL" = "/bin/ksh" ]; then
VISUAL=emacs
# VISUAL=gmacs
# VISUAL=vi
fi # Set a default shell prompt:
#PS1='`hostname`:`pwd`# '
if [ "$SHELL" = "/bin/pdksh" ]; then
PS1='! $ '
elif [ "$SHELL" = "/bin/ksh" ]; then
PS1='! ${PWD/#$HOME/~}$ '
elif [ "$SHELL" = "/bin/zsh" ]; then
PS1='%n@%m:%~%# '
elif [ "$SHELL" = "/bin/ash" ]; then
PS1='$ '
else
PS1='\u@\h:\w\$ '
fi
PS2='> '
export PATH DISPLAY LESS TERM PS1 PS2 # Default umask. A umask of 022 prevents new files from being created group
# and world writable.
umask 022 # Notify user of incoming mail. This can be overridden in the user's
# local startup file (~/.bash.login or whatever, depending on the shell)
if [ -x /usr/bin/biff ]; then
biff y 2> /dev/null
fi # Append any additional sh scripts found in /etc/profile.d/:
for profile_script in /etc/profile.d/*.sh ; do
if [ -x $profile_script ]; then
. $profile_script
fi
done
unset profile_script # For non-root users, add the current directory to the search path:
if [ ! "`id -u`" = "0" ]; then
PATH="$PATH:."
fi
Desta forma esta bom ou se voce preferir de outra forma por favor me diga, obrigado
GOSTEI 0
Dyego Carmo
25/02/2010
Adiciona as seguintes linhassuponhamos que esteja em /jdk o seu java
export JAVA_HOME="/jdk"PATH=/jdk/bin:$PATH
DESLOGUE e LOGUE novamente e faca o teste
export JAVA_HOME="/jdk"PATH=/jdk/bin:$PATH
DESLOGUE e LOGUE novamente e faca o teste
GOSTEI 0
Dyego Carmo
25/02/2010
Adiciona as seguintes linhassuponhamos que esteja
em /jdk o seu javaJAVA_HOME="/jdk"
export JAVA_HOMEPATH=/jdk/bin:$PATHexport PATH
DESLOGUE e LOGUE novamente e faca o teste
export JAVA_HOMEPATH=/jdk/bin:$PATHexport PATH
DESLOGUE e LOGUE novamente e faca o teste
GOSTEI 0
Diogo Andrade
25/02/2010
Cara preciso da sua opniao, o servidor no qual estou tentando configurar ja tem o java instalado e nao se esta instalacao esta correta ou de acordo com o padrao para o funcionamento correto, entao estava pensando em baixar um novo arquivo e pedir para vc me instruir na instalacao correta do mesmo.
GOSTEI 0
Dyego Carmo
25/02/2010
Baixe a versao .bin no endereco java.sun.com
Quando terminar digite no seu console:
cp <nome_do_arquivo> /
sh <nomedo_arquivo> (aqui ele vai descompactar)
ln -sf <nome_do_dir_que_ele_criou> jdk
pronto... adicione as linhas no profile , re-logue e teste.
Quando terminar digite no seu console:
cp <nome_do_arquivo> /
sh <nomedo_arquivo> (aqui ele vai descompactar)
ln -sf <nome_do_dir_que_ele_criou> jdk
pronto... adicione as linhas no profile , re-logue e teste.
GOSTEI 0
Diogo Andrade
25/02/2010
Nao havera problema se eu instalar o java sendo que ja ha um instalado pelo menos acredito que esteja
GOSTEI 0
Dyego Carmo
25/02/2010
Não
GOSTEI 0
Diogo Andrade
25/02/2010
blz, entao eu farei o q vc me pediu, mas eu preciso ir embora e amanha entro em contato com vc muito obrigado pela a atencao, ate
GOSTEI 0
Diogo Andrade
25/02/2010
Bom dia realizei os procedimentos conforme sua instrucao, porem eu preciso reiniciar a maquina ou nao?.
GOSTEI 0
Diogo Andrade
25/02/2010
Cara eu visualizo o erro Http 404 sei que isso ocorre por que nao foi feito o deploy para o tomcat mas o projeto juntamente com os arquivos estao dentro do diretorio webapps
GOSTEI 0
Dyego Carmo
25/02/2010
O java foi Instalado com sucesso ?
digite:
java -version
e me diga o que aparece.;
digite:
java -version
e me diga o que aparece.;
GOSTEI 0
Diogo Andrade
25/02/2010
java version "1.6.0_06"
Java(TM) SE Runtime Environment (build 1.6.0_06-b02)
Java HotSpot(TM) Server VM (build 10.0-b22, mixed mode)
Java(TM) SE Runtime Environment (build 1.6.0_06-b02)
Java HotSpot(TM) Server VM (build 10.0-b22, mixed mode)
GOSTEI 0
Dyego Carmo
25/02/2010
OK então a duvida deste chamado foi exclarecida , se agora você está com uma outra duvida voce deve abrir outro chamado.
Obrigado !
Obrigado !
GOSTEI 0