Bacancy Technology
Bacancy Technology represents the connected world, offering innovative and customer-centric information technology experiences, enabling Enterprises, Associates and the Society to Rise™.
12+
Countries where we have happy customers
1050+
Agile enabled employees
06
World wide offices
12+
Years of Experience
05
Agile Coaches
14
Certified Scrum Masters
1000+
Clients projects
1458
Happy customers
Artificial Intelligence
Machine Learning
Salesforce
Microsoft
SAP
March 28, 2024
The output you’re seeing when you type rails script/server suggests that you’re actually running the rails new command, which is used to generate a new Rails application.
In Rails 2.3.2, the command to start the server is script/server, not rails script/server. So, to start the server, you should navigate to your Rails application directory and run:
./script/server
This command will start the Rails development server, allowing you to access your application in the browser.
The script directory contains various scripts used for running tasks related to your Rails application, including starting the server (server script).
To summarize, ensure you’re running the correct command (script/server) to start the server in your Rails 2.3.2 application, and make sure you’re in the correct directory containing your Rails application files.