Jave issue

FrankHung

Member
If I use webcallserver for long time(5days) then the jave will use very big memory. Do you know hot do I solve it?
Please see the attached file.

Best regards,
Frank
 

Attachments

Max

Administrator
Staff member
Hello.
Please update to the latest build from this page and check again. If the issue persists, please prepare a report as described here, including gc-core-* logs and send to support@flashphoner.com, we will check. Also check what top command shows.
Anyway, 2.91 Gb for 5 days does not look awfully, if this value does not permanently grows.
 

FrankHung

Member
2.91 Gb Just for 4 hours that is for version 5.1x
Now I change to 5.2x and the memory status is ok unity now. If I have as issue then ask you.
Another question that is the google chrome can play sound on streaming start on this version 5.2x?
 

Max

Administrator
Staff member
Hello.
Another question that is the google chrome can play sound on streaming start on this version 5.2x?
Unfortunately no, a user action is required to enable sound on autoplay in Chrome. Moreover, Firefox announces the same autoplay policy change in near future.
Why change the account and password automaticly?
In WCS 5.0 and 5.1, the WCS manager module performed web interface functions and stored admin password in its own database. In WCS 5.2 this module was removed, now WCS core module performs all the functions including web interface. User credentials now is stored in WCS_HOME/conf/database.yml file. So admin and demo passwords was reset to default during update.
You can still change admins password and demo password through web interface: Security - Set password.
 

Max

Administrator
Staff member
Hello
We have removed your recent post from public view because it contains private information including license number which must not be open in public.
If you have any payment issues please send email directly to sales@flashphoner.com and attach license number.
 

Max

Administrator
Staff member
Good day.
Please make sure path to your private key contains only allowed symbols (latin characters, digits, dash and slash).
Also please provide us server logs when problem occurs to support@flashphoner.com
 

Max

Administrator
Staff member
Please check if the stream can be played on your server with default server settings (WCS_HOME/conf/flashphoner.properties).
Or, send its SSH credentials to support@flashphoner.com - we'll check the configuration.
 

Max

Administrator
Staff member
Good day.
We have checked the stream and the server. It seems like your RTMP host is unreachable from your WCS server (real ip addresses are hidden):
Code:
PING host_ip (host_ip) 56(84) bytes of data.
From gateway_ip icmp_seq=1 Destination Host Unreachable
From gateway_ip icmp_seq=2 Destination Host Unreachable
From gateway_ip icmp_seq=3 Destination Host Unreachable
...
So please check your network configuration.
Also, we recommend you to adjust Java Heap memory setting in WCS_HOME/conf/wcs-core.properties file as follows
Code:
-Xmx8g
-Xms8g
With default setting 1024M Java Garbage Collector works every 2 second on your server, so it reduces server perfomance.
 

FrankHung

Member
1. real ip addresses are hidden => but why the stream can play on your server address?
2. With default setting 1024M Java Garbage Collector works every 2 second on your server, so it reduces server perfomance. => How to set to the value?
 

Max

Administrator
Staff member
but why the stream can play on your server address?
Because this RTMP server is available from our server:
Code:
PING host_ip (host_ip) 56(84) bytes of data.
64 bytes from host_ip: icmp_seq=1 ttl=55 time=175 ms
64 bytes from host_ip: icmp_seq=2 ttl=55 time=175 ms
64 bytes from host_ip: icmp_seq=3 ttl=55 time=175 ms
...
Please ping your RTMP server from your gateway to check
How to set to the value?
In WCS_HOME/conf/wcs-core.properties file replace the string
Code:
-Xmx1024M
to the following strings
Code:
-Xmx8g
-Xms8g
then restart WCS
 
Top