Consola folosind server web

7 posts / 0 new
Last post
cgherman
cgherman's picture
Consola folosind server web

Intrebare:

exista vreo solutie prin care sa am acces la o consola text pe un sistem Linux printr-o pagina web?

intreb asta pentru ca e posibil sa nu am acces prin ssh la server, ci doar prin web.

mersi pentru orice sugestie.

admin
admin's picture
Re: Consola folosind server web

da, instaleaza webmin, are un programel prin care interactionezi cu consola, cred ca e java based.

cgherman
cgherman's picture
Re: Consola folosind server web

Am gasit solutia: AjaxTerm

exista pachet compilat si pentru Mandriva. :D

Dupa instalare si pornire serviciu se acceseaza serverul pe portul 8022

cgherman
cgherman's picture
Re: Consola folosind server web

de pe local functioneaza perfect. daca ma prind cum pot configura accesul din extern ar fi perfect :)

ma ajuta cineva?

admin
admin's picture
Re: Consola folosind server web

By default Ajaxterm only listen at 127.0.0.1:8022. For remote access, it is strongly recommended to use https SSL/TLS. It is simple to configure if you use the apache web server using mod_proxy.
Un vhost ar arata cam asa:

NameVirtualHost IP:80

ServerName cgherman.com (aici baga un hostname valid daca ai)
ProxyRequests Off

              Order deny,allow
              Allow from all

ProxyPass / http://localhost:8022/
ProxyPassReverse / http://localhost:8022/

vezi sa instalezi apache-mod_proxy inainte de asta.

cgherman
cgherman's picture
Re: Consola folosind server web

maaxx wrote:
Un vhost ar arata cam asa:

NameVirtualHost IP:80

ServerName cgherman.com (aici baga un hostname valid daca ai)
ProxyRequests Off

              Order deny,allow
              Allow from all

ProxyPass / http://localhost:8022/
ProxyPassReverse / http://localhost:8022/

si unde salvez fisierul? si sub ce nume? :)

cgherman
cgherman's picture
Re: Consola folosind server web

am rezolvat salvand urmatoarele in fisierul /etc/httpd/conf/vhosts.d/02_ajaxterm.conf


ServerName cgherman.xxx
ProxyRequests Off

               Order deny,allow
               Allow from all

ProxyPass /ajaxterm/ http://localhost:8022/
ProxyPassReverse /ajaxterm/ http://localhost:8022/

pot accesa consola din adresa http://cgherman.xxx/ajaxterm/ ceea e ptr mine ok

Mersi pentru ajutor maaxx