Last modified by michaely on 2021/09/10 22:40

Show last authors
1 ====== On this page ======
2
3
4
5 {{toc maxLevel="5"/}}
6
7 == Symptoms ==
8
9 After an upgrade to Java 1.7.0_51 the launcher will mention that Java does not allow self signed application to run.
10
11 == Cause ==
12
13 Java 1.7.0_51 no longer allows self-signed JWS applications from running. iSymphony 2.8.1 and below are self signed applications.
14
15 == Resolution ==
16
17 Upgrade to iSymphony 2.8.2+ which is now signed via a valid certificate authority.
18
19 If you can access the iSymphony client Administration Interface you can update using the Automated Update Instructions in the [[doc:ISYM28.Updating]] guide.
20
21 If you cannot access the client you will have to use the following commands to update the server via the iSymphony CLI.
22
23 {{code language="bash"}}
24 telnet localhost 50001
25 check_for_updates
26 update
27 {{/code}}
28
29 {{info}}
30 You can type **update_state** in the iSymphony CLI to check on the status of the update.
31 {{/info}}
32
33 After running the **update** command you will be droped back down to the iSymphony prompt while the update is downloaded. Once the download is compete you will be kicked out of the iSymphony CLI as the iSymphony Server is restarted for the update to apply. After a few minutes log back into the iSymphony CLI via the command **telnet localhost 50001 **and then type **version** to check that the server update was successful and you are now running the correct version. If the version is reporting correctly the update was applied and you can restart your clients to update the client files.
34
35
36
37 If the version is not correct and the update did not seem to apply run the following commands to install the update manually.
38
39 {{code language="bash"}}
40 cd /opt/isymphony/server/update/server
41 chmod +x install.sh
42 ./install.sh
43 {{/code}}
44
45 Next restart the server based on the type of installation you have.
46
47 **RPM**
48
49 {{code}}
50  service iSymphonyServer restart
51 {{/code}}
52
53 **TAR**
54
55 {{code}}
56 /opt/isymphony/server/shutdown.sh
57 /opt/isymphony/server/startup.sh
58 {{/code}}
59
60 == Related Content ==
61
62 {{expand title="Expand to see related content"}}
63 {{unmigrated-inline-wiki-markup}}
64 {dynamiccontentbylabel:showLabels=false|showSpace=false}
65 {{/unmigrated-inline-wiki-markup}}
66 {{/expand}}
iSymphony