O erro era o seguinte, ao tentar iniciar o MUI:
#/etc/init.d/httpd.vmware startStarting httpd.vmware:-ne failed
O esquema é editar o arquivo que inicia o apache do MUI,
Ah, por via das duvidas, eu fiz uma copia de segurança do arquivo original, nunca se sabe, mesmo porque o autor da solução é Frances. ( nada contra é claro , somente no futebol)
cd /etc/init.d/
cp httpd.vmware httpd.vmware.original
vim /etc/init.d/httpd.vmware
Editei alguns trechos do arquivo.
O trecho baixo:
start) vmware_exec "Starting httpd.vmware:" vmware_start_httpd ;; stop) vmware_exec "Shutting down http.vmware: " vmware_stop_httpd ;;
Editar e deixar assim:
start) if [ ! -d /var/run/vmware/httpd ] then echo "Directory: var/run/vmware/httpd Not found. Creating it." mkdir /var/run/vmware/httpd echo "Setting user and group ownership to: User: www-data, Group: nogroup" chown www-data:nogroup /var/run/vmware/httpd echo "Setting directory permissions to: RWX------ (700)" chmod 700 /var/run/vmware/httpd fi echo "Starting httpd.vmware:" vmware_start_httpd ;; stop) echo "Shutting down http.vmware: " vmware_stop_httpd ;;Outro techo a ser editado if [ "$VMWARE_DEBUG" = 'yes' ]; then (trap '' SIGHUP; "$func" "$@") else (trap '' SIGHUP; "$func" "$@") >/dev/null 2>&1 fi Deve ficar assim if [ "$VMWARE_DEBUG" = 'yes' ]; then (trap '' HUP; "$func" "$@") else (trap '' HUP; "$func" "$@") >/dev/null 2>&1 fi
Depois desde trabalho concluído, podemos iniciar o VMware Management Interface (MUI), que vai rodar na porta 8333
#/etc/init.d/httpd.vmware start
Acesse com um navegador, https://o_ip_do_seu_servidor:8333
Vai pedir a senha de um usuário, que o meu caso usei a do root mesmo, caso voce ainda não tenha criado a senha do root no ubuntu, faça isto, assim.
# sudo su
#passwd root
Pronto, agora poderá acessar como root o VMware Management Interface (MUI).
Continue lendo este artigo:
Instalando e Usando o Vmware Server em um Xeon 64 Bits ( Com Ubuntu 6.10 – 64 bits ) Parte 01
Instalando e Usando o Vmware Server em um Xeon 64 Bits ( Com Ubuntu 6.10 – 64 bits ) Parte 02
Instalando e Usando o Vmware Server em um Xeon 64 Bits ( Com Ubuntu 6.10 – 64 bits ) Parte 03
Instalando e Usando o Vmware Server em um Xeon 64 Bits ( Com Ubuntu 6.10 – 64 bits ) Parte 04
