6 Configuring Services
Important:
The software described in this documentation is either in Extended Support or Sustaining Support. See Oracle Open Source Support Policies for more information.
We recommend that you upgrade the software described by this documentation as soon as possible.
This chapter contains information about any configuration options for Oracle Cloud Native Environment, including configuring the Platform API Server and Platform Agent services.
Configuring the Platform API Server
The Platform API Server runs as a Systemd service, named
olcne-api-server. You can get logs for this
service using:
sudo journalctl -u olcne-api-serverBy default, the service runs on TCP port 8091. You can change this and other Platform API Server settings by editing the Systemd service unit file so that the binary is invoked to use extra options.
olcne-api-server options:
-
[-p|--port] port_numberSpecifies the port that the Platform API Server binds to. Defaults to
8091if unspecified. -
[-i|--installables] installables_pathSpecifies the path to the directory of installable modules. Defaults to
/etc/olcne/modules. -
[-x|--insecure]Allows the gRPC server to accept clients that don't securely establish their identity.
To reconfigure the Platform API Server to use any of these options,
you can edit the Systemd unit file at
/usr/lib/systemd/system/olcne-api-server.service
and append the option to the ExecStart line.
For example:
[Unit]
Description=Platform API Server for Oracle Cloud Native Environments
Wants=network.target
After=network.target
[Service]
ExecStart=/usr/libexec/olcne-api-server -i /etc/olcne/modules --port 9083
WorkingDirectory=/var/olcne
User=olcne
Group=olcne
Restart=on-failure
[Install]
WantedBy=multi-user.targetIf you edit the Systemd unit file, you must run the following commands for the changes to take effect:
sudo systemctl daemon-reload
sudo systemctl restart olcne-api-server.serviceNote:
If you change the port value for this service, take this into account for all other instructions provided in the documentation.
Configuring the Platform Agent
The Platform Agent runs as a Systemd service, named
olcne-agent. You can get logs for this service
using:
sudo journalctl -u olcne-agentBy default, the service runs on TCP port 8090. You can change this and other Platform Agent settings by editing the Systemd service unit file so that the binary is invoked to use extra options.
olcne-agent options:
-
[-p|--port] port-numberSpecifies the port that the Platform Agent service binds to. Defaults to
8090if unspecified. -
[-x|--insecure]Allows the gRPC server to accept clients that don't securely establish their identity.
To reconfigure the Platform Agent to use any of these
options, you can edit the Systemd unit file at
/usr/lib/systemd/system/olcne-agent.service and
append the option to the ExecStart line.
If you edit the Systemd unit file, you must run the following commands for the changes to take effect:
sudo systemctl daemon-reload
sudo systemctl restart olcne-agent.serviceNote:
If you change the port value for this service, take this into account for all other instructions provided in the documentation.