Difference between revisions of "AOLserver 4 on Debian"
Jump to navigation
Jump to search
(corrected capitalisation use of AOLserver) |
|||
(10 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
− | Some quick and easy steps to getting | + | Some quick and easy steps to getting AOLserver 4 up and running on Debian 3.1: |
<pre> | <pre> | ||
Line 5: | Line 5: | ||
apt-get install aolserver4 | apt-get install aolserver4 | ||
− | # to get ns.h and makefiles to build your own custom C or C++ modules | + | # optional: to get ns.h and makefiles to build your own custom C or C++ modules |
apt-get install aolserver4-dev | apt-get install aolserver4-dev | ||
− | # to get some potentially useful documentation, should you choose to read it | + | # optional: to get some potentially useful documentation, should you choose to read it |
apt-get install aolserver4-doc | apt-get install aolserver4-doc | ||
+ | |||
+ | # optional: module: Tcl API for AOLserver Caches | ||
+ | apt-get install aolserver4-nscache | ||
+ | |||
+ | # optional: module that implements IMAP4 interface | ||
+ | apt-get install aolserver4-nsimap | ||
+ | |||
+ | # optional: module for LDAP | ||
+ | apt-get install aolserver4-nsldap | ||
+ | |||
+ | # optional: module: module for SSL mode -- beta module for OpenSSL | ||
+ | apt-get install aolserver4-nsopenssl | ||
+ | |||
+ | # optional: module: Postgres connector | ||
+ | apt-get install aolserver4-nspostgres | ||
+ | |||
+ | # optional: module: performs SHA1 hashes -- warning, the SHA1 hash it provides is not to spec | ||
+ | apt-get install aolserver4-nssha1 | ||
+ | |||
+ | # optional: Module for XML support | ||
+ | apt-get install aolserver4-nsxml | ||
</pre> | </pre> | ||
Line 18: | Line 39: | ||
</pre> | </pre> | ||
− | And you are running | + | And you are running AOLserver. Congratulations. To make changes to your configuration file, visit: |
<pre> | <pre> | ||
Line 29: | Line 50: | ||
/var/log/aolserver4/aolserver4.log | /var/log/aolserver4/aolserver4.log | ||
</pre> | </pre> | ||
+ | |||
+ | == See also == | ||
+ | |||
+ | * [[PostgreSQL on Debian]] | ||
+ | * [[Configuring AOLserver 4 and PostgreSQL on Debian]] |
Latest revision as of 17:54, 12 December 2005
Some quick and easy steps to getting AOLserver 4 up and running on Debian 3.1:
# install aolserver4 apt-get install aolserver4 # optional: to get ns.h and makefiles to build your own custom C or C++ modules apt-get install aolserver4-dev # optional: to get some potentially useful documentation, should you choose to read it apt-get install aolserver4-doc # optional: module: Tcl API for AOLserver Caches apt-get install aolserver4-nscache # optional: module that implements IMAP4 interface apt-get install aolserver4-nsimap # optional: module for LDAP apt-get install aolserver4-nsldap # optional: module: module for SSL mode -- beta module for OpenSSL apt-get install aolserver4-nsopenssl # optional: module: Postgres connector apt-get install aolserver4-nspostgres # optional: module: performs SHA1 hashes -- warning, the SHA1 hash it provides is not to spec apt-get install aolserver4-nssha1 # optional: Module for XML support apt-get install aolserver4-nsxml
After installing the package(s) you want:
/etc/init.d/aolserver4 start
And you are running AOLserver. Congratulations. To make changes to your configuration file, visit:
/etc/aolserver4/aolserver4.tcl
To view your server log, visit:
/var/log/aolserver4/aolserver4.log