Can I install MySQL on 10.7.3

Just stated out learning SQL and the book requires intstalling MySQL on my iMac.  I have a standard iMac (no server os) running 10.7.3.  The instructions on their website http://dev.mysql.com/downloads/mysql/5.0.html seem simple enough, but when I search Google, I see lots of people having various problems and error messages.  Any advice you can offer will help.
Ray

Chris:
While Dashboard was introduced with Tiger and cannot be run in Panther, as eww pointed out, if you want widgets on Panther check out Yahoo widgets. I think you will like it.
In reference to your other question about using your Tiger install disk to update the OS on your other computer, here is the portion of the SLA to which eww referred:
The Software License Agreement statesThis License allows you to install and use one copy of the Apple Software on a single computer at a time. This License does not allow the Apple Software to exist on more than one computer at a time...
Good luck.
cornelius
Message was edited by: cornelius

Similar Messages

  • [resolved] Can not install mysql

    Oooops, I fixed it. Somehow /tmp had wrong permissions..
    Hello,
    after an upgrade my mysql dameon did not work anymore so I did what https://bbs.archlinux.org/viewtopic.php?pid=889846 says and removed all configs and removed it.
    Now pacman -S mysql gives my this
    # pacman -S mysql
    resolving dependencies...
    looking for inter-conflicts...
    Targets (1): mysql-5.5.11-1
    Total Download Size: 0.00 MB
    Total Installed Size: 62.59 MB
    Proceed with installation? [Y/n] y
    (1/1) checking package integrity [################################################] 100%
    (1/1) checking for file conflicts [################################################] 100%
    (1/1) installing mysql [################################################] 100%
    Installing MySQL system tables...
    ERROR: 1 Can't create/write to file '/tmp/#sql_1d4d_0.MYI' (Errcode: 13)
    110503 9:20:58 [ERROR] Aborting
    110503 9:20:58 [Note] /usr/bin/mysqld: Shutdown complete
    Installation of system tables failed! Examine the logs in
    /var/lib/mysql for more information.
    You can try to start the mysqld daemon with:
    shell> /usr/bin/mysqld --skip-grant &
    and use the command line tool /usr/bin/mysql
    to connect to the mysql database and look at the grant tables:
    shell> /usr/bin/mysql -u root mysql
    mysql> show tables
    Try 'mysqld --help' if you have problems with paths. Using --log
    gives you a log in /var/lib/mysql that may be helpful.
    Please consult the MySQL manual section
    'Problems running mysql_install_db', and the manual section that
    describes problems on your OS. Another information source are the
    MySQL email archives available at http://lists.mysql.com/.
    Please check all of the above before mailing us! And remember, if
    you do mail us, you MUST use the /usr/scripts/mysqlbug script!
    Optional dependencies for mysql
    perl-dbi
    perl-dbd-mysql
    The hostname.err contains
    110503 09:29:53 mysqld_safe Starting mysqld daemon with databases from /var/lib/mysql
    110503 9:29:53 InnoDB: The InnoDB memory heap is disabled
    110503 9:29:53 InnoDB: Mutexes and rw_locks use GCC atomic builtins
    110503 9:29:53 InnoDB: Compressed tables use zlib 1.2.5
    /usr/bin/mysqld: Can't create/write to file '/tmp/ibwoHE0m' (Errcode: 13)
    110503 9:29:54 InnoDB: Error: unable to create temporary file; errno: 13
    110503 9:29:54 [ERROR] Plugin 'InnoDB' init function returned error.
    110503 9:29:54 [ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed.
    110503 9:29:54 [ERROR] Unknown/unsupported storage engine: InnoDB
    110503 9:29:54 [ERROR] Aborting
    110503 9:29:54 [Note] /usr/bin/mysqld: Shutdown complete
    110503 09:29:54 mysqld_safe mysqld from pid file /var/lib/mysql/icarus.pid ended
    And my my.cnl (I didnt touch it)
    1 # MySQL config file for medium systems.
    2 #
    3 # This is for a system with little memory (32M - 64M) where MySQL plays
    4 # an important part, or systems up to 128M where MySQL is used together with
    5 # other programs (such as a web server)
    6 #
    7 # MySQL programs look for option files in a set of
    8 # locations which depend on the deployment platform.
    9 # You can copy this option file to one of those
    10 # locations. For information about these locations, see:
    11 # http://dev.mysql.com/doc/mysql/en/option-files.html
    12 #
    13 # In this file, you can use all long options that a program supports.
    14 # If you want to know which options a program supports, run the program
    15 # with the "--help" option.
    16
    17 # The following options will be passed to all MySQL clients
    18 [client]
    19 #password = your_password
    20 port = 3306
    21 socket = /var/run/mysqld/mysqld.sock
    22
    23 # Here follows entries for some specific programs
    24
    25 # The MySQL server
    26 [mysqld]
    27 port = 3306
    28 socket = /var/run/mysqld/mysqld.sock
    29 datadir = /var/lib/mysql
    30 skip-external-locking
    31 key_buffer_size = 16M
    32 max_allowed_packet = 1M
    33 table_open_cache = 64
    34 sort_buffer_size = 512K
    35 net_buffer_length = 8K
    36 read_buffer_size = 256K
    37 read_rnd_buffer_size = 512K
    38 myisam_sort_buffer_size = 8M
    39
    40 # Don't listen on a TCP/IP port at all. This can be a security enhancement,
    41 # if all processes that need to connect to mysqld run on the same host.
    42 # All interaction with mysqld must be made via Unix sockets or named pipes.
    43 # Note that using this option without enabling named pipes on Windows
    44 # (via the "enable-named-pipe" option) will render mysqld useless!
    45 #
    46 skip-networking
    47
    48 # Replication Master Server (default)
    49 # binary logging is required for replication
    50 log-bin=mysql-bin
    51
    52 # binary logging format - mixed recommended
    53 binlog_format=mixed
    54
    55 # required unique id between 1 and 2^32 - 1
    56 # defaults to 1 if master-host is not set
    57 # but will not function as a master if omitted
    58 server-id = 1
    59
    60 # Replication Slave (comment out master section to use this)
    61 #
    62 # To configure this host as a replication slave, you can choose between
    63 # two methods :
    64 #
    65 # 1) Use the CHANGE MASTER TO command (fully described in our manual) -
    66 # the syntax is:
    67 #
    68 # CHANGE MASTER TO MASTER_HOST=<host>, MASTER_PORT=<port>,
    69 # MASTER_USER=<user>, MASTER_PASSWORD=<password> ;
    70 #
    71 # where you replace <host>, <user>, <password> by quoted strings and
    72 # <port> by the master's port number (3306 by default).
    73 #
    74 # Example:
    75 #
    76 # CHANGE MASTER TO MASTER_HOST='125.564.12.1', MASTER_PORT=3306,
    77 # MASTER_USER='joe', MASTER_PASSWORD='secret';
    78 #
    79 # OR
    80 #
    81 # 2) Set the variables below. However, in case you choose this method, then
    82 # start replication for the first time (even unsuccessfully, for example
    83 # if you mistyped the password in master-password and the slave fails to
    84 # connect), the slave will create a master.info file, and any later
    85 # change in this file to the variables' values below will be ignored and
    86 # overridden by the content of the master.info file, unless you shutdown
    87 # the slave server, delete master.info and restart the slaver server.
    88 # For that reason, you may want to leave the lines below untouched
    89 # (commented) and instead use CHANGE MASTER TO (see above)
    90 #
    91 # required unique id between 2 and 2^32 - 1
    92 # (and different from the master)
    93 # defaults to 2 if master-host is set
    94 # but will not function as a slave if omitted
    95 #server-id = 2
    96 #
    97 # The replication master for this slave - required
    98 #master-host = <hostname>
    99 #
    100 # The username the slave will use for authentication when connecting
    101 # to the master - required
    102 #master-user = <username>
    103 #
    104 # The password the slave will authenticate with when connecting to
    105 # the master - required
    106 #master-password = <password>
    107 #
    108 # The port the master is listening on.
    109 # optional - defaults to 3306
    110 #master-port = <port>
    111 #
    112 # binary logging - not required for slaves, but recommended
    113 #log-bin=mysql-bin
    114
    115 # Uncomment the following if you are using InnoDB tables
    116 #innodb_data_home_dir = /var/lib/mysql
    117 #innodb_data_file_path = ibdata1:10M:autoextend
    118 #innodb_log_group_home_dir = /var/lib/mysql
    119 # You can set .._buffer_pool_size up to 50 - 80 %
    120 # of RAM but beware of setting memory usage too high
    121 #innodb_buffer_pool_size = 16M
    122 #innodb_additional_mem_pool_size = 2M
    123 # Set .._log_file_size to 25 % of buffer pool size
    124 #innodb_log_file_size = 5M
    125 #innodb_log_buffer_size = 8M
    126 #innodb_flush_log_at_trx_commit = 1
    127 #innodb_lock_wait_timeout = 50
    128
    129 [mysqldump]
    130 quick
    131 max_allowed_packet = 16M
    132
    133 [mysql]
    134 no-auto-rehash
    135 # Remove the next comment character if you are not familiar with SQL
    136 #safe-updates
    137
    138 [myisamchk]
    139 key_buffer_size = 20M
    140 sort_buffer_size = 20M
    141 read_buffer = 2M
    142 write_buffer = 2M
    143
    144 [mysqlhotcopy]
    145 interactive-timeout
    I can't start mysql daemon, it says "FAIL"
    Last edited by cyberius (2011-05-03 08:35:56)

    hi DILIPDKJ,
    Just to verify, is this the PowerDVD software that you're trying to install?
    PowerDVD 10 BD
    v10.0.3029.52
    IN12STW153WW5.exe
    114 MB
    Regards
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • Can't instal mysql connector extension for libreoffice

    I am trying to install a mysql native connector on libreoffice but I get an error during installation:
    "loading component library failed: file:///home.../uno_packages/cache/uno_packages/lu2gkbw6.tmp_/mysql-connector-ooo-1.0.1-linux-intel.oxt/mysqlc.uno.so"
    First I thought it was incompatible with LibreOffice 3.4 as it is an OpenOffice.org extension actually, but I tried and it works at least on windows installtion.
    Has anyone encountered this?

    You would think by now that people would know.
    Tomcat (and any other application server) has its own ideas about Classpath. This is necessary so that each web application can have its own individual classpath setup.
    The classpath for a web application is
    - WEB-INF/classes
    - jar files in WEB-INF/lib
    - shared jar files. eg in Tomcat jar files in /common/lib and /shared/lib
    Setting the system classpath will NOT affect the classpath of a web application.
    To solve your problem:
    Put mysql-connector-java-3.1.12-bin.jar in your WEB-INF/lib directory.
    At that point the class should be found.
    Even better set up a JNDI datasource in Tomcat and use that:
    http://tomcat.apache.org/tomcat-5.0-doc/jndi-datasource-examples-howto.html
    Better again: Don't put sql code into a JSP. It doesn't belong there.
    meh,
    evnafets

  • Install mysql on Solaris 10 can't found my.cnf file

    I install mysql on Solaris 10 , it work fine on both back and connect to Web, recently I met some tuning issue but I can found the my.cnf file, what should I do ?

    Thank you,
    in case some one need it
    go to your mysql installation .. /support-files copy one to your ets, and change in by the need .

  • Installing MySQL on OS 10.8.2

    List members,
       I want to install a MySQL database server on my Intel Mac running OS 10.8.2. I've installed Xcode. I can see the DMG installer for MYSQL 5.6.12 in Xcode.
    Unfortunately I can't progress further; the DMG installer won't open. I get an Apple error message say that non-App Store software can't be installed. Would appreciate any thoughts. Thank you in  advance.
       - Mark Pavlick

    Have a look at Installing MySQL on Lion

  • How can i install jdbc driver

    Hi
    i install websphere 5 and try to connect to my sql server but cannot find jdbc driver class path and can not find any jdbc driver
    pls tell me how can i install jdbc driver in my websphere
    with regards

    You may get a better response posting this question in a WebSphere specific forum. Maybe this will help, the following link shows the command you need to execute to install a JDBC driver in websphere 5.0.
    http://publib.boulder.ibm.com/infocenter/wasinfo/index.jsp?tab=search&searchWord=mysql+driver&maxHits=50

  • Develop node.js on Lion, but not install mysql-libmysqlclient

    I am developer, my apple is MacBook Pro MD313CH/A, system is Mac OS X Lion 10.7.3, Xcode 4.3.2, installed Command Line Tools, mysql is 5.5.21.
    I installed Node.js on MacPorts, node -v 0.6.17, npm -v 1.1.21, I want to install mysql-libmysqlclient(https://github.com/Sannis/node-mysql-libmysqlclient) of node_modules, but I had problem on my machine, than other is success. link:https://github.com/Sannis/node-mysql-libmysqlclient/issues/107
    this error:
    localhost:nodejs yangzhaojie$ CXX=/usr/bin/g++ npm install mysql-libmysqlclient
    npm http GET https://registry.npmjs.org/mysql-libmysqlclient
    npm http 200 https://registry.npmjs.org/mysql-libmysqlclient
    npm http GET https://registry.npmjs.org/mysql-libmysqlclient/-/mysql-libmysqlclient-1.3.2.tgz
    npm http 200 https://registry.npmjs.org/mysql-libmysqlclient/-/mysql-libmysqlclient-1.3.2.tgz
    > [email protected] install /Users/yangzhaojie/tech/nodejs/node_modules/mysql-libmysqlclient
    > node-gyp rebuild
    info it worked if it ends with ok
    spawn python [ '/Users/yangzhaojie/.node-gyp/0.6.17/tools/gyp_addon',
      'binding.gyp',
      '-I/Users/yangzhaojie/tech/nodejs/node_modules/mysql-libmysqlclient/build/confi g.gypi',
      '-f',
      'make' ]
    spawn make [ 'BUILDTYPE=Release', '-C', 'build' ]
      CXX(target) Release/obj.target/mysql_bindings/src/mysql_bindings.o
    llvm-g++-4.2: -E, -S, -save-temps and -M options are not allowed with multiple -arch flags
    make: *** [Release/obj.target/mysql_bindings/src/mysql_bindings.o] Error 1
    ERR! Error: `make` failed with exit code: 2
        at ChildProcess.onExit (/opt/local/lib/node_modules/npm/node_modules/node-gyp/lib/build.js:209:23)
        at ChildProcess.emit (events.js:70:17)
        at maybeExit (child_process.js:362:16)
        at Process.onexit (child_process.js:398:5)
    ERR! not ok
    npm ERR! [email protected] install: `node-gyp rebuild`
    npm ERR! `sh "-c" "node-gyp rebuild"` failed with 1
    npm ERR!
    npm ERR! Failed at the [email protected] install script.
    npm ERR! This is most likely a problem with the mysql-libmysqlclient package,
    npm ERR! not with npm itself.
    npm ERR! Tell the author that this fails on your system:
    npm ERR!     node-gyp rebuild
    npm ERR! You can get their info via:
    npm ERR!     npm owner ls mysql-libmysqlclient
    npm ERR! There is likely additional logging output above.
    npm ERR!
    npm ERR! System Darwin 11.3.0
    npm ERR! command "node" "/opt/local/bin/npm" "install" "mysql-libmysqlclient"
    npm ERR! cwd /Users/yangzhaojie/tech/nodejs
    npm ERR! node -v v0.6.17
    npm ERR! npm -v 1.1.21
    npm ERR! code ELIFECYCLE
    npm ERR! message [email protected] install: `node-gyp rebuild`
    npm ERR! message `sh "-c" "node-gyp rebuild"` failed with 1
    npm ERR! errno {}
    npm ERR! Error: EACCES, open 'npm-debug.log'
    npm ERR!
    npm ERR! Please try running this command again as root/Administrator.
    npm ERR!
    npm ERR! System Darwin 11.3.0
    npm ERR! command "node" "/opt/local/bin/npm" "install" "mysql-libmysqlclient"
    npm ERR! cwd /Users/yangzhaojie/tech/nodejs
    npm ERR! node -v v0.6.17
    npm ERR! npm -v 1.1.21
    npm ERR! path npm-debug.log
    npm ERR! code EACCES
    npm ERR! message EACCES, open 'npm-debug.log'
    npm ERR! errno {}
    npm ERR!
    npm ERR! Additional logging details can be found in:
    npm ERR!     /Users/yangzhaojie/tech/nodejs/npm-debug.log
    npm not ok
    localhost:nodejs yangzhaojie$
    debug install log:
    info it worked if it ends with ok
    verbose cli [ 'node',
    verbose cli   '/Users/yangzhaojie/app/node-0.6.16/bin/npm',
    verbose cli   'i',
    verbose cli   'mysql-libmysqlclient' ]
    info using [email protected]
    info using [email protected]
    verbose config file /Users/yangzhaojie/.npmrc
    verbose config file /Users/yangzhaojie/app/node-0.6.16/etc/npmrc
    verbose config file /Users/yangzhaojie/app/node-0.6.16/lib/node_modules/npm/npmrc
    verbose caching /Users/yangzhaojie/tech/nodejs/node_modules/connect/package.json
    verbose caching /Users/yangzhaojie/tech/nodejs/node_modules/mysql/package.json
    verbose caching /Users/yangzhaojie/tech/nodejs/node_modules/node-cluster/package.json
    verbose caching /Users/yangzhaojie/tech/nodejs/node_modules/redis/package.json
    verbose caching /Users/yangzhaojie/tech/nodejs/node_modules/socket.io/package.json
    verbose cache add [ 'mysql-libmysqlclient', null ]
    silly cache add: name, spec, args [ undefined,
    silly cache add: name, spec, args   'mysql-libmysqlclient',
    silly cache add: name, spec, args   [ 'mysql-libmysqlclient', null ] ]
    verbose parsed url { pathname: 'mysql-libmysqlclient',
    verbose parsed url   path: 'mysql-libmysqlclient',
    verbose parsed url   href: 'mysql-libmysqlclient' }
    verbose addNamed [ 'mysql-libmysqlclient', '' ]
    verbose addNamed [ null, '' ]
    silly name, range, hasData [ 'mysql-libmysqlclient', '', false ]
    verbose raw, before any munging mysql-libmysqlclient
    verbose url resolving [ 'https://registry.npmjs.org/', './mysql-libmysqlclient' ]
    verbose url resolved https://registry.npmjs.org/mysql-libmysqlclient
    http GET https://registry.npmjs.org/mysql-libmysqlclient
    http 200 https://registry.npmjs.org/mysql-libmysqlclient
    silly get cb [ 200,
    silly get cb   { vary: 'Accept',
    silly get cb     server: 'CouchDB/1.2.0 (Erlang OTP/R15B)',
    silly get cb     etag: '"66I5Z2UT6UDC9OV8C1PCYIGKC"',
    silly get cb     date: 'Thu, 03 May 2012 15:21:42 GMT',
    silly get cb     'content-type': 'application/json',
    silly get cb     'content-length': '32455' } ]
    silly name, range, hasData 2 [ 'mysql-libmysqlclient', '', true ]
    silly versions [ 'mysql-libmysqlclient',
    silly versions   [ '0.0.10',
    silly versions     '0.0.7',
    silly versions     '0.0.8',
    silly versions     '0.0.9',
    silly versions     '1.0.0',
    silly versions     '1.0.1',
    silly versions     '1.0.2',
    silly versions     '1.0.3',
    silly versions     '1.1.0',
    silly versions     '1.1.1',
    silly versions     '1.2.1',
    silly versions     '1.2.2',
    silly versions     '1.2.3',
    silly versions     '1.2.4',
    silly versions     '1.2.7',
    silly versions     '1.2.8',
    silly versions     '1.2.9',
    silly versions     '1.2.10',
    silly versions     '1.3.0',
    silly versions     '1.3.1',
    silly versions     '1.3.2' ] ]
    verbose bin dist [ '0.6-ares1.7.5-DEV-evundefined-openssl0.9.8r-v83.6.6.25-darwin-x64-11.3.0',
    verbose bin dist   { shasum: '8ae08483d5e37fcb5a37e6e459c7eda073ff486b',
    verbose bin dist     tarball: 'http://registry.npmjs.org/mysql-libmysqlclient/-/mysql-libmysqlclient-1.3.2.tgz' } ]
    verbose addRemoteTarball [ 'https://registry.npmjs.org/mysql-libmysqlclient/-/mysql-libmysqlclient-1.3.2.tgz',
    verbose addRemoteTarball   '8ae08483d5e37fcb5a37e6e459c7eda073ff486b' ]
    verbose fetch to /tmp/npm-1336058506422/1336058506422-0.03823089087381959/tmp.tgz
    http GET https://registry.npmjs.org/mysql-libmysqlclient/-/mysql-libmysqlclient-1.3.2.tgz
    http 200 https://registry.npmjs.org/mysql-libmysqlclient/-/mysql-libmysqlclient-1.3.2.tgz
    silly updated sha bytes 40960
    silly updated sha bytes 37717
    info shasum 8ae08483d5e37fcb5a37e6e459c7eda073ff486b
    info shasum /tmp/npm-1336058506422/1336058506422-0.03823089087381959/tmp.tgz
    verbose unpack /tmp/npm-1336058506422/1336058506422-0.03823089087381959/tmp.tgz
    silly gunzTarPerm modes [ '755', '644' ]
    silly extracting entry .idea/
    silly extracting entry .idea/.name
    silly extracting entry .idea/codeStyleSettings.xml
    silly extracting entry .idea/encodings.xml
    silly extracting entry .idea/misc.xml
    silly extracting entry .idea/modules.xml
    silly extracting entry .idea/node-mysql-libmysqlclient.iml
    silly extracting entry .idea/projectCodeStyle.xml
    silly extracting entry .idea/scopes/
    silly extracting entry .idea/scopes/scope_settings.xml
    silly extracting entry .idea/vcs.xml
    silly extracting entry .idea/workspace.xml
    silly extracting entry .npmignore
    silly extracting entry .travis.yml
    silly extracting entry AUTHORS
    silly extracting entry binding.gyp
    silly extracting entry build/
    silly extracting entry build/.conf_check_0/
    silly extracting entry build/.conf_check_0/testbuild/
    silly extracting entry build/.conf_check_0/testbuild/.wafpickle-7
    silly extracting entry build-stamp
    silly extracting entry CHANGELOG.markdown
    silly extracting entry conf-stamp
    silly extracting entry devdependencies-stamp
    silly extracting entry DEVELOPMENT.markdown
    silly extracting entry doc/
    silly extracting entry doc/api.html
    silly extracting entry doc/changelog.html
    silly extracting entry doc/example_http.js
    silly extracting entry doc/examples/
    silly extracting entry doc/examples/url_shortener/
    silly extracting entry doc/examples/url_shortener/index.html
    silly extracting entry doc/examples/url_shortener/index.js
    silly extracting entry doc/examples.html
    silly extracting entry doc/examples.js
    silly extracting entry doc/index.html
    silly extracting entry gh_pages.sh
    silly extracting entry LICENSE
    silly extracting entry Makefile
    silly extracting entry mysql-libmysqlclient-bindings.js
    silly extracting entry mysql-libmysqlclient.js
    silly extracting entry nodelint.conf
    silly extracting entry package.json
    silly extracting entry README.markdown
    silly extracting entry src/
    silly extracting entry src/mysql_bindings.cc
    silly extracting entry src/mysql_bindings.h
    silly extracting entry src/mysql_bindings_connection.cc
    silly extracting entry src/mysql_bindings_connection.h
    silly extracting entry src/mysql_bindings_result.cc
    silly extracting entry src/mysql_bindings_result.h
    silly extracting entry src/mysql_bindings_statement.cc
    silly extracting entry src/mysql_bindings_statement.h
    silly extracting entry src/node_async_shim.h
    silly extracting entry tests/
    silly extracting entry tests/complex/
    silly extracting entry tests/complex/setup-complex.js
    silly extracting entry tests/complex/test-binary-buffers.js
    silly extracting entry tests/complex/test-call-stored-procedure.js
    silly extracting entry tests/complex/test-datatypes-cast.js
    silly extracting entry tests/complex/test-fetchAll-options.js
    silly extracting entry tests/config.js
    silly extracting entry tests/high-level/
    silly extracting entry tests/high-level/test-javascript-interface.js
    silly extracting entry tests/ignored/
    silly extracting entry tests/ignored/place_ignored_tests.here
    silly extracting entry tests/issues/
    silly extracting entry tests/issues/test-issue-102.js
    silly extracting entry tests/issues/test-issue-106.js
    silly extracting entry tests/issues/test-issue-110.js
    silly extracting entry tests/issues/test-issue-83.js
    silly extracting entry tests/low-level-async/
    silly extracting entry tests/low-level-async/setup-low-level-async.js
    silly extracting entry tests/low-level-async/test-class-mysqlconnection-async.js
    silly extracting entry tests/low-level-async/test-class-mysqlresult-async.js
    silly extracting entry tests/low-level-sync/
    silly extracting entry tests/low-level-sync/setup-low-level-sync.js
    silly extracting entry tests/low-level-sync/test-class-mysqlconnection-sync.js
    silly extracting entry tests/low-level-sync/test-class-mysqlresult-sync.js
    silly extracting entry tests/low-level-sync/test-class-mysqlstatement.-syncjs
    silly extracting entry tests/low-level-sync/test-connect-different-args.js
    silly extracting entry tests/slow/
    silly extracting entry tests/slow/test-connect.js
    silly extracting entry tests/slow/test-fetchAll.js
    silly extracting entry tests/slow/test-query.js
    silly extracting entry tests/slow/test-querySend.js
    silly extracting entry tools/
    silly extracting entry tools/run-check-tests.js
    silly extracting entry tools/run-debug.js
    silly extracting entry tools/run-memoryleaks-finder.js
    silly extracting entry waf-stamp
    silly extracting entry wscript
    verbose has bindings.gyp [ undefined,
    verbose has bindings.gyp   { file: '/tmp/npm-1336058506422/1336058506422-0.03823089087381959/package/package.json' ,
    verbose has bindings.gyp     gypfile: true,
    verbose has bindings.gyp     serverjs: false,
    verbose has bindings.gyp     wscript: true,
    verbose has bindings.gyp     contributors:
    verbose has bindings.gyp      [ 'Oleg Efimov <[email protected]> (http://sannis.ru)',
    verbose has bindings.gyp        'Surendra Singhi <[email protected]> (http://ssinghi.kreeti.com)',
    verbose has bindings.gyp        'Akzhan Abdulin <[email protected]>',
    verbose has bindings.gyp        'Pavel Ponomarenko <[email protected]>',
    verbose has bindings.gyp        'Robin Duckett <[email protected]>',
    verbose has bindings.gyp        'Roman Shtylman <[email protected]>',
    verbose has bindings.gyp        'Dan Beam <[email protected]> (http://danbeam.org)',
    verbose has bindings.gyp        'Maurits Lamers <[email protected]>',
    verbose has bindings.gyp        'Benjmain Reesman <[email protected]>',
    verbose has bindings.gyp        'Krists Krīgers <[email protected]>',
    verbose has bindings.gyp        'Sergey Novgorodsky <[email protected]>',
    verbose has bindings.gyp        'Ștefan Rusu <[email protected]>',
    verbose has bindings.gyp        'Zhiqiang Zhao <[email protected]>',
    verbose has bindings.gyp        'Zhao Cheng <[email protected]>',
    verbose has bindings.gyp        'Zhao Lei <[email protected]>' ] } ]
    verbose has wscript [ undefined,
    verbose has wscript   { file: '/tmp/npm-1336058506422/1336058506422-0.03823089087381959/package/package.json' ,
    verbose has wscript     gypfile: true,
    verbose has wscript     serverjs: false,
    verbose has wscript     wscript: true,
    verbose has wscript     contributors:
    verbose has wscript      [ 'Oleg Efimov <[email protected]> (http://sannis.ru)',
    verbose has wscript        'Surendra Singhi <[email protected]> (http://ssinghi.kreeti.com)',
    verbose has wscript        'Akzhan Abdulin <[email protected]>',
    verbose has wscript        'Pavel Ponomarenko <[email protected]>',
    verbose has wscript        'Robin Duckett <[email protected]>',
    verbose has wscript        'Roman Shtylman <[email protected]>',
    verbose has wscript        'Dan Beam <[email protected]> (http://danbeam.org)',
    verbose has wscript        'Maurits Lamers <[email protected]>',
    verbose has wscript        'Benjmain Reesman <[email protected]>',
    verbose has wscript        'Krists Krīgers <[email protected]>',
    verbose has wscript        'Sergey Novgorodsky <[email protected]>',
    verbose has wscript        'Ștefan Rusu <[email protected]>',
    verbose has wscript        'Zhiqiang Zhao <[email protected]>',
    verbose has wscript        'Zhao Cheng <[email protected]>',
    verbose has wscript        'Zhao Lei <[email protected]>' ] } ]
    verbose caching /tmp/npm-1336058506422/1336058506422-0.03823089087381959/package/package.json
    verbose loadDefaults [email protected]
    verbose from cache /tmp/npm-1336058506422/1336058506422-0.03823089087381959/package/package.json
    verbose tar.pack [ '/Users/yangzhaojie/.npm/mysql-libmysqlclient/1.3.2/package.tgz',
    verbose tar.pack   '/tmp/npm-1336058506422/1336058506422-0.03823089087381959/package' ]
    verbose tarball /Users/yangzhaojie/.npm/mysql-libmysqlclient/1.3.2/package.tgz
    verbose folder /tmp/npm-1336058506422/1336058506422-0.03823089087381959/package
    verbose unpack /Users/yangzhaojie/.npm/mysql-libmysqlclient/1.3.2/package.tgz
    silly gunzTarPerm modes [ '755', '644' ]
    silly extracting entry package.json
    silly extracting entry .npmignore
    silly extracting entry LICENSE
    silly extracting entry mysql-libmysqlclient-bindings.js
    silly extracting entry mysql-libmysqlclient.js
    silly extracting entry build-stamp
    silly extracting entry CHANGELOG.markdown
    silly extracting entry conf-stamp
    silly extracting entry devdependencies-stamp
    silly extracting entry DEVELOPMENT.markdown
    silly extracting entry doc/example_http.js
    silly extracting entry doc/examples.js
    silly extracting entry doc/api.html
    silly extracting entry doc/changelog.html
    silly extracting entry doc/examples/url_shortener/index.js
    silly extracting entry doc/examples/url_shortener/index.html
    silly extracting entry doc/examples.html
    silly extracting entry doc/index.html
    silly extracting entry gh_pages.sh
    silly extracting entry .idea/.name
    silly extracting entry .idea/codeStyleSettings.xml
    silly extracting entry .idea/encodings.xml
    silly extracting entry .idea/misc.xml
    silly extracting entry .idea/modules.xml
    silly extracting entry .idea/node-mysql-libmysqlclient.iml
    silly extracting entry .idea/projectCodeStyle.xml
    silly extracting entry .idea/scopes/scope_settings.xml
    silly extracting entry .idea/vcs.xml
    silly extracting entry .idea/workspace.xml
    silly extracting entry Makefile
    silly extracting entry .travis.yml
    silly extracting entry AUTHORS
    silly extracting entry nodelint.conf
    silly extracting entry binding.gyp
    silly extracting entry README.markdown
    silly extracting entry src/mysql_bindings.cc
    silly extracting entry src/mysql_bindings.h
    silly extracting entry src/mysql_bindings_connection.cc
    silly extracting entry src/mysql_bindings_connection.h
    silly extracting entry src/mysql_bindings_result.cc
    silly extracting entry src/mysql_bindings_result.h
    silly extracting entry src/mysql_bindings_statement.cc
    silly extracting entry src/mysql_bindings_statement.h
    silly extracting entry src/node_async_shim.h
    silly extracting entry tests/config.js
    silly extracting entry tests/complex/setup-complex.js
    silly extracting entry tests/complex/test-binary-buffers.js
    silly extracting entry tests/complex/test-call-stored-procedure.js
    silly extracting entry tests/complex/test-datatypes-cast.js
    silly extracting entry tests/complex/test-fetchAll-options.js
    silly extracting entry tests/high-level/test-javascript-interface.js
    silly extracting entry tests/ignored/place_ignored_tests.here
    silly extracting entry tests/issues/test-issue-102.js
    silly extracting entry tests/issues/test-issue-106.js
    silly extracting entry tests/issues/test-issue-110.js
    silly extracting entry tests/issues/test-issue-83.js
    silly extracting entry tests/low-level-async/setup-low-level-async.js
    silly extracting entry tests/low-level-async/test-class-mysqlconnection-async.js
    silly extracting entry tests/low-level-async/test-class-mysqlresult-async.js
    silly extracting entry tests/low-level-sync/setup-low-level-sync.js
    silly extracting entry tests/low-level-sync/test-class-mysqlconnection-sync.js
    silly extracting entry tests/low-level-sync/test-class-mysqlresult-sync.js
    silly extracting entry tests/low-level-sync/test-connect-different-args.js
    silly extracting entry tests/low-level-sync/test-class-mysqlstatement.-syncjs
    silly extracting entry tests/slow/test-connect.js
    silly extracting entry tests/slow/test-fetchAll.js
    silly extracting entry tests/slow/test-query.js
    silly extracting entry tests/slow/test-querySend.js
    silly extracting entry tools/run-check-tests.js
    silly extracting entry tools/run-debug.js
    silly extracting entry tools/run-memoryleaks-finder.js
    silly extracting entry waf-stamp
    silly extracting entry wscript
    verbose has bindings.gyp [ undefined,
    verbose has bindings.gyp   { file: '/Users/yangzhaojie/.npm/mysql-libmysqlclient/1.3.2/package/package.json',
    verbose has bindings.gyp     gypfile: true,
    verbose has bindings.gyp     serverjs: false,
    verbose has bindings.gyp     contributors:
    verbose has bindings.gyp      [ 'Oleg Efimov <[email protected]> (http://sannis.ru)',
    verbose has bindings.gyp        'Surendra Singhi <[email protected]> (http://ssinghi.kreeti.com)',
    verbose has bindings.gyp        'Akzhan Abdulin <[email protected]>',
    verbose has bindings.gyp        'Pavel Ponomarenko <[email protected]>',
    verbose has bindings.gyp        'Robin Duckett <[email protected]>',
    verbose has bindings.gyp        'Roman Shtylman <[email protected]>',
    verbose has bindings.gyp        'Dan Beam <[email protected]> (http://danbeam.org)',
    verbose has bindings.gyp        'Maurits Lamers <[email protected]>',
    verbose has bindings.gyp        'Benjmain Reesman <[email protected]>',
    verbose has bindings.gyp        'Krists Krīgers <[email protected]>',
    verbose has bindings.gyp        'Sergey Novgorodsky <[email protected]>',
    verbose has bindings.gyp        'Ștefan Rusu <[email protected]>',
    verbose has bindings.gyp        'Zhiqiang Zhao <[email protected]>',
    verbose has bindings.gyp        'Zhao Cheng <[email protected]>',
    verbose has bindings.gyp        'Zhao Lei <[email protected]>' ],
    verbose has bindings.gyp     wscript: true } ]
    verbose has wscript [ undefined,
    verbose has wscript   { file: '/Users/yangzhaojie/.npm/mysql-libmysqlclient/1.3.2/package/package.json',
    verbose has wscript     gypfile: true,
    verbose has wscript     serverjs: false,
    verbose has wscript     contributors:
    verbose has wscript      [ 'Oleg Efimov <[email protected]> (http://sannis.ru)',
    verbose has wscript        'Surendra Singhi <[email protected]> (http://ssinghi.kreeti.com)',
    verbose has wscript        'Akzhan Abdulin <[email protected]>',
    verbose has wscript        'Pavel Ponomarenko <[email protected]>',
    verbose has wscript        'Robin Duckett <[email protected]>',
    verbose has wscript        'Roman Shtylman <[email protected]>',
    verbose has wscript        'Dan Beam <[email protected]> (http://danbeam.org)',
    verbose has wscript        'Maurits Lamers <[email protected]>',
    verbose has wscript        'Benjmain Reesman <[email protected]>',
    verbose has wscript        'Krists Krīgers <[email protected]>',
    verbose has wscript        'Sergey Novgorodsky <[email protected]>',
    verbose has wscript        'Ștefan Rusu <[email protected]>',
    verbose has wscript        'Zhiqiang Zhao <[email protected]>',
    verbose has wscript        'Zhao Cheng <[email protected]>',
    verbose has wscript        'Zhao Lei <[email protected]>' ],
    verbose has wscript     wscript: true } ]
    verbose caching /Users/yangzhaojie/.npm/mysql-libmysqlclient/1.3.2/package/package.json
    verbose loadDefaults [email protected]
    silly updated sha bytes 40960
    silly updated sha bytes 37533
    info shasum 2e0901d4c28613050078931d2930b7f98a9353d0
    info shasum /Users/yangzhaojie/.npm/mysql-libmysqlclient/1.3.2/package.tgz
    verbose from cache /Users/yangzhaojie/.npm/mysql-libmysqlclient/1.3.2/package/package.json
    verbose chmod /Users/yangzhaojie/.npm/mysql-libmysqlclient/1.3.2/package.tgz 644
    verbose chown [ '/Users/yangzhaojie/.npm/mysql-libmysqlclient/1.3.2/package.tgz',
    verbose chown   501,
    verbose chown   20 ]
    silly resolved [ { name: 'mysql-libmysqlclient',
    silly resolved     description: 'Binary MySQL bindings for Node.JS',
    silly resolved     keywords: [ 'mysql', 'libmysqlclient', 'sql', 'database', 'addon' ],
    silly resolved     homepage: 'http://sannis.github.com/node-mysql-libmysqlclient',
    silly resolved     version: '1.3.2',
    silly resolved     author: { name: 'Oleg Efimov', email: '[email protected]' },
    silly resolved     contributors:
    silly resolved      [ { name: 'Oleg Efimov',
    silly resolved          email: '[email protected]',
    silly resolved          url: 'http://sannis.ru' },
    silly resolved        { name: 'Surendra Singhi',
    silly resolved          email: '[email protected]',
    silly resolved          url: 'http://ssinghi.kreeti.com' },
    silly resolved        { name: 'Akzhan Abdulin', email: '[email protected]' },
    silly resolved        { name: 'Pavel Ponomarenko', email: '[email protected]' },
    silly resolved        { name: 'Robin Duckett', email: '[email protected]' },
    silly resolved        { name: 'Roman Shtylman', email: '[email protected]' },
    silly resolved        { name: 'Dan Beam',
    silly resolved          email: '[email protected]',
    silly resolved          url: 'http://danbeam.org' },
    silly resolved        { name: 'Maurits Lamers', email: '[email protected]' },
    silly resolved        { name: 'Benjmain Reesman', email: '[email protected]' },
    silly resolved        { name: 'Krists Krīgers', email: '[email protected]' },
    silly resolved        { name: 'Sergey Novgorodsky',
    silly resolved          email: '[email protected]' },
    silly resolved        { name: 'Ștefan Rusu', email: '[email protected]' },
    silly resolved        { name: 'Zhiqiang Zhao', email: '[email protected]' },
    silly resolved        { name: 'Zhao Cheng', email: '[email protected]' },
    silly resolved        { name: 'Zhao Lei', email: '[email protected]' } ],
    silly resolved     bugs: { url: 'http://github.com/Sannis/node-mysql-libmysqlclient/issues' },
    silly resolved     licenses: [ { type: 'MIT' } ],
    silly resolved     repository:
    silly resolved      { type: 'git',
    silly resolved        url: 'git://github.com/Sannis/node-mysql-libmysqlclient.git' },
    silly resolved     main: './mysql-libmysqlclient',
    silly resolved     scripts:
    silly resolved      { test: 'make test',
    silly resolved        doc: 'make doc',
    silly resolved        install: 'node-gyp rebuild' },
    silly resolved     engines: { node: '0.4.x || 0.5.x || 0.6.x || 0.7.x || 0.8.x' },
    silly resolved     devDependencies: { nodeunit: '>= 0.7', nodelint: '>= 0.6' },
    silly resolved     _id: '[email protected]',
    silly resolved     dependencies: {},
    silly resolved     optionalDependencies: {},
    silly resolved     _engineSupported: true,
    silly resolved     _npmVersion: '1.1.20',
    silly resolved     _nodeVersion: 'v0.6.16',
    silly resolved     _defaultsLoaded: true,
    silly resolved     dist: { shasum: '2e0901d4c28613050078931d2930b7f98a9353d0' },
    silly resolved     _from: 'mysql-libmysqlclient' } ]
    info into /Users/yangzhaojie/tech/nodejs [email protected]
    info installOne [email protected]
    verbose from cache /Users/yangzhaojie/.npm/mysql-libmysqlclient/1.3.2/package/package.json
    info unbuild /Users/yangzhaojie/tech/nodejs/node_modules/mysql-libmysqlclient
    verbose unpack /Users/yangzhaojie/.npm/mysql-libmysqlclient/1.3.2/package.tgz
    silly gunzTarPerm modes [ '755', '644' ]
    silly extracting entry package.json
    silly extracting entry .npmignore
    silly extracting entry LICENSE
    silly extracting entry mysql-libmysqlclient-bindings.js
    silly extracting entry mysql-libmysqlclient.js
    silly extracting entry build-stamp
    silly extracting entry CHANGELOG.markdown
    silly extracting entry conf-stamp
    silly extracting entry devdependencies-stamp
    silly extracting entry DEVELOPMENT.markdown
    silly extracting entry doc/example_http.js
    silly extracting entry doc/examples.js
    silly extracting entry doc/api.html
    silly extracting entry doc/changelog.html
    silly extracting entry doc/examples/url_shortener/index.js
    silly extracting entry doc/examples/url_shortener/index.html
    silly extracting entry doc/examples.html
    silly extracting entry doc/index.html
    silly extracting entry gh_pages.sh
    silly extracting entry .idea/.name
    silly extracting entry .idea/codeStyleSettings.xml
    silly extracting entry .idea/encodings.xml
    silly extracting entry .idea/misc.xml
    silly extracting entry .idea/modules.xml
    silly extracting entry .idea/node-mysql-libmysqlclient.iml
    silly extracting entry .idea/projectCodeStyle.xml
    silly extracting entry .idea/scopes/scope_settings.xml
    silly extracting entry .idea/vcs.xml
    silly extracting entry .idea/workspace.xml
    silly extracting entry Makefile
    silly extracting entry .travis.yml
    silly extracting entry AUTHORS
    silly extracting entry nodelint.conf
    silly extracting entry binding.gyp
    silly extracting entry README.markdown
    silly extracting entry src/mysql_bindings.cc
    silly extracting entry src/mysql_bindings.h
    silly extracting entry src/mysql_bindings_connection.cc
    silly extracting entry src/mysql_bindings_connection.h
    silly extracting entry src/mysql_bindings_result.cc
    silly extracting entry src/mysql_bindings_result.h
    silly extracting entry src/mysql_bindings_statement.cc
    silly extracting entry src/mysql_bindings_statement.h
    silly extracting entry src/node_async_shim.h
    silly extracting entry tests/config.js
    silly extracting entry tests/complex/setup-complex.js
    silly extracting entry tests/complex/test-binary-buffers.js
    silly extracting entry tests/complex/test-call-stored-procedure.js
    silly extracting entry tests/complex/test-datatypes-cast.js
    silly extracting entry tests/complex/test-fetchAll-options.js
    silly extracting entry tests/high-level/test-javascript-interface.js
    silly extracting entry tests/ignored/place_ignored_tests.here
    silly extracting entry tests/issues/test-issue-102.js
    silly extracting entry tests/issues/test-issue-106.js
    silly extracting entry tests/issues/test-issue-110.js
    silly extracting entry tests/issues/test-issue-83.js
    silly extracting entry tests/low-level-async/setup-low-level-async.js
    silly extracting entry tests/low-level-async/test-class-mysqlconnection-async.js
    silly extracting entry tests/low-level-async/test-class-mysqlresult-async.js
    silly extracting entry tests/low-level-sync/setup-low-level-sync.js
    silly extracting entry tests/low-level-sync/test-class-mysqlconnection-sync.js
    silly extracting entry tests/low-level-sync/test-class-mysqlresult-sync.js
    silly extracting entry tests/low-level-sync/test-connect-different-args.js
    silly extracting entry tests/low-level-sync/test-class-mysqlstatement.-syncjs
    silly extracting entry tests/slow/test-connect.js
    silly extracting entry tests/slow/test-fetchAll.js
    silly extracting entry tests/slow/test-query.js
    silly extracting entry tests/slow/test-querySend.js
    silly extracting entry tools/run-check-tests.js
    silly extracting entry tools/run-debug.js
    silly extracting entry tools/run-memoryleaks-finder.js
    silly extracting entry waf-stamp
    silly extracting entry wscript
    verbose has bindings.gyp [ undefined,
    verbose has bindings.gyp   { file: '/Users/yangzhaojie/tech/nodejs/node_modules/mysql-libmysqlclient/package.json' ,
    verbose has bindings.gyp     gypfile: true,
    verbose has bindings.gyp     serverjs: false,
    verbose has bindings.gyp     wscript: true,
    verbose has bindings.gyp     contributors:
    verbose has bindings.gyp      [ 'Oleg Efimov <[email protected]> (http://sannis.ru)',
    verbose has bindings.gyp        'Surendra Singhi <[email protected]> (http://ssinghi.kreeti.com)',
    verbose has bindings.gyp        'Akzhan Abdulin <[email protected]>',
    verbose has bindings.gyp        'Pavel Ponomarenko <[email protected]>',
    verbose has bindings.gyp        'Robin Duckett <[email protected]>',
    verbose has bindings.gyp        'Roman Shtylman <[email protected]>',
    verbose has bindings.gyp        'Dan Beam <[email protected]> (http://danbeam.org)',
    verbose has bindings.gyp        'Maurits Lamers <[email protected]>',
    verbose has bindings.gyp        'Benjmain Reesman <[email protected]>',
    verbose has bindings.gyp        'Krists Krīgers <[email protected]>',
    verbose has bindings.gyp        'Sergey Novgorodsky <[email protected]>',
    verbose has bindings.gyp        'Ștefan Rusu <[email protected]>',
    verbose has bindings.gyp        'Zhiqiang Zhao <[email protected]>',
    verbose has bindings.gyp        'Zhao Cheng <[email protected]>',
    verbose has bindings.gyp        'Zhao Lei <[email protected]>' ] } ]
    verbose has wscript [ undefined,
    verbose has wscript   { file: '/Users/yangzhaojie/tech/nodejs/node_modules/mysql-libmysqlclient/package.json' ,
    verbose has wscript     gypfile: true,
    verbose has wscript     serverjs: false,
    verbose has wscript     wscript: true,
    verbose has wscript     contributors:
    verbose has wscript      [ 'Oleg Efimov <[email protected]> (http://sannis.ru)',
    verbose has wscript        'Surendra Singhi <[email protected]> (http://ssinghi.kreeti.com)',
    verbose has wscript        'Akzhan Abdulin <[email protected]>',
    verbose has wscript        'Pavel Ponomarenko <[email protected]>',
    verbose has wscript        'Robin Duckett <[email protected]>',
    verbose has wscript        'Roman Shtylman <[email protected]>',
    verbose has wscript        'Dan Beam <[email protected]> (http://danbeam.org)',
    verbose has wscript        'Maurits Lamers <[email protected]>',
    verbose has wscript        'Benjmain Reesman <[email protected]>',
    verbose has wscript        'Krists Krīgers <[email protected]>',
    verbose has wscript        'Sergey Novgorodsky <[email protected]>',
    verbose has wscript        'Ștefan Rusu <[email protected]>',
    verbose has wscript        'Zhiqiang Zhao <[email protected]>',
    verbose has wscript        'Zhao Cheng <[email protected]>',
    verbose has wscript        'Zhao Lei <[email protected]>' ] } ]
    verbose caching /Users/yangzhaojie/tech/nodejs/node_modules/mysql-libmysqlclient/package.json
    verbose loadDefaults [email protected]
    info preinstall [email protected]
    verbose from cache /Users/yangzhaojie/tech/nodejs/node_modules/mysql-libmysqlclient/package.json
    verbose readDependencies: using package.json deps
    verbose from cache /Users/yangzhaojie/tech/nodejs/node_modules/mysql-libmysqlclient/package.json
    verbose readDependencies: using package.json deps
    silly resolved []
    verbose about to build /Users/yangzhaojie/tech/nodejs/node_modules/mysql-libmysqlclient
    info build /Users/yangzhaojie/tech/nodejs/node_modules/mysql-libmysqlclient
    verbose from cache /Users/yangzhaojie/tech/nodejs/node_modules/mysql-libmysqlclient/package.json
    verbose linkStuff [ false,
    verbose linkStuff   false,
    verbose linkStuff   false,
    verbose linkStuff   '/Users/yangzhaojie/tech/nodejs/node_modules' ]
    info linkStuff [email protected]
    verbose linkBins [email protected]
    verbose linkMans [email protected]
    verbose rebuildBundles [email protected]
    info install [email protected]
    verbose unsafe-perm in lifecycle false
    verbose Setting uid from 0 501
    verbose stack at uid setting Error
    verbose stack at uid setting     at exec (/Users/yangzhaojie/app/node-0.6.16/lib/node_modules/npm/lib/utils/exec.js:36:1 7)
    verbose stack at uid setting     at Array.0 (/Users/yangzhaojie/app/node-0.6.16/lib/node_modules/npm/lib/utils/lifecycle.js :146:5)
    verbose stack at uid setting     at EventEmitter._tickCallback (node.js:192:40)
    silly exec sh "-c" "node-gyp rebuild"
    silly spawning [ 'sh',
    silly spawning   [ '-c', 'node-gyp rebuild' ],
    silly spawning   '/Users/yangzhaojie/tech/nodejs/node_modules/mysql-libmysqlclient' ]
    info [email protected] Failed to exec install script
    info unbuild /Users/yangzhaojie/tech/nodejs/node_modules/mysql-libmysqlclient
    verbose from cache /Users/yangzhaojie/tech/nodejs/node_modules/mysql-libmysqlclient/package.json
    info preuninstall [email protected]
    info uninstall [email protected]
    verbose unbuild [email protected] [ true,
    verbose unbuild [email protected]   '/Users/yangzhaojie/tech/nodejs/node_modules',
    verbose unbuild [email protected]   '/Users/yangzhaojie/tech/nodejs/node_modules' ]
    info postuninstall [email protected]
    ERR! [email protected] install: `node-gyp rebuild`
    ERR! `sh "-c" "node-gyp rebuild"` failed with 1
    ERR!
    ERR! Failed at the [email protected] install script.
    ERR! This is most likely a problem with the mysql-libmysqlclient package,
    ERR! not with npm itself.
    ERR! Tell the author that this fails on your system:
    ERR!     node-gyp rebuild
    ERR! You can get their info via:
    ERR!     npm owner ls mysql-libmysqlclient
    ERR! There is likely additional logging output above.
    ERR!
    ERR! System Darwin 11.3.0
    ERR! command "node" "/Users/yangzhaojie/app/node-0.6.16/bin/npm" "i" "mysql-libmysqlclient"
    ERR! cwd /Users/yangzhaojie/tech/nodejs
    ERR! node -v v0.6.16
    ERR! npm -v 1.1.20
    ERR! code ELIFECYCLE
    ERR! message [email protected] install: `node-gyp rebuild`
    ERR! message `sh "-c" "node-gyp rebuild"` failed with 1
    ERR! errno {}
    verbose exit [ 1, true ]

    Hi Simon,
    Thanks for posting!
    Firstly, I suggest you could try how to connect to local MySQL database from Azure. Similar issue
    https://getsatisfaction.com/cleardb/topics/windows_azure_websites_connetion_to_mysql_database for your reference.
    Secondly, What's your local machine? Is  it a server or just a PC? If it is a PC for you dev, I guess it could not be accessed from internet. You need use the server and open the 3306 port.
    >> “tried to link the resource but the option to link an existing mysql database is greyed out.”
    Base on my experience, when we create website on azure portal, azure will create a free database which is 20 M. If you want to use MySQL on azure, you may need use Clear DB. It is used to connect to a MySQL database that created in Azure (http://azure.microsoft.com/en-us/documentation/articles/store-php-create-mysql-database/)
    Regards,
    Will 
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Installing Mysql on OS 10.6.8 issues

    Hi,
    Following Marc Liyanage upgrade instructions ( I was running mysql 5.0.21 before) , I recently tried to install mysql-5.1.48-osx10.6-x86 on my imac intel Core 2 Duo, running OS X.6.8 without success. I have read a lot of articles on mysql and a lot of forums, tried a lot of terminal commands but  still no luck.
    I know nothing about terminal. I can read for instance from http://dev.mysql.com/doc/refman/5.1/en/assigning-passwords.html:
    "mysql> CREATE USER 'jeffrey'@'localhost' -> IDENTIFIED BY 'mypass';"
    I don't know what to do: how could  I create that prompt 'mysql>'? . I would need a step by step instructions.
    I have activated the mysql dmg file and installed mysql preference pane and MYSQLCOM startup item as well.
    I rebooted my mac et opened Mysql preferences: Mysql server was running !
    Now, I think I got a permission issue. I do not know where and how I could set a new user and  password.
    Here are a few terminal commands and their results:
    1.
    Macintosh:bin benassis$ mysqladmin -u root password {root}
    mysqladmin: connect to server at 'localhost' failed
    error: 'Access denied for user 'root'@'localhost' (using password: YES)'
    2.
    Macintosh:bin benassis$ mysqladmin variables
    mysqladmin: connect to server at 'localhost' failed
    error: 'Access denied for user 'root'@'localhost' (using password: YES)'
    Macintosh:bin benassis$ ps auxww | grep mysql
    _mysql     804   0,0  0,2   631192   7988   ??  S     4:38     0:00.12 /usr/local/mysql/bin/mysqld --basedir=/usr/local/mysql --datadir=/usr/local/mysql/data --user=mysql --log-error=/usr/local/mysql/data/Macintosh.local.err --pid-file=/usr/local/mysql/data/Macintosh.local.pid --socket=/tmp/mysql.sock
    root       742   0,0  0,0  2435548    784   ??  S     4:38     0:00.01 /bin/sh /usr/local/mysql/bin/mysqld_safe --datadir=/usr/local/mysql/data --pid-file=/usr/local/mysql/data/Macintosh.local.pid
    benassis  1341   0,0  0,0  2425700    264 s000  R+    4:55     0:00.00 grep mysql
    3.
    Macintosh:mysql benassis$ bin/mysqld_safe --user=mysql &
    [1] 5364
    Macintosh:mysqlbenassis$ 120604 22:01:05 mysqld_safe Logging to '/usr/local/mysql/data/Macintosh.local.err'.
    touch: /usr/local/mysql/data/Macintosh.local.err: Permission denied
    chown: /usr/local/mysql/data/Macintosh.local.err: Permission denied
    120604 22:01:05 mysqld_safe Starting mysqld daemon with databases from /usr/local/mysql/data
    bin/mysqld_safe: line 100: /usr/local/mysql/data/Macintosh.local.err: Permission denied
    rm: /tmp/mysql.sock: Permission denied
    rm: /usr/local/mysql/data/Macintosh.local.pid: Permission denied
    bin/mysqld_safe: line 137: /usr/local/mysql/data/Macintosh.local.err: Permission denied
    120604 22:01:05 mysqld_safe mysqld from pid file /usr/local/mysql/data/Macintosh.local.pid ended
    bin/mysqld_safe: line 100: /usr/local/mysql/data/Macintosh.local.err: Permission denied
    Any idea ?

    Hi etresoft,
    Following your tips in "Installing MySQL on Lion" I've created a launch config file like you did.
    I tried in a terminal window and it worked:
    I also sent "sudo launchctl unload -w /Library/LaunchDaemons/com.mysql.mysql.plist" and it worked too.
    I made a backup of my actual my.cnf file and created a new one exactly like you did.
    I feel very stupid.
    I tried many commands in a terminal window to create a new user and password unsuccessfully.
    I want to show here a few samples with their results.
    Here, I'm sending the mysql command you showed in you answer:
    Macintosh:bin benassis$ /usr/local/mysql/bin/mysql
    ERROR 1045 (28000): Access denied for user 'benassis'@'localhost' (using password: NO)
    I read and tired many commands In the following article:http://dev.mysql.com/tech-resources/articles/mysql_intro.html#SECTION0006000000.
    This article don't explain how we can the following prompt (%>) they show in this article (I know this prompt is showed in the terminal when mysql is waiting a command, but...):
    %>mysql [options] [database]
    I tried many times with no success...
    Here are a few samples of others attempts, yesterday night and this morning:
    Macintosh:bin benassis$ mysql
    ERROR 1045 (28000): Access denied for user 'benassis'@'localhost' (using password: NO)
    Macintosh:bin jean-yveslemieux$ sudo mysql
    Password:
    ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)
    Macintosh:bin benassis$ mysql -u root
    ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)
    Macintosh:bin benassis$ sudo mysql -u root
    ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)
    Macintosh:bin benassis$ mysqladmin -u root password {root}
    mysqladmin: connect to server at 'localhost' failed
    error: 'Access denied for user 'root'@'localhost' (using password: NO)'
    Macintosh:bin benassis$ sudo mysqladmin -u root password {root}
    mysqladmin: connect to server at 'localhost' failed
    error: 'Access denied for user 'root'@'localhost' (using password: NO)' "
    Macintosh:bin benassis$ sudo mysqladmin -u root password {root}
    mysqladmin: connect to server at 'localhost' failed
    error: 'Can't connect to local MySQL server through socket '/var/mysql/mysql.sock' (2)'
    Check that mysqld is running and that the socket: '/var/mysql/mysql.sock' exists!
    Macintosh:bin benassis$ sudo mysql -u root
    ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)
    Macintosh:bin benassis$
    Thank you for assistance and your patience
    P.S. Sorry for my poor English

  • Help!  I'm trying to install mysql....and FAILING!

    I am trying to install mysql, but the instructions that the Lynda.com course on PHP Essential Training are for a previous version of OS X (10.4, I believe) and I am lost and tied up in knot and frustrated beyond all belief.
    Is there a set of SIMPLE but accurate instructions that even your grandmother could follow ANYWHERE on the web that can help me?
    First problem
    From what I can tell, it is in the in the /usr/local/mysql/bin folder (all of this is Greek to me) and I simply cannot modify the path (successfully) to point to it.
    Second problem
    Also, when i go to the /usrlocal/mysql/bin folder and type ./mysqladmin -u root password mynewpassword it tells me that access is denied.
    I am sure that there are more problems along the way for me. I am grappling in the dark with Linux/UNIX or what ever it is called.
    So, again, my question is:
    Is there a set of SIMPLE but accurate instructions that even your grandmother could follow ANYWHERE on the web that can help me?

    pforkes,
    Mamp is great, but if you wanna just install MySQL without all the other stuff, try following these step-by-stop instructions here for installing MySQL on OSX 10.6
    http://labs.rajdye.com/how-to-install-mysql-server-on-osx-10-6-snow-leopard/
    Raj Dye

  • Can not start mysql server

    I recently installed mysql server on my mac os 10.6.8, earlier i had installed XAMPP on my machine but i have uninstalled it(deleted it & ran few commands in terminal), but now when i try to start server from preference pane it doesn't start & not from terminal also, it show " Could not startup MySql sever, Reason: error 255 OR Internal error"
      It seems that the new mysql server settings clash somewhere with old XAMPP files/preferences. I don't even know if XAMPP is completely uninstalled or not
      I'm not a mysql geek, i'm new to this! So, friends please help me with this, i need to get it working on my mac!!

    I appreciate your help.
    I have been offline for a long time since I had a business trip two week ago.
    I can not start the apache http server, so it isn't on running status within NT services manager.
    In fact, there is someting wrong---fail to create FastCGI when startup. Oracle system message tells me that syntax error exists on line 92 of isqlplus.conf but I don't know how to correct it.
    Henry

  • How do i install mysql on windows server 2012 r2 using powershell(automate)??

    i have a requirement of installing the mysql server with one click deployment using power shell by passing the parameters needed into the mysql console. can i achieve that ?
    can  anyone help me in doing that?
    thanks in advance.
    Suresh Gaddam

    Hi Suresh,
    This forum is for SCOM related questions, it seems like that you are asking for powershell script to install Mysql. From my point of view, I don't think that using powershell to install Mysql is an easy way, as it is hard to say whether Powershell can get
    information from Mysql install console with some API.
    In addition, for further assistance, please contact MySQL forum and Powershell forum.
    Thanks for your understanding!
    Regards,
    Yan Li
    Regards, Yan Li

  • How do i install mysql on my mac mini lion server?

    How do i install mysql on my mac mini lion server?

    I have this error log
    May 27 07:06:35 server servermgrd[13454]: -[AccountsRequestHandler(AccountsSystemConfigurationObservation) registerForKeychainEventNotifications]: SecKeychainAddCallback() status: -25297
    May 27 07:06:35 server servermgrd[13454]: servermgr_ipfilter:ipfw config:Notice:Flushed IPv4 rules
    May 27 07:06:35 server servermgrd[13454]: servermgr_ipfilter:ipfw config:Notice:Flushed IPv6 rules
    May 27 07:10:35 server servermgrd[13454]: No requests in 300 seconds, shutting down
    May 27 07:20:29 server ScreensharingAgent[13999]: [CL_INVALID_DEVICE] : OpenCL Error : Failed to create context! Invalid device
    May 27 07:26:03 server login[14203]: USER_PROCESS: 14203 ttys000
    May 27 07:26:42 server SafariDAVClient[14233]: ServerNotifications: Setting delegate to APSD
    May 27 07:26:43 server SafariDAVClient[14233]: Subscription request completed
    May 27 07:27:58 server SafariDAVClient[14284]: ServerNotifications: Setting delegate to APSD
    May 27 07:27:59 server SafariDAVClient[14284]: Subscription request completed
    May 27 07:29:03 server login[14203]: DEAD_PROCESS: 14203 ttys000
    May 27 07:29:09 server login[14331]: USER_PROCESS: 14331 ttys000
    May 27 07:47:30 server com.mysql.mysqld[15000]: 120527 07:47:30 mysqld_safe Logging to '/usr/local/mysql/data/server.martinhedegaard.dk.err'.
    May 27 07:47:30 server com.apple.launchd[1] (0x7f82db634810.anonymous.nohup[15222]): Bug: launchd_core_logic.c:9394 (25693):0
    May 27 07:47:30 server com.apple.launchd[1] (0x7f82db634810.anonymous.nohup[15222]): Switching sessions is not allowed in the system Mach bootstrap.
    May 27 07:47:30 server com.apple.launchd[1] (0x7f82db634810.anonymous.nohup[15222]): _vprocmgr_switch_to_session(): kr = 0x44c
    May 27 07:47:30 server com.apple.launchd[1] (0x7f82dc9015d0.anonymous.nohup[15223]): Bug: launchd_core_logic.c:9394 (25693):0
    May 27 07:47:30 server com.apple.launchd[1] (0x7f82dc9015d0.anonymous.nohup[15223]): Switching sessions is not allowed in the system Mach bootstrap.
    May 27 07:47:30 server com.apple.launchd[1] (0x7f82dc9015d0.anonymous.nohup[15223]): _vprocmgr_switch_to_session(): kr = 0x44c
    May 27 07:47:30 server com.mysql.mysqld[15000]: 120527 07:47:30 mysqld_safe Starting mysqld daemon with databases from /usr/local/mysql/data
    May 27 07:48:31 server Safari[541]: IPCClient: Server port 0 is invalid; looking it up again...
    May 27 09:06:34 server servermgrd[18040]: -[AccountsRequestHandler(AccountsSystemConfigurationObservation) registerForKeychainEventNotifications]: SecKeychainAddCallback() status: -25297
    May 27 09:06:35 server servermgrd[18040]: servermgr_ipfilter:ipfw config:Notice:Flushed IPv4 rules
    May 27 09:06:35 server servermgrd[18040]: servermgr_ipfilter:ipfw config:Notice:Flushed IPv6 rules
    May 27 09:09:01 server ScreensharingAgent[18184]: [CL_INVALID_DEVICE] : OpenCL Error : Failed to create context! Invalid device
    May 27 09:09:08 server SafariDAVClient[18193]: ServerNotifications: Setting delegate to APSD
    May 27 09:09:09 server SafariDAVClient[18193]: Subscription request completed
    May 27 09:10:34 server servermgrd[18040]: No requests in 300 seconds, shutting down
    May 27 09:29:44 server System Preferences[581]: about to perform command
    May 27 09:29:48 server com.mysql.mysqld[15000]: 120527 09:29:48 mysqld_safe mysqld from pid file /usr/local/mysql/data/server.martinhedegaard.dk.pid ended
    May 27 09:29:48 server com.mysql.mysqld[19056]: 120527 09:29:48 mysqld_safe Logging to '/usr/local/mysql/data/server.martinhedegaard.dk.err'.
    May 27 09:29:48 server com.apple.launchd[1] (0x7f82db62da20.anonymous.nohup[19280]): Bug: launchd_core_logic.c:9394 (25693):9
    May 27 09:29:48 server com.apple.launchd[1] (0x7f82db62da20.anonymous.nohup[19280]): Switching sessions is not allowed in the system Mach bootstrap.
    May 27 09:29:48 server com.apple.launchd[1] (0x7f82db62da20.anonymous.nohup[19280]): _vprocmgr_switch_to_session(): kr = 0x44c
    May 27 09:29:48 server com.apple.launchd[1] (0x7f82dc800da0.anonymous.nohup[19281]): Bug: launchd_core_logic.c:9394 (25693):0
    May 27 09:29:48 server com.apple.launchd[1] (0x7f82dc800da0.anonymous.nohup[19281]): Switching sessions is not allowed in the system Mach bootstrap.
    May 27 09:29:48 server com.apple.launchd[1] (0x7f82dc800da0.anonymous.nohup[19281]): _vprocmgr_switch_to_session(): kr = 0x44c
    May 27 09:29:48 server com.mysql.mysqld[19056]: 120527 09:29:48 mysqld_safe Starting mysqld daemon with databases from /usr/local/mysql/data
    May 27 09:29:49 server System Preferences[581]: status= 0
    May 27 09:29:49 server System Preferences[581]: stat /usr/local/mysql/data
    May 27 09:33:54 server login[14331]: DEAD_PROCESS: 14331 ttys000
    May 27 09:34:12 server com.apple.launchd.peruser.501[456] (com.apple.talagent[494]): Exited: Killed: 9
    May 27 09:34:12 server com.apple.launchd.peruser.501[456] ([0x0-0x3a03a].com.apple.AppleSpell[15293]): Exited: Killed: 9
    May 27 09:34:12 server com.apple.launchd.peruser.501[456] (com.apple.mdworker.pool.0[18053]): Exited: Terminated: 15
    May 27 09:34:12 server loginwindow[98]: DEAD_PROCESS: 98 console
    May 27 09:34:12 server com.apple.dock.extra[19467]: Could not connect the action buttonPressed: to target of class NSApplication
    May 27 09:34:12 server com.apple.dock.extra[19467]: 2012-05-27 09:34:12.356 com.apple.dock.extra[19467:1707] Could not connect the action buttonPressed: to target of class NSApplication
    May 27 09:34:12 server com.apple.dock.extra[19467]: Could not connect the action buttonPressed: to target of class NSApplication
    May 27 09:34:12 server com.apple.dock.extra[19467]: 2012-05-27 09:34:12.357 com.apple.dock.extra[19467:1707] Could not connect the action buttonPressed: to target of class NSApplication
    May 27 09:34:12 server com.apple.dock.extra[19467]: Could not connect the action buttonPressed: to target of class NSApplication
    May 27 09:34:12 server com.apple.dock.extra[19467]: 2012-05-27 09:34:12.357 com.apple.dock.extra[19467:1707] Could not connect the action buttonPressed: to target of class NSApplication
    May 27 09:34:12 server com.apple.dock.extra[19467]: Could not connect the action buttonPressed: to target of class NSApplication
    May 27 09:34:12 server com.apple.dock.extra[19467]: 2012-05-27 09:34:12.358 com.apple.dock.extra[19467:1707] Could not connect the action buttonPressed: to target of class NSApplication
    May 27 09:34:12 server shutdown[19471]: reboot by martinhedegaard:
    May 27 09:34:12 server shutdown[19471]: SHUTDOWN_TIME: 1338104052 753955
    rc.server[ 8 ]: Tuning server for 4 GB (rounded down).
    May 27 09:34:22 localhost bootlog[0]: BOOT_TIME 1338104062 0
    May 27 09:34:33 localhost UserEventAgent[30]: starting CaptiveNetworkSupport as SystemEventAgent built May 25 2011 12:27:35
    May 27 09:34:33 localhost UserEventAgent[30]: CertsKeychainMonitor: configuring
    May 27 09:34:33 localhost UserEventAgent[30]: WirelessAirPortDeviceNameCopy(): no BSD interface name found for object 12551
    May 27 09:34:33 localhost UserEventAgent[30]: CaptiveNetworkSupport:CaptiveSCCopyWiFiDevices:388 WiFi Device Name == NULL
    May 27 09:34:23 localhost com.apple.launchd[1]: *** launchd[1] has started up. ***
    May 27 09:34:32 localhost com.apple.launchd[1] (com.apple.powerd): Unknown value for key POSIXSpawnType: Interactive
    May 27 09:34:32 localhost com.apple.launchd[1] (com.apple.sandboxd): Unknown value for key POSIXSpawnType: Interactive
    May 27 09:34:32 localhost com.apple.launchd[1] (com.apple.xgridd.pcastserver): Bug: launchd_core_logic.c:5193 (25693):2
    May 27 09:34:32 localhost com.apple.launchd[1] (com.apple.xgridd.pcastserver): Path monitoring failed on "/var/pcast/server/xgridd/keepalive": No such file or directory
    May 27 09:34:36 localhost airportd[47]: _processDLILEvent: en1 attached (down)
    May 27 09:34:36 localhost mDNSResponder[31]: mDNSResponder mDNSResponder-320.16 (Mar 17 2012 21:31:16) starting OSXVers 11
    May 27 09:34:36 localhost UserEventAgent[30]: CaptiveNetworkSupport:CreateInterfaceWatchList:2788 WiFi Devices Found.
    May 27 09:34:36 localhost UserEventAgent[30]: CaptiveNetworkSupport:CaptivePublishState:1211 en1 - PreProbe
    May 27 09:34:36 localhost UserEventAgent[30]: CaptiveNetworkSupport:CaptiveSCRebuildCache:81 Failed to get service order
    May 27 09:34:36: --- last message repeated 1 time ---
    May 27 09:34:36 localhost UserEventAgent[30]: CaptiveNetworkSupport:CaptivePublishState:1211 en1 - PreProbe
    May 27 09:34:36 localhost UserEventAgent[30]: CaptiveNetworkSupport:CaptiveSCRebuildCache:81 Failed to get service order
    May 27 09:34:36: --- last message repeated 1 time ---
    May 27 09:34:36 localhost UserEventAgent[30]: CaptiveNetworkSupport:CaptivePublishState:1211 en1 - PreProbe
    May 27 09:34:37 server configd[35]: setting hostname to "server.martinhedegaard.dk"
    May 27 09:34:37 server configd[35]: network configuration changed.
    May 27 09:34:40 server systemkeychain[52]: done file: /var/run/systemkeychaincheck.done
    May 27 09:34:40 server configd[35]: network configuration changed.
    May 27 09:34:40: --- last message repeated 1 time ---
    May 27 09:34:40 server mDNSResponder[31]: D2D_IPC: Loaded
    May 27 09:34:40 server mDNSResponder[31]: D2DInitialize succeeded
    May 27 09:34:40 server com.apple.ucupdate.plist[83]: ucupdate: Checked 1 update, no match found.
    May 27 09:34:40 server com.apple.pfctl[92]: No ALTQ support in kernel
    May 27 09:34:40 server com.apple.pfctl[92]: ALTQ related functions disabled
    HeadlessStartup: Already setup or this is an upgrade so we will not set the password.
    May 27 09:34:40 server emond[108]: SetUpLogs: uid = 0 gid = 0
    May 27 09:34:40 server named[78]: starting BIND 9.7.3-P3 -f
    May 27 09:34:40 server named[78]: built with '--mandir=/usr/share/man' '--infodir=/usr/share/info' '--disable-dependency-tracking' '--prefix=/usr' '--sysconfdir=/private/etc' '--localstatedir=/private/var' '--enable-atomic=no' '--with-openssl=yes' '--with-gssapi=yes' '--enable-symtable=none' 'CFLAGS=-arch x86_64 -arch i386 -g -Os -pipe -gdwarf-2 -D__APPLE_USE_RFC_2292' 'LDFLAGS=-arch x86_64 -arch i386 ' 'CXXFLAGS=-arch x86_64 -arch i386 -g -Os -pipe '
    May 27 09:34:40 server emond[108]: SetUpLogs: opening /Library/Logs/EventMonitor/EventMonitor.error.log
    May 27 09:34:40 server com.apple.SystemStarter[84]: Starting MySQL database server
    May 27 09:34:40 server loginwindow[97]: Login Window Application Started
    May 27 09:34:40 server com.apple.usbmuxd[82]: usbmuxd-268.5 on Jan  5 2012 at 03:34:01, running 64 bit
    May 27 09:34:40 server UserEventAgent[30]: WebUserEventAgent: installed
    May 27 09:34:42 server UserEventAgent[30]: Registered Workstation service - Wellness Guiden Server [3c:07:54:72:75:94]._workstation._tcp.
    May 27 09:34:43 server PasswordService[93]: -[PasswordServerPrefsObject getSearchBase]: Unable to locate search base: -1 Can't contact LDAP server
    May 27 09:34:43 server PasswordService[93]: -[PasswordServerPrefsObject loadXMLData]: Unable to locate passwordserver config record's plist attribute: -1 Can't contact LDAP server
    May 27 09:34:43 server PasswordService[93]: -[PasswordServerPrefsObject getSearchBase]: Unable to locate search base: -1 Can't contact LDAP server
    May 27 09:34:43 server PasswordService[93]: -[PasswordServerPrefsObject saveXMLData]: ldap_modify_ext_s of the passwordserver config record's plist attribute: -1 Can't contact LDAP server
    May 27 09:34:43 server named[78]: command channel listening on 127.0.0.1#54
    May 27 09:34:43 server mds[95]: (Normal) FMW: FMW 0 0
    May 27 09:34:44 server com.mysql.mysqld[117]: 120527 09:34:44 mysqld_safe Logging to '/usr/local/mysql/data/server.martinhedegaard.dk.err'.
    May 27 09:34:44 server com.apple.launchd[1] (0x7f82db403900.anonymous.nohup[359]): Bug: launchd_core_logic.c:9394 (25693):2
    May 27 09:34:44 server com.apple.launchd[1] (0x7f82db403900.anonymous.nohup[359]): Switching sessions is not allowed in the system Mach bootstrap.
    May 27 09:34:44 server com.apple.launchd[1] (0x7f82db403900.anonymous.nohup[359]): _vprocmgr_switch_to_session(): kr = 0x44c
    May 27 09:34:44 server com.apple.launchd[1] (0x7f82db62bfd0.anonymous.nohup[360]): Bug: launchd_core_logic.c:9394 (25693):0
    May 27 09:34:44 server com.apple.launchd[1] (0x7f82db62bfd0.anonymous.nohup[360]): Switching sessions is not allowed in the system Mach bootstrap.
    May 27 09:34:44 server com.apple.launchd[1] (0x7f82db62bfd0.anonymous.nohup[360]): _vprocmgr_switch_to_session(): kr = 0x44c
    May 27 09:34:44 server com.mysql.mysqld[117]: 120527 09:34:44 mysqld_safe Starting mysqld daemon with databases from /usr/local/mysql/data
    May 27 09:34:44 server com.apple.launchd[1] (0x7f82dd0023b0.anonymous.nohup[620]): Bug: launchd_core_logic.c:9394 (25693):0
    May 27 09:34:44 server com.apple.launchd[1] (0x7f82dd0023b0.anonymous.nohup[620]): Switching sessions is not allowed in the system Mach bootstrap.
    May 27 09:34:44 server com.apple.launchd[1] (0x7f82dd0023b0.anonymous.nohup[620]): _vprocmgr_switch_to_session(): kr = 0x44c
    May 27 09:34:44 server com.apple.launchd[1] (0x7f82dd0023b0.anonymous.nohup[621]): Bug: launchd_core_logic.c:9394 (25693):0
    May 27 09:34:44 server com.apple.launchd[1] (0x7f82dd0023b0.anonymous.nohup[621]): Switching sessions is not allowed in the system Mach bootstrap.
    May 27 09:34:44 server com.apple.launchd[1] (0x7f82dd0023b0.anonymous.nohup[621]): _vprocmgr_switch_to_session(): kr = 0x44c
    May 27 09:34:45 server freshclam[79]: Can't query current.cvd.clamav.net
    May 27 09:34:45 server freshclam[79]: Invalid DNS reply. Falling back to HTTP mode.
    May 27 09:34:46 server freshclam[79]: Can't get information about database.clamav.net: nodename nor servname provided, or not known
    May 27 09:34:46 server freshclam[79]: Can't read main.cvd header from database.clamav.net (IP: )
    May 27 09:34:47 server rpcsvchost[660]: sandbox_init: com.apple.msrpc.netlogon.sb succeeded
    May 27 09:34:47 server configd[35]: network configuration changed.
    May 27 09:34:48 server servermgrd[88]: servermgr_accounts: noteDirectorySearchPolicyChanged (reopening nodes)
    May 27 09:34:49 server ntpd[77]: proto: precision = 1.000 usec
    May 27 09:34:50 server loginwindow[97]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    May 27 09:34:50 server com.apple.launchctl.LoginWindow[673]: com.apple.findmymacmessenger: Already loaded
    May 27 09:34:50 server loginwindow[97]: Login Window Started Security Agent
    May 27 09:34:50 server SecurityAgent[682]: Echo enabled
    May 27 09:34:51 server WindowServer[143]: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    May 27 09:34:51 server freshclam[79]: Current functionality level = 61, recommended = 63
    May 27 09:34:53 server ScreensharingAgent[695]: [CL_INVALID_DEVICE] : OpenCL Error : Failed to create context! Invalid device
    May 27 09:34:54 server screensharingd[694]: 3891612: (connectAndCheck) Untrusted apps are not allowed to connect to or launch Window Server before login.
    May 27 09:34:54 server screensharingd[694]: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    May 27 09:35:10 server sandboxd[713] ([712]): xscertd(712) deny job-creation
    May 27 09:35:10 server UserEventAgent[30]: CertsKeychainMonitor: ready to process keychain & timer events
    May 27 09:35:48 server servermgrd[88]: getting service list
    May 27 09:35:49 server servermgrd[88]: servermgr_ipfilter:ipfw config:Notice:Flushed IPv4 rules
    May 27 09:35:49 server servermgrd[88]: servermgr_ipfilter:ipfw config:Notice:Flushed IPv6 rules
    May 27 09:36:08 server SecurityAgent[682]: User info context values set for martinhedegaard
    May 27 09:36:08 server SecurityAgent[682]: Login Window login proceeding
    May 27 09:36:08 server loginwindow[97]: Login Window - Returned from Security Agent
    May 27 09:36:08 server loginwindow[97]: USER_PROCESS: 97 console
    May 27 09:36:08 server com.apple.launchd.peruser.501[703] (com.apple.ReportCrash): Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    May 27 09:36:08 server com.apple.launchctl.Aqua[757]: load: option requires an argument -- D
    May 27 09:36:08 server com.apple.launchctl.Aqua[757]: usage: launchctl load [-wF] [-D <user|local|network|system|all>] paths...
    May 27 09:36:09 server com.apple.launchd.peruser.501[703] (com.apple.launchctl.Aqua[757]): Exited with code: 1
    May 27 09:36:09 server ScreensharingAgent[773]: [CL_INVALID_DEVICE] : OpenCL Error : Failed to create context! Invalid device
    May 27 09:36:09 server UserEventAgent[30]: CaptiveNetworkSupport:CNSServerRegisterUserAgent:187 new user agent port: 17183
    May 27 09:36:10 server com.apple.dock.extra[802]: Could not connect the action buttonPressed: to target of class NSApplication
    May 27 09:36:10 server com.apple.dock.extra[802]: 2012-05-27 09:36:10.163 com.apple.dock.extra[802:1707] Could not connect the action buttonPressed: to target of class NSApplication
    May 27 09:36:10 server com.apple.dock.extra[802]: Could not connect the action buttonPressed: to target of class NSApplication
    May 27 09:36:10 server com.apple.dock.extra[802]: 2012-05-27 09:36:10.164 com.apple.dock.extra[802:1

  • How to install MySQL 5 and remove default install

    Hi all,
    I have some problems to make MySQL 5 works fine on Mac OS X server.
    I have installed the package (http://dev.mysql.com/downloads/mysql/5.0.html) but a instance of the old mysql still running.
    Can someone explain me how to remove the default install and make the new one works?
    PowerBook G4   Mac OS X (10.4.3)   Mac OS X Server

    "pwd in directory /usr/local/mysql return /usr/local/mysql"
    I didn't really address this in my previous post, but this could be a problem. This seems to indicate that there is an actual directory named mysql in /usr/local. That shouldn't be the case. If it's empty, you should remove it and replace it with a symbolic link to /usr/local/mysql-standard-5.0.16-osx10.3-powerpc (assuming that's the version you have installed).
    To create this link, cd to /usr/local and enter:
    ln -s /usr/local/mysql-standard-5.0.16-osx10.3-powerpc mysql
    Or you may want to run the installer again. I would hope that the installer would not fail without giving you an error, and since creating this link is not necessary for the installation, it probably just ignored it, but the presence of the directory would have prevented it from creating the link, so it could have interfered with the normal operation of the installer.
    Normally when you install MySQL it installs into the /usr/local directory, creating a folder with the full name of the version, e.g. "mysql-standard-5.0.16-osx10.3-powerpc" in the case of the current version. It then creates a symbolic link to that directory called "mysql" in the /usr/local directory. That's why, normally, if you cd to /usr/local/mysql and issue pwd it should give you the full path to the current MySQL installation directory.
    The beauty of this system is that it leaves your current installation intact, so if you need to back out, because some of your applications are not compatible with the new version, you only need to re-point that symbolic link to point back to the old version.
    It also allows you to transfer your data very easily. Even if you forget to extract the data folder from the old version before you installed the new one, your data is still there, safe and sound. (That's why I've been recommending leaving that folder alone until you sort out the problems with the installation of the new version.)

  • How Install MySQL on Air w/OS 10.6.5 -- For New, Former WinTel User?

    This new MacBook Air (and former WinTel) user welcomes (with appreciation) your *detailed suggestions* regarding installing +MySQL Community Edition 5.5.8+ (I have downloaded mysql-5.5.8-osx10.6-x86_64.tar.gz;, it's sitting in my "Downloads" directory)--then configuring MySQL to work with Snow Leopard's pre-installed Apache Server (pre-installed...and how cool is that?!).
    E.g., I assume that I should not un-tar the download in the Downloads folder...yet I don't know enough about Mac OS to understand where to move the .tar file to. Once the .tar file has been moved to ( where? ), and un-tarred...then what? Is there an installer? How does the installer work? The MySQL instructions refer to a file structure which is quite different from what's on my MacBook Air. Are there a lot of Symbolic Links in Snow Leopard? If so, how & where are Symbolic Links managed? Do I need to provision any SymLinks to get MySQL to work?
    Many, many thanks!
    +Plane Wryter+

    Do not install the entropy MySQL. It is years old. To quote Marc Liyange himself on that page:
    Since version 4.0.11, I am no longer building (from source code) and hosting the MySQL binary packages because the people at MySQL started to provide very nice official binary packages
    Plane Wryter wrote:
    E.g., I assume that I should not un-tar the download in the Downloads folder...yet I don't know enough about Mac OS to understand where to move the .tar file to. Once the .tar file has been moved to ( where? ), and un-tarred...then what? Is there an installer? How does the installer work?
    Go ahead and unarchive that file right in Downloads. It should be a binary installer that you can double-click to install.
    The MySQL instructions refer to a file structure which is quite different from what's on my MacBook Air.
    Really? How so?
    Are there a lot of Symbolic Links in Snow Leopard? If so, how & where are Symbolic Links managed? Do I need to provision any SymLinks to get MySQL to work?
    Yes. Symbolic links are managed by the OS. You shouldn't mess with them.
    While MySQL does not provide a binary installer, the actual software they install does not use modern MacOS X architecture. I haven't tried version 5.5. Hopefully they have improved it, but probably not. You will need to create a launchd script to run MySQL at startup.
    Instructions and the most recent information are available in this thread: http://discussions.apple.com/thread.jspa?messageID=12229472&#12229472

  • NEED HELP! can't create mysql connection in DW MX 2004

    I re-format my computer last week and after reformatting i
    install my PHP Triad and Dreamweaver MX 2004, but i can't create
    mysql connection using DW wizard, i already follow the step:
    1. create / manage site
    2. choose document type
    3. set up testing server ( i use php mysql @ localhost)
    and when i create new connection (fill the hostname,
    username, password, and select databases) it failed and show
    message "unidentified error occur".
    it never happen before (before i re format my computer).
    can anyone help me how to solve this problem.
    sorry for my bad english i came from Indonesia,
    thx before
    rgrds
    zhastro

    I re-format my computer last week and after reformatting i
    install my PHP Triad and Dreamweaver MX 2004, but i can't create
    mysql connection using DW wizard, i already follow the step:
    1. create / manage site
    2. choose document type
    3. set up testing server ( i use php mysql @ localhost)
    and when i create new connection (fill the hostname,
    username, password, and select databases) it failed and show
    message "unidentified error occur".
    it never happen before (before i re format my computer).
    can anyone help me how to solve this problem.
    sorry for my bad english i came from Indonesia,
    thx before
    rgrds
    zhastro

Maybe you are looking for

  • SSIS.Pipeline : Warning: Could not open global shared memory to communicate with performance DLL

    I am getting the following warning for my SSIS08 package: Could not open global shared memory to communicate with performance DLL; data flow performance counters are not available.  To resolve, run this package as an administrator, or on the system's

  • Change of document posted from MIRO

    Dear experts, Is it possible to change the document posted from MIRO? I want to put "final invoice" indicator on MIRO document.Users do not have authorization to change the PO(because same indicator exists on PO)  documents.So, i must find solution n

  • Clicking Burn button always causes itunes to crash

    Trying to burn a cd and following Help's instructions, when I click on "Burn" this always causes itunes to crash. Why and what's the fix? I did try downloading newest itunes software, which I actually already had, in hopes this would "overlay" and fi

  • What happened to the "NEW" category in Vision Film...

    Every week I used to be able to check out which new films had been added to the Film Club list but now, the "NEW" link on my Film Club page has gone missing. Has anyone else noticed this? It's still there in the Box Office.

  • Flash for the Palm Pre

    Now that flash is on general release where do I go to download the Palm Pre version?