-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathREADME
55 lines (38 loc) · 1.91 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
About iStat Server
iStat Server is a system monitoring daemon that is used in conjunction with iStat View for iOS (https://bjango.com/ios/istat/) and iStat View for macOS (https://bjango.com/mac/istat/) to remotely monitor computers.
Supported OSs
- Linux
- FreeBSD, DragonFly BSD, OpenBSD, NetBSD and other BSD based OSs
- AIX
- Solaris
- HP-UX (Still in development and not tested)
Requirements
- C and C++ compilers such as gcc and g++.
- Auto tools (autoconf and automake).
- OpenSSL/libssl + development libraries.
- sqlite3 + development libraries.
- libxml2 + development libraries.
Optional Libraries
- libavahi + development libraries.
- lm_sensors/libsensors4 + development libraries.
We have a package guide available to help you install all the required packages for your OS - https://github.com/bjango/istatserverlinux/wiki/Package-Guide
Building and starting iStat Server
- cd /path/to/istatserver
- ./autogen
- ./configure
- make
- sudo make install
- sudo /usr/local/bin/istatserver -d (daemon mode)
A default passcode is generated on install. It can be found in the preference file, which is generally located at /usr/local/etc/istatserver/istatserver.conf. iStat View will ask for this passcode the first time you connect to your computer.
Upgrading iStat Server
Upgrades follow the same process as standard installs. Please stop istatserver if its running then run the normal build process.
Example boot scripts for rc.d, upstart and system are located inside the resources folder. You may need to customize these depending on your OS
Starting with systemd
- sudo cp ./resource/systemd/istatserver.service /etc/systemd/system/istatserver.service
- sudo service istatserver start
Starting with upstart
- sudo cp ./resource/upstart/istatserver.conf /etc/init/istatserver.conf
- sudo start istatserver
Starting with rc.d
- sudo cp ./resource/rc.d/istatserver /etc/rc.d/istatserver
- sudo /etc/rc.d/istatserver start