Skip to content

Commit 04cbfc4

Browse files
authored
Update port references from 5050 to 9080
1 parent 8b9a032 commit 04cbfc4

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

DEVELOPERS.adoc

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -179,11 +179,11 @@ To exit development mode, press `Ctrl+C` or type `q` and press Enter.
179179
Once the server is running, you can access the application endpoints. The default configuration typically uses:
180180

181181
* **Host**: localhost (or your system hostname)
182-
* **Port**: Varies by service (commonly 5050, 5051, 5052, etc.)
182+
* **Port**: Varies by service (commonly 9080)
183183
184184
For example, for the catalog service in Chapter 3:
185185
```
186-
http://localhost:5050/catalog/api/products
186+
http://localhost:9080/catalog/api/products
187187
```
188188

189189
Replace `localhost` with your system hostname if accessing from a different machine.
@@ -217,7 +217,7 @@ Edit `src/main/liberty/config/server.xml`:
217217
----
218218
<httpEndpoint id="defaultHttpEndpoint"
219219
host="*"
220-
httpPort="5050" <!-- Change this port -->
220+
httpPort="9080" <!-- Change this port -->
221221
httpsPort="9443" />
222222
----
223223

@@ -326,8 +326,8 @@ When working with the tutorial code, consider these best practices:
326326

327327
**Solution**:
328328
```bash
329-
# Find process using the port (e.g., 5050)
330-
lsof -i :5050
329+
# Find process using the port (e.g., 9080)
330+
lsof -i :9080
331331

332332
# Kill the process
333333
kill <PID>
@@ -367,7 +367,7 @@ After setting up your development environment and exploring the code:
367367
1. **Run the Examples**: Start with Chapter 2 and work through each chapter sequentially
368368
2. **Modify the Code**: Try adding new features or changing existing functionality
369369
3. **Build Your Own Service**: Create a new microservice using the patterns learned
370-
4. **Integrate Services**: Practice calling one service from another using REST Client
370+
4. **Integrate Services**: Practice calling one service from another using the REST Client
371371
5. **Deploy to Production**: Learn about deploying MicroProfile applications to cloud platforms
372372
373373
## Additional Resources

0 commit comments

Comments
 (0)