Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

230
Views
Launch Dynamic Web Console on PHP or Laravel

Ex. VMWare Client

enter image description here

I'm trying to integrate a web console into my Laravel 5.8 application. I have a list of servers in a table. Each server will have a unique IP address, when clicked on IP, will open up the server detail view, I want to add a button to launch the web console, there. When clicked, should open a new tab, with a logging session, where users can enter any command they want.

I've been research around, I only see this package that allows me to SSH into any server with any inputs dynamically. For web console, I came across this one, but it seems to only allow local, staging, and a prod server IP. In my case, I need to be able to pass in IP address, since it will dynamically base on which one the user selected. If you guys know any other PHP or JS package that can do what I am looking for, please kindly suggest.

I've tried:

Route::get('ssh/console', 'SshController@console');

public function console()
{

    $inputs         = Input::all();
    $host           = $inputs['host'];
    $username       = $inputs['username'];
    $password       = $inputs['password'];

    // config(['console.user.host' => $host]);
    config(['console.user.name' => $username]);
    config(['console.user.password' => $password]);

    return LaravelWebConsole::show($host, $username, $password);

}

Result:

It seems to listed the file of my server instead of the server, that I passed in the query string $ip. As you can see, I've tried this already

config(['console.user.host' => $host]);
config(['console.user.name' => $username]);
config(['console.user.password' => $password]);

enter image description here

about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!