You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After successes run server we can begin create chat. If you get error create issue in [github repository](https://github.com/Levhav/comet-server/issues).
64
+
53
65
# Launch
54
66
Run in console mode
55
67
@@ -68,18 +80,6 @@ systemctl start comet.service
68
80
```
69
81
70
82
71
-
# Add to Startup
72
-
73
-
74
-
```
75
-
cp ./comet.service /etc/systemd/system
76
-
systemctl daemon-reload
77
-
systemctl enable comet.service
78
-
```
79
-
80
-
81
-
After successes run server we can begin create chat. If you get error create issue in [github repository](https://github.com/Levhav/comet-server/issues).
82
-
83
83
# Configuring nginx as a reverse proxy
84
84
85
85
In order to configure the operation of comets on one machine with a web server, or just have the ability to work not only on http but also on https, you need to configure the reverse proxy.
Some text editors add unprintable simbols to the utf8 file. After that, the file may look the same but the comet server will not parse it correctly. You can try using another editor or delete the old file and create a new one with the same text.
204
+
205
+
# Error while assembling in CentOS
206
+
207
+
208
+
```
209
+
210
+
CMake Error: The following variables are used in this project, but they are set to NOTFOUND.
211
+
Please set them or make sure they are set and tested correctly in the CMake files:
212
+
MYSQL_INCLUDE_DIR (ADVANCED)
213
+
214
+
```
215
+
216
+
217
+
Can not find the client's mysql header files. You can try installing the mysql-devel package
218
+
219
+
220
+
```
221
+
222
+
yum install mysql-devel
223
+
224
+
```
225
+
226
+
227
+
# Error while assembling in CentOS
228
+
229
+
230
+
```
231
+
232
+
/etc/comet-server/comet-server/src/mystring.cpp:15:51: fatal error: uuid / uuid.h: No such file or directory exists
233
+
#include <uuid/uuid.h>
234
+
235
+
```
236
+
237
+
238
+
Can not find the file uuid.h. You can try installing the libuuid libuuid-devel package
* If you want to understand why you need a server that comets read [Introduction](/docs/Introduction/Introduction)
25
+
* Start API study recommended with aticle [CometQL](/docs/comet/CometQL) and [JavaScript API](/docs/API/JavaScript%20API/JavaScript%20API)
26
+
27
+
# Articles
28
+
29
+
*[Introduction](/docs/Introduction/Introduction) - the description of comet-technology, abilities, sphere of usage and how really work push-notifications.
30
+
*[CometQL documentation](/docs/comet/CometQL) - a server API for work with the comet-server
31
+
*[JavaScript API documentation](/docs/API/JavaScript%20API/JavaScript%20API) - a client API for work with the comet-server
32
+
*[Star.Comet-Chat](/docs/comet/star-comet-chat) - a chat plugin for private correspondence between two users.
33
+
*[Reserved channel names](/docs/API/Reserved%20channel%20names) - description of channels with special properties
34
+
*[An example of sending a message from a bash script](/docs/Examples/An%20example%20of%20sending%20a%20message%20from%20a%20bash%20script)
35
+
*[Error codes in CometQL](/docs/API/Error%20codes%20in%20CometQL) - Error codes that are available when working with CometQL API
36
+
*[Public identifier Developer](/docs/API/Connection%20settings) - What is a "Public ID Developer" and "Secret developer key"
37
+
*[Users authorization](/docs/API/Authorization%20on%20the%20CppComet) - Description of the mechanism on the user authorization server on comets
38
+
*[Creating a simple php chat](https://www.codeproject.com/Articles/1181698/Creating-a-simple-chat-using-CppComet)
*[Fast PHP Comet chat system tutorial](https://www.phpclasses.org/blog/post/452-Fast-PHP-Comet-Chat-System-Tutorial.html)
41
+
*[Example for taking a message getting of the channel in JavaScript](/docs/Examples/How%20to%20take%20a%20message%20out%20of%20the%20channel%20in%20JavaScript)
*[Install](/docs/Administration/Install) - Instructions for assembling and installing comets on your server
47
+
*[Checking the hosting](/docs/Troubleshooting/Checking%20the%20hosting%20for%20possible%20connect%20to%20the%20comet%20server) - Checking the hosting for possible connect to the comet server
48
+
*[load testing](/docs/load%20testing/Stress%20testing) - Example of load testing for comet server with tsung
49
+
*[load testing results](/docs/load%20testing/Report%20about%20testing%20of%2064000%20connections%20online) - Report about testing of 64,000 connections online
50
+
51
+
52
+
# Plans for the development of the project
53
+
54
+
About what improvements are planned, and which ones are already being implemented you can look at [this page](https://github.com/CppComet/comet-server/projects/1/). If there are any suggestions, questions, requests or requests for adding new features, you can [create issue](https://github.com/CppComet/comet-server/issues) or write to tech support after registration.
55
+
56
+
57
+
___
58
+
If you have a question that may be of interest to other users, it's better to ask about the problem on [github](https://github.com/CppComet/comet-server) ([creating issue](https://github.com/CppComet/comet-server/issues))
Copy file name to clipboardExpand all lines: docs/load testing/Report about testing of 64000 connections online.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
# Report about testing of 64,000 connections online
3
3
4
4
5
-
At previous article we examined the [ how to conduct the stress testing.](/docs/load%20testing/Stress%20testing.md) And here I want to show you how I conducted it by myself, and give its results.
5
+
At previous article we examined the [ how to conduct the stress testing.](/docs/load%20testing/Stress%20testing) And here I want to show you how I conducted it by myself, and give its results.
signal(SIGHUP, posix_death_signal); // сигнал, посылаемый процессу для уведомления о потере соединения с управляющим терминалом пользователя. ( может быть перехвачен или проигнорирован программой. )
signal(SIGHUP, posix_log_signal); // сигнал, посылаемый процессу для уведомления о потере соединения с управляющим терминалом пользователя. ( может быть перехвачен или проигнорирован программой. )
0 commit comments