# riak_cs_control **Repository Path**: mirrors_basho/riak_cs_control ## Basic Information - **Project Name**: riak_cs_control - **Description**: Webmachine-based administration interface for Riak CS. - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: develop - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2026-01-10 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # What is Riak CS Control? Riak CS Control is a standalone user management application for Riak CS. It provides a user interface for filtering, disabling, creating and managing users in a Riak CS Cluster. ## Configuring In the ```etc/app.config``` file, configure the application with the information needed to connect to the Riak CS cluster you which to administer. ``` {riak_cs_control, [ %% What port to run the application on. {port, 8000 }, %% Instance of Riak CS you wish to talk to. {cs_hostname, "s3.amazonaws.com" }, {cs_port, 80 }, {cs_protocol, "http" }, %% Proxy information; necessary if you are using s3.amazonaws.com as %% your hostname. {cs_proxy_host, "localhost" }, {cs_proxy_port, 8080 }, %% Credentials you want the application to run as. {cs_admin_key, "admin-key" }, {cs_admin_secret, "admin-secret" }, %% Specify the bucket name for administration options. {cs_administration_bucket, "riak-cs" } ]}, ``` ## Running Start Riak CS Control as you would Riak or Riak CS with the following: ```riak-cs-control start```