amuck-landowner

Search results

  1. Novacha

    Server management system

    I have created a basic API that you can put on a server. It is very lightweight and currently reports the following: Memory status Disk status CPU status The server's users Network details (bytes sent, bytes received, packets sent, packets received, etc.) Now I will look at implementing this...
  2. Novacha

    Server management system

    Run  pip install pycrypto and then rerun the  fab make_deploy command.
  3. Novacha

    Server management system

    That could be possible. I will see what I can do!
  4. Novacha

    Server management system

    I can see why a lot of providers would be closing off SolusVM. If the application is in any state like the one their API is in (appalling) then it mustn't be that great (I am talking from an administration point of view). Plus there are all those pesky security issues.. I am not quite sure what...
  5. Novacha

    Server management system

    Yep. This was actually developed initially without SolusVM support. That came in later and is entirely optional. This will work with dedicated servers as well since it just pings the IP address.
  6. Novacha

    Server management system

    So, does anyone have any feature requests, after they have used it for a bit? I am planning on doing a UI update sometime in the future.
  7. Novacha

    Server management system

    The new user you created was probably not a superuser. The default permission level for a user is without any admin access. You need to update the field with a SQL query: UPDATE `auth_user` SET is_staff=1, is_superuser=1 WHERE username='YOUR_USERNAME'; Edit: If anyone else wants to create a...
  8. Novacha

    Server management system

    Yes you have to install a MySQL server if don't have one already (and create the database). It will install all the packages to be able to connect to that server though. The default user is admin and the password is pass. I will post a fix to the documentation. Edit: The documentation is now...
  9. Novacha

    Server management system

    You should do the deploy from your local machine. The way it works is that you clone the repo to your computer, enter in the details to your server and let it do all the installation for you (packages, configuration files, etc.).  If you do the install from your local machine (which should have...
  10. Novacha

    Server management system

    On Ubuntu right now, it should be basically a 1-click install. I am still looking into issues with a Debian install (I might reinstall a dev VPS to Debian and go from there).
  11. Novacha

    Server management system

    As of right now, it seems the automatic installer only works on Ubuntu. It should have installed python-dev for you. Would you be able to show me the error, so that I can apply a fix? The install docs are on the documentation page. Right now there seem to be some issues with Debian, so the...
  12. Novacha

    Server management system

    It's called sphinx. You should really go check it out! It uses reStructuredText and can pull your docstrings in to generate developer documentation.
  13. Novacha

    Server management system

    It would be great to hear how that goes! If you have any troubles during installation, let me know.  :D
  14. Novacha

    Server management system

    The rest of the documentation is written and is up. If you have any troubles along the way, let me know so I can write it into the documentation. 
  15. Novacha

    Server management system

    The docs are now online! They are hosted with readthedocs and are at https://server-listing.readthedocs.org/en/latest/ Currently only installation is covered, but I am writing the sections for management and uninstalling.
  16. Novacha

    Server management system

    I have added a link to the Github in the above post at the end. I have not written the documentation yet, but it is in the works.
  17. Novacha

    Server management system

    As the amount of virtual servers I own increased, I had trouble keeping track of them, what their purpose was and all their details (cost, memory, etc.). I used to keep an excel spreadsheet, but it wasn't able to do a lot of what I wanted. Over the week or so, I have been working on a server...
  18. Novacha

    Looking for shared hosting with WSGI support

    I would call myself proficient at managing and running servers but I am not a systems admin and don't want to be up at 2 am trying to get a server online or fixing problems while upgrading. As I also mentioned, I would always prefer to leave the security side up to a professional, though I go...
  19. Novacha

    Grab a 200GB Disk/2TB Bandwidth MASTER RESELLER for only $5/month! Start your hosting business TODAY

    Do you support WSGI or FastCGI? Also, do you have Python installed and, if so, what version?
  20. Novacha

    Looking for shared hosting with WSGI support

    That looks like exactly what I needed. The reason I need SSH is to be able to use python setuptools to create a virtual environment.
Top
amuck-landowner