cancel
Showing results for 
Search instead for 
Did you mean: 

Server.conf file in Symantec Opscenter 7.5.0.6

BVshet
Level 5

Hi All,

Can you plz help me find meaning of various terms in server.conf file of Symantec Opscenter.

Like C is for cache size etc.

 

Many Thanks,

 

1 ACCEPTED SOLUTION

Accepted Solutions

Deeps
Level 6

The following default options appear in the server.conf file:

-n OPSCENTER_<HOST_NAME>    -x tcpip(LocalOnly=YES;ServerPort=13786)
-gd DBA -gk DBA -gl DBA -gp 4096 -ti 0 -c 256M -ch 1024M -cl 256M
-zl -os 1M -m -o "<INSTALL_PATH>\OpsCenter\server\db\log\server.log"

 

-x tcpip(LocalOnly=YES;ServerPort=13786)
Indicates what kind of connections are allowed in addition to shared memory. For example, local TCP/IP connections that use port 13785.

-gd DBA   -gk DBA   -gl DBA 
Indicates that the DBA user is the account used to start, stop, load, and unload data.

- gp 4096
Indicates the maximum page size (in bytes) for the database. This parameter is given during database creation.

- ti 0
Indicates the client idle time that is allowed before shutdown. By default, no idle time is allowed, which prevents the database from shutting down.

-c 256M  : indicates the initial memory that is reserved for caching database
pages and other server information. The default value is 256 MB.

-cl 256M indicates the minimum cache size, as a limit to automatic cache
resizing. The default minimum cache size is 256 MB.

-ch 1024M indicates the maximum cache size, as a limit to automatic cache
growth. The default maximum cache size is1024 MB.

-m   : Truncates the transaction log when a checkpoint is done

 

DeepS

 

 

View solution in original post

3 REPLIES 3

Deeps
Level 6

The following default options appear in the server.conf file:

-n OPSCENTER_<HOST_NAME>    -x tcpip(LocalOnly=YES;ServerPort=13786)
-gd DBA -gk DBA -gl DBA -gp 4096 -ti 0 -c 256M -ch 1024M -cl 256M
-zl -os 1M -m -o "<INSTALL_PATH>\OpsCenter\server\db\log\server.log"

 

-x tcpip(LocalOnly=YES;ServerPort=13786)
Indicates what kind of connections are allowed in addition to shared memory. For example, local TCP/IP connections that use port 13785.

-gd DBA   -gk DBA   -gl DBA 
Indicates that the DBA user is the account used to start, stop, load, and unload data.

- gp 4096
Indicates the maximum page size (in bytes) for the database. This parameter is given during database creation.

- ti 0
Indicates the client idle time that is allowed before shutdown. By default, no idle time is allowed, which prevents the database from shutting down.

-c 256M  : indicates the initial memory that is reserved for caching database
pages and other server information. The default value is 256 MB.

-cl 256M indicates the minimum cache size, as a limit to automatic cache
resizing. The default minimum cache size is 256 MB.

-ch 1024M indicates the maximum cache size, as a limit to automatic cache
growth. The default maximum cache size is1024 MB.

-m   : Truncates the transaction log when a checkpoint is done

 

DeepS

 

 

Deeps
Level 6

Hi BVshet, let me know if this answer your querry ?

 

DeepS

BVshet
Level 5

Hi DeepS,

 

Thanks. :)