• skip to content

andunix.net

User Tools

  • Log In

Site Tools

  • Recent Changes
  • Media Manager
  • Sitemap
You are here: andunix.net » my
Trace: • Hello Drupal • linux • MySQL: Grant Permissions • Home Server Goals • VBoxManage (The VirtualBox CLI) • Coding • script • Increase the Tomcat Upload Limit • ReLAX • Dice Roller

my
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)
  • blog (11)
  • z (2)
  • tag (1)
  • wiki (1)
Any time
  • Any time
  • Past week
  • Past month
  • Past year
Sort by hits
  • Sort by hits
  • Sort by last modified

Matching pagenames:

  • mysql
  • MySQL
  • andunix Infos
  • MySQL: Backup
  • MySQL: Create Database
  • Database Administration
  • MySQL: Remove Database
  • andunix Infos
  • MySQL: Grant Permissions
  • Permission Administration
  • MySQL: Revoke Permissions
  • andunix Infos
  • MySQL: View Permissions
  • MySQL: Create User
  • User Administration
  • MySQL: Change Password
  • MySQL: Remove User
  • andunix Infos

Fulltext results:

Travian Map Download Script @z:travian
16 Hits, Last modified: 13 years ago
===== Travian Map Download Script ====== This is my script(s) which I use to downoad the map.sql from... sfish/domains/domain1/docroot/sql # # executables MYSQL="/srv/mysql/bin/mysql --default-character-set=utf8 -u${DB_USER} -p${DB_PASS} ${DB_INST}" MYSQLDUMP="/srv/mysql
Home Server Goals @blog:2010
9 Hits, Last modified: 10 years ago
ps|suggested]], here is a list of services, which my home server should provide: * **Personal Video... casts. * **Secure File Archive/Backup**: I want my digital camera photos and other precious files to... cksums. * **A/V Media Server**: I want to store my MP3 files and the videos from the above PVR to be... run web application at home. Usually, I'm hosting my webapps at Host Europe, but there are some apps w
MySQL: Backup @info:mysql:database
6 Hits, Last modified: 13 years ago
====== MySQL: Backup ====== ===== Export a Database ===== <code bash> # set or replace the variables $USER, $PASS and $DB mysqldump --add-drop-table -u${USER} -p${PASS} ${DB}... nd $PASS DATE_YMD=$(date "+%Y-%m-%d") DATABASES=$(mysql --batch -u${USER} -p${PASS} mysql --execute='show databases') for db in ${DATABASES} do mysqld
init @info:linux:debian
4 Hits, Last modified: 13 years ago
init Scripts ===== To activate an init script ("myscript"): update-rc.d myscript enable To deactivate an init script ("myscript"): update-rc.d myscript remove Further information can be found at [[http://wiki.debian.org
Formatting Syntax @wiki
4 Hits, Last modified: 5 years ago
tapost mirc mk-61 mmix modula2 modula3 mpasm mxml mysql nagios netrexx newlisp nginx nimrod nsis obero... after language code like this: <code> <file php myexample.php> <?php echo "hello world!"; ?> </file> </code> <file php myexample.php> <?php echo "hello world!"; ?> </file>... a dash (''-'') as the language code: ''%%<code - myfile.foo>%%''. ===== Embedding HTML and PHP ====
DynDNS Updates without a Client @info:script
3 Hits, Last modified: 13 years ago
====== DynDNS Updates without a Client ====== My new hosting provide Strato offers DynDNS. I was searching for a DynDNS client for my OpenSolaris Home Server, but a small bash script ... et you know in an update. This script is part of my scripts collection, so you can find the latest ve
mysql @tag
3 Hits, Last modified: 12 years ago
====== mysql ====== ===== Pages ===== {{topic>mysql&nouser&tags}} ===== Bookmarks ===== {{rss>http://www.andunix.net/link/rss/all/mysql}}
Command Line Tools Used in My Scripts @info:script
3 Hits, Last modified: 13 years ago
====== Command Line Tools Used in My Scripts ====== This is a list of comman dline tools which I use in my scripts an which should be installed on every of my systems. Basic tools (e.g. awk, find, grep, ps) w
Memory Usage of a Solaris Container (Zone) @blog:2010
3 Hits, Last modified: 16 years ago
Solaris Container (Zone) ====== Last week one of my servers ran out of RAM and Swap. Shame on me for ... t's now. As the server is running several zones, my first question was: Which zone is eating up my RAM? So, here are the commands I used. ===== Part 1:
MySQL: Change Password @info:mysql:user
3 Hits, Last modified: 12 years ago
====== MySQL: Change Password ====== * Replace ''{passwd}'' with the password of the user. * Repl... ternatively use the following: <code sql> UPDATE mysql.user SET Password=PASSWORD('{passwd}') WHERE User='{user}'; FLUSH PRIVILEGES; </code> {{tag>admin database mysql password sql}}
Debug Server Certificate from Client @info:cryptography:openssl
2 Hits, Last modified: 12 years ago
Ti/igBkLzX3Q+5K05IdwVpr95XMLHo+xoD9jxbUx6hAUlocnPWMytDqTcy Ug+uJ1YxMGCtyb1zLDnukNh1sCUhYHsqfwL9goUfdE+SNHNcHQCgsMDqmOK+ARRY FygiinddUCXNmmym5QzlqyjDsiCJ8AckHpXCLsDl6ez2PRIHSD3SwyNWQezT3zVL
MySQL: Grant Permissions @info:mysql:permissions
2 Hits, Last modified: 13 years ago
====== MySQL: Grant Permissions ====== ==== Grant Permissions ==== <code sql> GRANT ALL PRIVILEGES ON `{db}` . * TO '{user}'@'%'; </code> {{tag>admin database mysql sql}}
MySQL: Revoke Permissions @info:mysql:permissions
2 Hits, Last modified: 13 years ago
====== MySQL: Revoke Permissions ====== ==== Revoke Permissions ==== <code sql> REVOKE ALL PRIVILEGES ON `{db}` . * FROM '{user}'@'%'; </code> {{tag>admin database mysql sql}}
MySQL: Create User @info:mysql:user
2 Hits, Last modified: 10 years ago
====== MySQL: Create User ====== ==== Create User ==== <code sql> CREATE USER '{user}'@'%' IDENTIFIE... L ON `dbname`.* TO 'dbuser'@'dbhost' IDENTIFIED BY 'dbpass'; </code> {{tag>admin database mysql sql}}
MySQL: Remove Database @info:mysql:database
2 Hits, Last modified: 13 years ago
====== MySQL: Remove Database ====== ==== Remove Database ==== <code sql> DROP DATABASE IF EXISTS `{db}`; </code> {{tag>admin database mysql sql}}
Travian @z:travian
2 Hits, Last modified: 13 years ago
MySQL: Create Database @info:mysql:database
2 Hits, Last modified: 13 years ago
MySQL: Remove User @info:mysql:user
2 Hits, Last modified: 13 years ago
Notes for the Solaris 10 System Administration Exam (CX-310-200 & -202) @info:solaris
2 Hits, Last modified: 13 years ago
Drupal: Reverse Proxy @blog:2010
2 Hits, Last modified: 13 years ago
Cleanup Packages @info:linux:debian
2 Hits, Last modified: 12 years ago
Make your Mac feel at Home @info:mac
2 Hits, Last modified: 10 years ago
Hello Drupal @blog:2010
2 Hits, Last modified: 16 years ago
ReLAX @blog:2009
2 Hits, Last modified: 16 years ago
MySQL: View Permissions @info:mysql:permissions
2 Hits, Last modified: 13 years ago
MySQL @info:mysql
1 Hits, Last modified: 13 years ago
Cryptography @info:cryptography
1 Hits, Last modified: 13 years ago
Project PDA @blog:2011
1 Hits, Last modified: 13 years ago
How To Create a Moveable VM with VirtualBox @blog:2010
1 Hits, Last modified: 16 years ago
jps - Java Virtual Machine Process Status Tool @info:java
1 Hits, Last modified: 13 years ago
Firefox @info:prog:firefox
1 Hits, Last modified: 13 years ago
Found Geocache GC1VY11 "Ringpromenade" @blog:2009
1 Hits, Last modified: 16 years ago
Command Line Audio @info:mac
1 Hits, Last modified: 13 years ago
Welcome Back @blog:2013
1 Hits, Last modified: 12 years ago
Workaround for FolderSync with ownCloud 7 @blog:2014
1 Hits, Last modified: 11 years ago
Travian Village Planner @blog:2009
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