Main > Free Download Search >

Free admin area software for linux

admin area

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1027
NG-Admin 1.2.8

NG-Admin 1.2.8


NG-Admin is designed for the content management of Databases. more>>
NG-Admin is designed for the content management of Databases, i.e. to browse, add, edit and delete data. It is somewhat similar to phpMyAdmin, but it is specialized to edit contents of the websites, not to edit the database structure. NG-Admin features are very easy to use and highly tunable.
NG-Admin was initially based on DASystem by Degtyarev Dmitriy, but because this project is no longer updated (last from 2003-11-28), we wrote lots of code completely new and added new functions and modules.
Main features:
- Easy to use, do not require training or special knowledge
- Easy to tune, just edit a single configuration file
- Multilingual support (English and German at the moment)
- Theme support (currently blue, red and a silver theme)
- Easy accessible menu always on the screen
- Automatical generation of menus and forms
- Supports MySQL
- Supports Browser upload of images and files
- Uploads can be made to local Directory or to a FTP-Server
- Cross-table data access
- Support for external modules
Enhancements:
- A new field named "timestamp_manual" has been added.
- As it says, it is to set values of timestamp fields manually.
- The error-messages are more detailed.
- By clicking "details" in the message box (available only on error), you will see a more detailed description about the error and why it occurred.
- The configuration file is easier to understand and has better comments sections.
- Minor fixes and speed improvements were made with colors and delete.
- A bug with local upload was fixed.
<<less
Download (0.050MB)
Added: 2007-07-03 License: GPL (GNU General Public License) Price:
845 downloads
iNet Admin Daemon 0.0.5

iNet Admin Daemon 0.0.5


iNet Admin Daemon interacts with services such as an Apache2 load balanced environment. more>>
iNet Admin Daemon interacts with services such as an Apache2 load balanced environment, a MySQL 5 clustered environment, PureFTPD, PowerDNS, Cacti, Nagios.
iNet Admin Daemon has various other services to create central ease of management and integration with these services for hosting companies.
Enhancements:
- Functional modules were added for existing services connecting to DBmail, PowerDNS, Apache2, and MySQL 5.
<<less
Download (0.005MB)
Added: 2006-06-21 License: The PHP License Price:
1220 downloads
queue-admin 1.0

queue-admin 1.0


queue-admin provides a shell script for managing the mail queue of the qmail MTA. more>>
queue-admin provides a shell script for managing the mail queue of the qmail MTA.

queue-admin is a bash2 shell script for managing the mail queue of the qmail MTA.

It can provide a summarized list of the messages in the queue, optionally filtered by number or by whether a message is local or remote.

The messages themselves can be listed, viewed, or deleted by the same criteria.

It can also search for expressions within the messages, and can return the entire email or only the line where the expression was found.

The output is colorized.

<<less
Download (0.002MB)
Added: 2007-04-10 License: GPL (GNU General Public License) Price:
931 downloads
SQL Admin 0.2.2

SQL Admin 0.2.2


SQL Admin is a Java client application to connect and send queries to different databases through JDBC. more>>
SQL Admin is a Java client application to connect and send queries to different databases through JDBC.
SQLAdmin uses the brand new SWT Toolkit. The main idea is to create a multiplatform and multidatabase thin client. For example, you can connect to an Microsoft SQL Server from a Linux machine, or connect to a PostgreSQL/Linux server from a Windows machine using the same application.
Main features:
- Based on the SWT Tookit. Java applications can use the native Toolkit with a platform independant API. For example, SQLAdmin uses GTK2 in Linux
- Lightweight : The application itself is small, and the SWT provides a nice gui with a very small footprint
- Abstract JDBC driver backend. User should configure only basic parameters like server, port, and login without the need to know about Class names or JDBC URLs
- Graphical view of connections and database metadata such as schemas, tables and fields
- Multiple query execution. Also supports embedded comments on SQL Text
- Log window to view system messages and query results
- Table structure view
- Fast table rows view
<<less
Download (0.087MB)
Added: 2006-07-21 License: GPL (GNU General Public License) Price:
1192 downloads
Aw::Admin 0.16.7

Aw::Admin 0.16.7


Aw::Admin is a Perl extension for the ActiveWorks C Administration Libraries. more>>
Aw::Admin is a Perl extension for the ActiveWorks C Administration Libraries.

SYNOPSIS

use Aw MyFavoriteBroker@my.host.net:6449;
require Aw::Admin::ServerClient;

my $desc = new Aw::ConnectionDescriptor;

my $server = new Aw::Admin::ServerClient ( "my.host.net:6449", $desc );
#
# fix new to use default host weve already set..
#

my @brokers = $server->getServerBrokers ( );

foreach ( @brokers ) {
print "Territory : $_->{territory_name}n";
print "Broker Host: $_->{broker_host}n";
print "Broker Name: $_->{broker_name}n";
print "Description: $_->{description}n";
}

<<less
Download (0.12MB)
Added: 2007-06-21 License: Perl Artistic License Price:
855 downloads
IMAP::Admin 1.6.4

IMAP::Admin 1.6.4


IMAP::Admin is a Perl module for basic IMAP server administration. more>>
IMAP::Admin is a Perl module for basic IMAP server administration.

SYNOPSIS

use IMAP::Admin;

$imap = IMAP::Admin->new(Server => name.of.server.com,
Login => login_of_imap_administrator,
Password => password_of_imap_adminstrator,
Port => port# (143 is default),
Separator => ".", # default is a period
CRAM => 1, # off by default, can be 0,1,2
SSL => 1, # off by default
# and any of the SSL_ options from IO::Socket::SSL
);

$err = $imap->create("user.bob");
if ($err != 0) {
print "$imap->{Error}n";
}
if ($err != 0) {
print $imap->error;
}
$err = $imap->create("user.bob", "green");
$err = $imap->delete("user.bob");
$err = $imap->h_delete("user.bob");

$err = $imap->subscribe("user.bob");
$err = $imap->unsubscribe("user.bob");

$err = $imap->rename("bboard", "newbboard");

@quota = $imap->get_quotaroot("user.bob");
@quota = $imap->get_quota("user.bob");
$err = $imap->set_quota("user.bob", 10000);

@acl = $imap->get_acl("user.bob");
%acl = $imap->get_acl("user.bob");
$err = $imap->set_acl("user.bob", "admin", "lrswipdca", "joe", "lrs");
$err = $imap->delete_acl("user.bob", "joe", "admin");

@list = $imap->list("user.bob");
@list = $imap->list("user.b*");

$imap->{Capability} # this contains the Capabilities reply from the IMAP server

$imap->close; # close open imap connection

IMAP::Admin provides basic IMAP server adminstration. It provides functions for creating and deleting mailboxes and setting various information such as quotas and access rights.

Its interface should, in theory, work with any RFC compliant IMAP server, but I currently have only tested it against Carnegie Mellon Universitys Cyrus IMAP and Mirapoints IMAP servers. It does a CAPABILITY check for specific extensions to see if they are supported.

Operationally it opens a socket connection to the IMAP server and logs in with the supplied login and password. You then can call any of the functions to perform their associated operation.

Separator on the new call is the hiearchical separator used by the imap server. It is defaulted to a period ("/" might be another popular one).

CRAM on the new call will attempt to use CRAM-MD5 as the login type of choice. A value of 0 means off, 1 means on, 2 means on with fallback to login. *Note* this options requires these perl modules: Digest::MD5, Digest::HMAC, MIME::Base64

SSL on the new call will attempt to make an SSL connection to the imap server. It does not fallback to a regular connection if it fails. It is off by default. IO::Socket::SSL requires a ca certificate, a client certificate, and a client private key. By default these are in current_directory/certs, respectively named ca-cert.pem, client-cert.pem, and client-key.pem. The location of this can be overridden by setting SSL_ca_file, SSL_cert_file, and SSL_key_file (youll probably want to also set SSL_ca_path).

I generated my ca cert and ca key with openssl: openssl req -x509 -newkey rsa:1024 -keyout ca-key.pem -out ca-cert.pem
I generated my client key and cert with openssl: openssl req -new -newkey rsa:1024 -keyout client-key.pem -out req.pem -nodes openssl x509 -CA ca-cert.pem -CAkey ca-key.pem -req -in req.pem -out client-cert.pem -addtrust clientAuth -days 600

Setting up SSL Cyrus IMAP v 2.x (completely unofficial, but it worked for me) add these to your /etc/imapd.conf (remember to change /usr/local/cyrus/tls to wherever yours is) tls_ca_path: /usr/local/cyrus/tls tls_ca_file: /usr/local/cyrus/tls/ca-cert.pem tls_key_file: /usr/local/cyrus/tls/serv-key.pem tls_cert_file: /usr/local/cyrus/tls/serv-cert.pem
For my server key I used a self signed certificate: openssl req -x509 -newkey rsa:1024 -keyout serv-key.pem -out serv-cert.pem -nodes -extensions usr_cert (in openssl.cnf I have nsCertType set to server)
I also added this to my /etc/cyrus.conf, it shouldnt strictly be necessary as clients that are RFC2595 compliant can issue a STARTTLS to initiate the secure layer, but currently IMAP::Admin doesnt issue this command (in SERVICES section): imap2 cmd="imapd -s" listen="simap" prefork=0
where simap in /etc/services is: simap 993/tcp # IMAP over SSL

<<less
Download (0.014MB)
Added: 2007-04-19 License: Perl Artistic License Price:
920 downloads
Firewall Admin 0.4

Firewall Admin 0.4


Firewall Admin is not a firewall generator. more>>
Firewall Admin is not a firewall generator. This tool allows network administrators to manage iptables rules from anywhere though a simple administration interface through a Web browser. Any user can put some extra plug-ins to interact with netfilter modules.
Main features:
- View rules of Filter, NAT and Mangle tables
- Create and delete chains
- Create, replace and delete rules (filter, nat and mangle)
- Modules: tcp, udp, icmp, limit, mac, multiport, state, iprange, string, owner, comment, quota, mport, time, dscp, ecn, pktype, connmark and random
- Packets/bytes counter
- Rename userchains
- Mangle targets: TOS, MARK and DSCP
- Up and Down rules
- Change policy (ACCEPT and DROP)
- Flush chains
- Configuration
- Backup and Restore firewall rules and chains
Enhancements:
- fixed userchains targets to support no targets (default: ACCEPT)
- ruleoptions directory was removed (performance impact)
- support for patch-o-matic modules comment and quota
- support for native modules mport, time, string, dscp, ecn, pktype and connmark
- support for native modules random
- packages/bytes counter support
- rename userchains
- added support to mangle targets: MARK and DSCP
- disabled notices in php
<<less
Download (0.056MB)
Added: 2006-07-12 License: GPL (GNU General Public License) Price:
1211 downloads
PAiN 0.46

PAiN 0.46


PAiN is a new MUD code base written in Java. more>>
PAiN project is a new MUD code base written in Java.
PAiN is a new MUD codebase written in Java. It provides a general purpose persistence engine (PAiN DB) and the ability to do dynamic code reloading.
Main features:
- Pure Java database engine (transparent constant-time object access, tracking of the dirty state, transactions and savepoints support).
- Static server code (connection handling, support for code reloading and base interfaces).
- Dynamic reloadable set of action classes and plugins (virtual world logic code and plugins).
- Graphical tool to administrate server and database
Enhancements:
- PAiNDB: Collections could be saved separately from object image.This option should be used if collection is not the only field of dbobject, it has size of 20-40 items and dbobject fields are changed often. Saving collection separately will reduce flushing and object backup time inside transactions.
- PAiNDB: DbObject.provideSchema() is now static method and required for all non-abstract DBObject impls. This allows to import class schema into db without object instantiation.
- GUITool: fully rewritten, modules concept added.
- Codebase: more admin console commands.
- Tinylyb: roles removed: Reset, ResetGroup. SpaceGroup was renamed to Area.
- Tinylib: more shell implemented(this shell should be used to show multipage output)
- Tinylib: online builder bugfixing.
- PAiNDB: fixed bug with error on objects removal with non-empty StringMap type fields.
- Tinylib: bugs in @build mode fixed. More complete visualization for array-type fields
- Tinylib: number of small enhancements.
<<less
Download (0.33MB)
Added: 2006-12-19 License: GPL (GNU General Public License) Price:
1039 downloads
OpenVPN Admin 1.9.4

OpenVPN Admin 1.9.4


OpenVPN-Admin is a GUI for OpenVPN, programmed in Mono. more>>
OpenVPN Admin is a GUI for OpenVPN it is writen in Mono and runs under Linux and Windows.

Included in OpenVPN-Admin is a Certificate wizard and a certificate management for the client.

<<less
Download (0.092MB)
Added: 2007-02-28 License: GPL (GNU General Public License) Price:
598 downloads
OpenVISP Admin 0.96

OpenVISP Admin 0.96


OpenVISP Admin is a fork of Postfix Admin. more>>
OpenVISP Admin project is a fork of Postfix Admin.
As administrator of a highly centralized and industrial grade hosting system, I need some webinterface to update data on a SQL database.
First I have used Postfix Admin to manage mail data but I was looking for more specialized system that is not a system that takes hours and is not configurable...
So I have started to modify Postfix Admin to suits my needs and so on.
Why OpenVISP Admin ?
I dont like 3 things on current Postfix Admin :
- The new license that has moved from MPL 1.1 to another proprietary one
- The bloody webforums and the fact that no authors was interested by my patches
- No CVS / CVSweb to see changes between versions
So this is basicaly why I have started a fork of Postfix Admin.
Main features:
- Quota enforcement
- Domain aliases
- Antivirus Checkbox when creating domain
- Antispam Checkbox when creating domain
- Sender / Domain verification checkboxes when creating domain
- GreyListing Checkbox when creating domain
- Spam Assassing Tag
- Spam Assassin Tag score value
- Tranport value when domain is backup MX
- Be more user friendly eg one login password with rights to get what he is allowed to
- Allow Postmasters to get access to APC Masterswitch
- To be done :
- Adding mod_vhs option for FTP and Web servicing purposes
- Allow postmaster to modify per aliases and per mailboxes SA values, etc..
- Allow user to modify their SA values on their mailboxes but also on their aliases
- Allow users to see their weblogs
- Allow users to search in logs for rejected messages and the reason why
- Redesign auth system to be more flexible.
How will this works ?
Interface
All the web interface will store data into MySQL (or PostgreSQL but this is not tested, I need some testers for that). The data is replicated and interfaced to a LDAP with a back_perl.
OpenLDAP back_perl
The back_perl scripts will be released when OpenVISP Admin 1.0 will be released.
Enhancements:
- The setup of all directories has been changed to be more clear about docs and contrib.
- lmtpd filtering options have been added.
- There is a new module to handle Web and FTP hosting.
- Some parts of the Web interface have been changed.
- More security checks have been added.
- There are many other new features.
<<less
Download (0.38MB)
Added: 2007-05-26 License: MPL (Mozilla Public License) Price:
883 downloads
Kiosk Admin Tool 1.0

Kiosk Admin Tool 1.0


Kiosk Admin Tool is a Point&Click tool for system administrators. more>>
Kiosk Admin Tool is a Point&Click tool for system administrators to enable KDEs KIOSK features or otherwise preconfigure KDE for groups of users.
Enhancements:
- Fixed lookup of UNIX-groups in kiosktool-kdedirs
- Removed "Lock down system wide Desktop icons", it was not implemented
- Removed duplicate "Disable Menu Editing" entry
<<less
Download (1.1MB)
Added: 2005-07-13 License: GPL (GNU General Public License) Price:
882 downloads
ASN RADIUS Admin 0.5

ASN RADIUS Admin 0.5


ARAs goal is to create simple but convenient solution for managing the FreeRADIUS server. more>>
ARAs goal is to create simple but convenient solution for managing the FreeRADIUS server.
ARA is PHP web-app operating on FreeRADIUS storage (currently only MySQL database). Look on its overview and decide is it right tool for you.
Enhancements:
- Visual polishing and end-user experience improvements.
- An easy system to integrate RADIUS users private information.
<<less
Download (0.040MB)
Added: 2006-11-29 License: GPL (GNU General Public License) Price:
1068 downloads
Minimalist Admin 0.4

Minimalist Admin 0.4


Minimalist Admin is a very simple Web interface for the Minimalist mailing lists manager. more>>
Minimalist Admin is a very simple Web interface for the Minimalist mailing lists manager.

Installation:

1. Unarchive Minimalist Manager

Make sure that you are in your WWW directory and then unarchive the Minimalist Manager archive (whatever the filename is):

$ tar -zxvf minimalist-manager-0.3.tgz

2. Configure

Check the config.inc file. There you can specify settings that are relevant to your setup.

3. Create list configuration

The list information is taken from the lists.lst file from Minimalist.

In the directory /lists you find 2 files. One .css file in which you can modify the appearance of the subscribe/unsubscribe window. And one config file, in which relevant information which describes the mailinlist.

You have to create at least the config file per list. If there is no css file it will use the toplevel stylesheet located in the root of Minimalist Manager.

4. Done

This is all that is needed. Fire up your browser and go to the site that you specified to host Minimalist Manager.

<<less
Download (0.010MB)
Added: 2005-10-22 License: GPL (GNU General Public License) Price:
1463 downloads
JVending 1.3.10a

JVending 1.3.10a


JVending is a P2P (JXTA) based mobile content provisioning system. more>>
JVending project bridges P2P networks and wireless delivery of content to mobile devices. Due to high latency of wireless connections, it is not practical to directly hook up the mobile devices to the peer network, so I have taken a different approach with JVending.

A user sets up a personal provisioning server on their PC and hooks it into the network. Through the P2P network, we create a federation of provisioning servers. The mobile devices use the federated provisioning servers as content portals.

JVending differs from P2P systems, such as Gnutella or "Project JXTA" reference implementation, in the following ways. JVending provides:

1. Catalog management
2. Device detection, which delivers the appropriate content based upon the type of browser or device
3. Web based browsing of content, so you can share with your friends on a wired or wireless network, after you have already collected the content.
4. The ability to search for and distribute packaged archives on the peer network.
5. Web links tying together the network.
6. PPG integration for pushing content to mobile devices.

For 2005 - 2006, the major goals of JVending (roughly in order of importance) are:

1. Expanding P2P support, including more in the area of wireless messaging (SMS)
2. JSR-124 compliance
3. Performance testing and monitoring capability
4. Multimedia server and J2ME support. This covers full integration between the MMS Client and the provisioning server.

Setting up the Environment

Follow these steps:

1. Make sure that you have J2SE 1.4.2 JDK installed. If not, go to http://java.sun.com/j2se/1.4.2/download.html and download and install the JDK (not JRE). I have not tested with J2SE 1.5 JDK, so it may or may not work with that version.
2. Download the jvending-standalone.zip file from the JVending project site.
3. Unzip the file into a directory of your choice, say /jvending
4. Set the JAVA_HOME environmental variable, depending on your OS. In windows, you can do this through the Control Panel/System/Advanced/Environmental Variable: JAVA_HOME =
EXAMPLE: JAVA_HOME=c:Programsj2sdk1.4.2_06

Starting JVending

1. Go to the bin directory and click on the run.bat (for windows) or run.sh for Unix.
2. The first time you start JVending, you will see a JXTA Configurator screen show up. Type in your user name and password/verify password. Click OK.
3. Wait 10 seconds for JVending to finish its startup sequence and then go to http://localhost:80/jvending/login. If you get a 404 error, wait a few more seconds and try again. Login ID/Password: admin/admin. Click "Submit Query" button. You will now see the JVending home page.
<<less
Download (18.4MB)
Added: 2005-04-20 License: LGPL (GNU Lesser General Public License) Price:
1649 downloads
GRUB Web Admin 1.180-4

GRUB Web Admin 1.180-4


GRUB Web Admin module allows webmin (a web-based interface for system administration for Unix) to manage the grub bootloader. more>>
GRUB Web Admin module allows webmin (a web-based interface for system administration for Unix) to manage the grub bootloader.

<<less
Download (0.037MB)
Added: 2006-08-02 License: GPL (GNU General Public License) Price:
1180 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5