• skip to content

andunix.net

User Tools

  • Log In

Site Tools

  • Recent Changes
  • Media Manager
  • Sitemap
You are here: andunix.net » use
Trace: • Solaris: List Devices • wifi • settings • fstyp • localeadm • dladm • Gnome • manual • guide • Data Collector

use
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.

Starts with
  • Exact match
  • Starts with
  • Ends with
  • Contains
@info
  • Any namespace
  • info:mysql (9)
  • info:cryptography (7)
  • info:solaris (5)
  • info:script (4)
  • info:linux (3)
  • info:mac (3)
  • info:code (2)
  • info:java (2)
  • info:oracle (2)
  • info:android (1)
  • info:javascript (1)
  • info:prog (1)
  • info:sysadmin (1)
  • info:virtualbox (1)
Any time
  • Any time
  • Past week
  • Past month
  • Past year
Sort by hits
  • Sort by hits
  • Sort by last modified

Matching pagenames:

  • MySQL: Create User
  • User Administration
  • MySQL: Change Password
  • MySQL: Remove User
  • andunix Infos

Fulltext results:

MySQL: Create User @info:mysql:user
11 Hits, Last modified: 10 years ago
====== MySQL: Create User ====== ==== Create User ==== <code sql> CREATE USER '{user}'@'%' IDENTIFIED BY '{passwd}'; </code> ==== Create User and Database ==== * Usually, ''{u
VBoxManage (The VirtualBox CLI) @info:virtualbox
8 Hits, Last modified: 12 years ago
ay] | setcredentials <username> ... -encodedlun <lun>] [--username <username>] [--password <password>] [--in... --image <path to program> --username <name> [--passwo
Generate a Test Key @info:cryptography:openssl
8 Hits, Last modified: 11 years ago
tkey.key -out testkey.crt Informations about the used arguments from the OpenSSL man page: * ''[[ht... stead of a certificate request. This is typically used to generate a test certificate or a self signed ... s specified using the set_serial option 0 will be used for the serial number. * ''[[http://www.openss... ays|-days 365]]'': when the -x509 option is being used this specifies the number of days to certify the
MySQL: Remove User @info:mysql:user
8 Hits, Last modified: 13 years ago
====== MySQL: Remove User ====== ==== Remove User ==== <code sql> DROP USER '{user}'@'%'; </code> ==== Remove User and Database ==== * Usually, {user} == {db} <code sql> DR
MySQL: Change Password @info:mysql:user
8 Hits, Last modified: 12 years ago
* Replace ''{passwd}'' with the password of the user. * Replace ''{user}'' with the name of the user. <code sql> GRANT USAGE ON *.* TO '{user}'@'%' IDENTIFIED BY '{passwd}'; FLUSH PRIVILEGES; </code>
Oracle: List Accounts with Objects @info:oracle
7 Hits, Last modified: 13 years ago
counts with Objects ====== To list all accounts (users) the objects (like tables), you can query them ... unts, you can query them with: <code sql> SELECT USERNAME FROM ALL_USERS ORDER BY USERNAME; </code> Or, if you only want the DBAs: <code sql> SELECT USERNAME FROM DBA_USER
jps - Java Virtual Machine Process Status Tool @info:java
5 Hits, Last modified: 13 years ago
ommand. ''jps'' lists all ''java'' Processes of a user. You can find the man page at [[http://java.sun.... s </code> Long listing: ''jps -l'' <code> 55719 /Users/andreas/.my/pkg/hourglass-0.6.1/lib/hourglass.j... 051 Jps -m 51299 jEdit 4.2/jedit.jar 51610 Main --userdir /Users/andreas/Library/Application Support/visualvm/1.0.1 --branding visualvm </code> Java VM par
MySQL: Backup @info:mysql:database
5 Hits, Last modified: 13 years ago
==== <code bash> # set or replace the variables $USER, $PASS and $DB mysqldump --add-drop-table -u${USER} -p${PASS} ${DB} </code> ===== Export all Databas... ==== <code bash> # set or replace the variables $USER and $PASS DATE_YMD=$(date "+%Y-%m-%d") DATABASES=$(mysql --batch -u${USER} -p${PASS} mysql --execute='show databases') for
Oracle: EXP @info:oracle
4 Hits, Last modified: 13 years ago
ount ===== Enter the account name insteand of ''{user}''. <code bash> exp USERID=\'/ as sysdba\' FILE={user}.dmp FULL=N OWNER={user} </code> {{tag>admin exp oracle}}
DynDNS Updates without a Client @info:script
3 Hits, Last modified: 13 years ago
" curl --silent --show-error --insecure --user ${LOGIN} "${UPDATE_URL}?hostname=${domain}" done... ut one domain per line. In the for loop, curl is used to update the domains. Currently, I use the switch ''--insecure'' to disable the SSL certificate che
Command Line Audio @info:mac
3 Hits, Last modified: 13 years ago
at home, I needed a command line tool which I can use via ssh. I've found it here: [[http://osxdaily.co... article.php?story=20081002080543392|macosxhints - Use a built-in command line audio player]]. You just ... play file.wav </code> More information on how to use afplay is available via afplay -h. {{tag>audio c
Print all certificates in a file @info:cryptography:openssl
3 Hits, Last modified: 13 years ago
This command is especially helpful if you want to use Tomcat-/Java-Keystore-Certificates with the Apache webserver. Use the -print_certs to print all the certificates an... rint_certs -out certs.pem Informations about the used arguments from the OpenSSL man page: * ''[[ht
Cleanup Packages @info:linux:debian
3 Hits, Last modified: 12 years ago
-h This help. --status-file, -f FILE Use FILE as statusfile. --version, -v V... .. Never report PKGS. --keep-file, -k FILE Use FILE to get/store info about kept packages. --lis... Try all of the above. --guess-only Use --guess options only. See also: deborphan(1), or
Debug Server Certificate from Client @info:cryptography:openssl
2 Hits, Last modified: 12 years ago
nnect www.andunix.net:443 Informations about the used arguments from the OpenSSL man page: * ''[[ht... dentity: None PSK identity hint: None SRP username: None TLS session ticket lifetime hint:
MySQL: Create Database @info:mysql:database
2 Hits, Last modified: 13 years ago
code> ==== Create Database and Grant Rights to a User ==== <code sql> CREATE DATABASE IF NOT EXISTS `{db}`; GRANT ALL PRIVILEGES ON `{db}` . * TO '{user}'@'%'; </code> {{tag>admin database mysql sql}}
localeadm @info:solaris
2 Hits, Last modified: 13 years ago
root login with bash @info:script
2 Hits, Last modified: 13 years ago
JAX-WS Debugging @info:java
2 Hits, Last modified: 11 years ago
Notes for the Solaris 10 System Administration Exam (CX-310-200 & -202) @info:solaris
2 Hits, Last modified: 13 years ago
File System @info:solaris
2 Hits, Last modified: 13 years ago
Compare directories @info:script
2 Hits, Last modified: 7 years ago
Command Line Tools Used in My Scripts @info:script
2 Hits, Last modified: 13 years ago
Automatic Submission of a Form if an Element is changed @info:javascript
1 Hits, Last modified: 13 years ago
Android Backup @info:android
1 Hits, Last modified: 13 years ago
Package Repositories @info:solaris
1 Hits, Last modified: 13 years ago
Set a Mac's Hostname @info:mac
1 Hits, Last modified: 10 years ago
Cryptography @info:cryptography
1 Hits, Last modified: 13 years ago
Firefox @info:prog:firefox
1 Hits, Last modified: 13 years ago
Print Information about a Certificate @info:cryptography:openssl
1 Hits, Last modified: 10 years ago
Print Information about a Key @info:cryptography:openssl
1 Hits, Last modified: 11 years ago
Plaintext @info:cryptography
1 Hits, Last modified: 13 years ago
Setting the Timezone @info:linux:debian
1 Hits, Last modified: 13 years ago
Specify Java VM for Eclipse @info:code:eclipse
1 Hits, Last modified: 12 years ago
User Administration @info:mysql:user
1 Hits, Last modified: 13 years ago
Make your Mac feel at Home @info:mac
1 Hits, Last modified: 10 years ago
Set the Timezone on Debian @info:sysadmin:debian
1 Hits, Last modified: 13 years ago
Cursor Size @info:linux:gnome
1 Hits, Last modified: 10 years ago
MySQL: View Permissions @info:mysql:permissions
1 Hits, Last modified: 13 years ago
Git @info:code
1 Hits, Last modified: 7 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
Solaris: List Devices @info:solaris
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