<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic About MYSQL? in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/about-mysql/m-p/3511709#M844157</link>
    <description>This is HP-UX 11.00. There is a third-party tool running on this box. It is using MYSQL. How can I know which process belongs to MYSQL? How to connect to MYSQL?&lt;BR /&gt;&lt;BR /&gt;Thanks for any advice.&lt;BR /&gt;&lt;BR /&gt;FJ</description>
    <pubDate>Fri, 25 Mar 2005 02:07:47 GMT</pubDate>
    <dc:creator>ericfjchen</dc:creator>
    <dc:date>2005-03-25T02:07:47Z</dc:date>
    <item>
      <title>About MYSQL?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/about-mysql/m-p/3511709#M844157</link>
      <description>This is HP-UX 11.00. There is a third-party tool running on this box. It is using MYSQL. How can I know which process belongs to MYSQL? How to connect to MYSQL?&lt;BR /&gt;&lt;BR /&gt;Thanks for any advice.&lt;BR /&gt;&lt;BR /&gt;FJ</description>
      <pubDate>Fri, 25 Mar 2005 02:07:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/about-mysql/m-p/3511709#M844157</guid>
      <dc:creator>ericfjchen</dc:creator>
      <dc:date>2005-03-25T02:07:47Z</dc:date>
    </item>
    <item>
      <title>Re: About MYSQL?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/about-mysql/m-p/3511710#M844158</link>
      <description>usually, the binaries should reside in /usr/local/mysql/bin which ought to be a symlink to /usr/local/mysql-platform-version.&lt;BR /&gt;&lt;BR /&gt;to connect You'd type /usr/local/mysql/bin/mysql and the processes might be found using &lt;BR /&gt;ps -ef | grep mys &lt;BR /&gt;&lt;BR /&gt;(it should be called mysqld-safe)&lt;BR /&gt;&lt;BR /&gt;I'll to add some examples in a moment.</description>
      <pubDate>Fri, 25 Mar 2005 17:43:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/about-mysql/m-p/3511710#M844158</guid>
      <dc:creator>Florian Heigl (new acc)</dc:creator>
      <dc:date>2005-03-25T17:43:41Z</dc:date>
    </item>
    <item>
      <title>Re: About MYSQL?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/about-mysql/m-p/3511711#M844159</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;have a look at the following URL too:&lt;BR /&gt;&lt;A href="http://www.cs.nott.ac.uk/TSG/manuals/databases/mysql/standard/" target="_blank"&gt;http://www.cs.nott.ac.uk/TSG/manuals/databases/mysql/standard/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;regards&lt;BR /&gt;yogeeraj</description>
      <pubDate>Mon, 28 Mar 2005 05:57:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/about-mysql/m-p/3511711#M844159</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2005-03-28T05:57:24Z</dc:date>
    </item>
    <item>
      <title>Re: About MYSQL?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/about-mysql/m-p/3511712#M844160</link>
      <description>A lot of info on mysql:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://dev.mysql.com/" target="_blank"&gt;http://dev.mysql.com/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff</description>
      <pubDate>Mon, 28 Mar 2005 10:31:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/about-mysql/m-p/3511712#M844160</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2005-03-28T10:31:13Z</dc:date>
    </item>
    <item>
      <title>Re: About MYSQL?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/about-mysql/m-p/3511713#M844161</link>
      <description>export UNIX95=true&lt;BR /&gt;ps -efH&lt;BR /&gt;&lt;BR /&gt;The above will show you a hierarchy of processes running on your system.&lt;BR /&gt;&lt;BR /&gt;Check for mysql.  Under which are its child processes.&lt;BR /&gt;&lt;BR /&gt;To connect to mysql,&lt;BR /&gt;use mysql or mysqladmin commands.</description>
      <pubDate>Mon, 28 Mar 2005 12:41:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/about-mysql/m-p/3511713#M844161</guid>
      <dc:creator>Wilfred Chau_1</dc:creator>
      <dc:date>2005-03-28T12:41:49Z</dc:date>
    </item>
    <item>
      <title>Re: About MYSQL?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/about-mysql/m-p/3511714#M844162</link>
      <description>To find the mysql process:&lt;BR /&gt;-ps -ef |grep mysql&lt;BR /&gt;&lt;BR /&gt;To connect to mysql:&lt;BR /&gt;-find mysql root (this can be ANYWHERE, depending on how it was built). You may be able to discern this from the above ps command.&lt;BR /&gt;-under $MYSQLROOT/bin, run mysql -u &lt;USER&gt; -p&lt;BR /&gt;-it will ask for a passwd.&lt;BR /&gt;&lt;BR /&gt;-Paul&lt;/USER&gt;</description>
      <pubDate>Mon, 28 Mar 2005 15:03:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/about-mysql/m-p/3511714#M844162</guid>
      <dc:creator>Paul Cross_1</dc:creator>
      <dc:date>2005-03-28T15:03:30Z</dc:date>
    </item>
  </channel>
</rss>

