@@ -179,11 +179,11 @@ To exit development mode, press `Ctrl+C` or type `q` and press Enter.
179179Once 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
189189Replace `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
333333kill <PID>
@@ -367,7 +367,7 @@ After setting up your development environment and exploring the code:
3673671. **Run the Examples** : Start with Chapter 2 and work through each chapter sequentially
3683682. **Modify the Code** : Try adding new features or changing existing functionality
3693693. **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
3713715. **Deploy to Production** : Learn about deploying MicroProfile applications to cloud platforms
372372
373373## Additional Resources
0 commit comments