• skip to content

andunix.net

User Tools

  • Log In

Site Tools

  • Recent Changes
  • Media Manager
  • Sitemap
You are here: andunix.net » base
Trace: • exp • iso • Package Repositories • Android Apps • init • tool • ISO 3166-2:DE • andunix Infos • thunderbird • Travian Village Planner

base
Please note, that this is an old archived version of this site. Check out the new version at andunix.net!

Search

You can find the results of your search below.

Contains
  • Exact match
  • Starts with
  • Ends with
  • Contains
Any namespace
  • Any namespace
  • info (21)
  • z (11)
  • blog (5)
  • wiki (2)
  • tag (1)
Any time
  • Any time
  • Past week
  • Past month
  • Past year
Sort by hits
  • Sort by hits
  • Sort by last modified

Matching pagenames:

  • database
  • MySQL: Backup
  • MySQL: Create Database
  • Database Administration
  • MySQL: Remove Database
  • andunix Infos
  • base-exec-superuser
  • base-exec-user
  • base-net-load-url
  • base-repo-get-service
  • base-repo-get-value
  • base-ssh-login
  • base-ssh-mount
  • base-ssh-umount
  • base
  • Project Archive

Fulltext results:

MySQL: Create Database @info:mysql:database
6 Hits, Last modified: 13 years ago
====== MySQL: Create Database ====== ==== Create Database ==== <code sql> CREATE DATABASE IF NOT EXISTS `{db}`; </code> ==== Create Database and Grant Rights to a User ==== <code sql> CREATE
MySQL: Backup @info:mysql:database
5 Hits, Last modified: 13 years ago
====== MySQL: Backup ====== ===== Export a Database ===== <code bash> # set or replace the variables $... ER} -p${PASS} ${DB} </code> ===== Export all Databases individually ===== <code bash> # set or replace... $USER and $PASS DATE_YMD=$(date "+%Y-%m-%d") DATABASES=$(mysql --batch -u${USER} -p${PASS} mysql --execute='show databases') for db in ${DATABASES} do mysqldump --add-
Travian Map Download Script @z:travian
5 Hits, Last modified: 13 years ago
the map.sql from Travian and import it to the database. ===== config.inc ===== <code bash> # # database DB_USER="travian" # set this to your database user DB_PASS="travian" # set this to your database password DB_INST="travian" # set this to your databa
base-exec-superuser @z:relax:api:base
5 Hits, Last modified: 13 years ago
====== base-exec-superuser ====== Executes a command as a given user. Command is executed using ssh if ... exec'', ''su'' or ''sudo''. ===== Usage ===== base-exec-superuser USER COMMAND * ''USER'': A key ... '', ''su'' or ''sudo''. * Additionally, the [[base-exec-user#usage|properties of base-exec-user]]. * ''COMMAND'': A command to be executed. It is execut
VBoxManage (The VirtualBox CLI) @info:virtualbox
4 Hits, Last modified: 12 years ago
[--register] [--basefolder <path>] [--uuid... [--uart<1-N> off|<I/O base> <IRQ>] [--uartmode<1... oups <group>, ...] [--basefolder <basefolder>] [--uuid <uuid>] [--register
base-net-load-url @z:relax:api:base
4 Hits, Last modified: 13 years ago
====== base-net-load-url ====== Loads a file from an URL and outputs it to STDOUT. ===== Usage ===== base-net-load-url URL * ''URL'': the URL to load. ... ed by the URL. ===== Examples ===== <code bash> base-net-load-url "${service_url}" </code> <code bash> PASSWORD=$(base-net-load-url ${PASSWORD_URL}) </code>
MySQL: Remove Database @info:mysql:database
4 Hits, Last modified: 13 years ago
====== MySQL: Remove Database ====== ==== Remove Database ==== <code sql> DROP DATABASE IF EXISTS `{db}`; </code> {{tag>admin database mysql sql}}
MySQL: Create User @info:mysql:user
4 Hits, Last modified: 10 years ago
BY '{passwd}'; </code> ==== Create User and Database ==== * Usually, ''{user}'' == ''{db}'' <code ... ER_HOUR 0 MAX_USER_CONNECTIONS 0 ; CREATE DATABASE IF NOT EXISTS `{db}`; GRANT ALL PRIVILEGES ON `{... ode> Simpler Alternative: <code sql> CREATE DATABASE IF NOT EXISTS `dbname` DEFAULT CHARACTER SET = 'u... ALL ON `dbname`.* TO 'dbuser'@'dbhost' IDENTIFIED BY 'dbpass'; </code> {{tag>admin database mysql sql}}
How To Create a Moveable VM with VirtualBox @blog:2010
3 Hits, Last modified: 16 years ago
ZE=${a:-${DISK_SIZE}} </code> The main part. The base directory, the VM and the disk image are created.... DIR}" ${VBOX} -q createvm --name "${VM_NAME}" --basefolder "${BASE_DIR}" ${VBOX} -q registervm "${VM_DIR}/${VM_NAME}.xml" ${VBOX} -q storagectl "${VM_NAME}"
base-ssh-login @z:relax:api:base
3 Hits, Last modified: 13 years ago
====== base-ssh-login ====== Logs into a remote host using ssh. This can be used to open a remote sesss... ususally it's used by other methods (especially [[base-exec-user]]) to remotely execute a command. ===== Usage ===== base-ssh-login SERVICE [ COMMAND ] * ''SERVICE'': a
MySQL: Remove User @info:mysql:user
3 Hits, Last modified: 13 years ago
R '{user}'@'%'; </code> ==== Remove User and Database ==== * Usually, {user} == {db} <code sql> DROP USER '{user}'@'%'; DROP DATABASE '{db}'; </code> {{tag>admin database mysql sql}}
base-repo-get-value @z:relax:api:base
3 Hits, Last modified: 13 years ago
====== base-repo-get-value ====== Loads a service configuration from the repository and outputs a singl... r the given key) to STDOUT. ===== Usage ===== base-repo-get-value SERVICE KEY * ''SERVICE'': A ke... ervice must be a zone (have $ZONE set) if [ -z "$(base-repo-get-value ${service} ZONE)" ]; then echo "C
base-exec-user @z:relax:api:base
3 Hits, Last modified: 13 years ago
====== base-exec-user ====== Executes a command as a given user. Command is executed using ssh if the user is not on localhost. ===== Usage ===== base-exec-user USER COMMAND * ''USER'': A key of an... . It is executed either locally or remote using [[base-ssh-login]]. ===== Returns ===== Returns the ou
base-repo-get-service @z:relax:api:base
3 Hits, Last modified: 13 years ago
====== base-repo-get-service ====== Loads a service configuration from the repository and outputs it to STDOUT. ===== Usage ===== base-repo-get-service SERVICE * ''SERVICE'': a key ... ==== <code bash> # # get service config config=$(base-repo-get-service ${service}) if [ $? != 0 ]; then
database @tag
3 Hits, Last modified: 12 years ago
====== database ====== ===== Pages ===== {{topic>database&nouser&tags}} ===== Bookmarks ===== {{rss>http://www.andunix.net/link/rss/all/database}}
CloudTable @z:cloudtable
3 Hits, Last modified: 13 years ago
Oracle @info:oracle
2 Hits, Last modified: 10 years ago
base @z:relax:api:base
2 Hits, Last modified: 13 years ago
base-ssh-mount @z:relax:api:base
2 Hits, Last modified: 13 years ago
Git @info:code
2 Hits, Last modified: 7 years ago
Drupal: Reverse Proxy @blog:2010
2 Hits, Last modified: 13 years ago
base-ssh-umount @z:relax:api:base
2 Hits, Last modified: 13 years ago
Print Information about a Key @info:cryptography:openssl
1 Hits, Last modified: 11 years ago
DynDNS Updates without a Client @info:script
1 Hits, Last modified: 13 years ago
Oracle: Recovery Manager @info:oracle
1 Hits, Last modified: 13 years ago
Formatting Syntax @wiki
1 Hits, Last modified: 5 years ago
Welcome Back @blog:2013
1 Hits, Last modified: 12 years ago
Database @info:db
1 Hits, Last modified: 13 years ago
Home Server Goals @blog:2010
1 Hits, Last modified: 10 years ago
MySQL: Change Password @info:mysql:user
1 Hits, Last modified: 12 years ago
Database Administration @info:mysql:database
1 Hits, Last modified: 13 years ago
MySQL: View Permissions @info:mysql:permissions
1 Hits, Last modified: 13 years ago
Firefox @info:prog:firefox
1 Hits, Last modified: 13 years ago
MySQL: Grant Permissions @info:mysql:permissions
1 Hits, Last modified: 13 years ago
MySQL: Revoke Permissions @info:mysql:permissions
1 Hits, Last modified: 13 years ago
Oracle Errors @info:oracle
1 Hits, Last modified: 13 years ago
Disable Core Dumps @info:linux
1 Hits, Last modified: 12 years ago
DokuWiki @wiki
1 Hits, Last modified: 5 years ago
Upgrade Solaris 11/OpenSolaris from Text to Graphical @blog:2010
1 Hits, Last modified: 15 years ago
Compare a Key with its Certificate @info:cryptography:openssl
1 Hits, Last modified: 13 years ago

Page Tools

  • Show page
  • Old revisions
  • Backlinks
  • Back to top
Except where otherwise noted, content on this wiki is licensed under the following license: CC Attribution 4.0 International
CC Attribution 4.0 International Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki