<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://www.wiki.mohid.com/index.php?action=history&amp;feed=atom&amp;title=Mysql</id>
		<title>Mysql - Revision history</title>
		<link rel="self" type="application/atom+xml" href="http://www.wiki.mohid.com/index.php?action=history&amp;feed=atom&amp;title=Mysql"/>
		<link rel="alternate" type="text/html" href="http://www.wiki.mohid.com/index.php?title=Mysql&amp;action=history"/>
		<updated>2026-04-04T20:06:12Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.28.0</generator>

	<entry>
		<id>http://www.wiki.mohid.com/index.php?title=Mysql&amp;diff=670&amp;oldid=prev</id>
		<title>Guillaume: 1 revision</title>
		<link rel="alternate" type="text/html" href="http://www.wiki.mohid.com/index.php?title=Mysql&amp;diff=670&amp;oldid=prev"/>
				<updated>2008-12-03T10:38:57Z</updated>
		
		<summary type="html">&lt;p&gt;1 revision&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr style='vertical-align: top;' lang='en'&gt;
				&lt;td colspan='1' style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan='1' style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;Revision as of 10:38, 3 December 2008&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan='2' style='text-align: center;' lang='en'&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(No difference)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Guillaume</name></author>	</entry>

	<entry>
		<id>http://www.wiki.mohid.com/index.php?title=Mysql&amp;diff=669&amp;oldid=prev</id>
		<title>192.168.20.177 at 14:27, 3 October 2007</title>
		<link rel="alternate" type="text/html" href="http://www.wiki.mohid.com/index.php?title=Mysql&amp;diff=669&amp;oldid=prev"/>
				<updated>2007-10-03T14:27:09Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;[[Mysql]] is a popular and powerful database server.&lt;br /&gt;
&lt;br /&gt;
==Restarting==&lt;br /&gt;
 &amp;gt; /etc/init.d/mysqld restart&lt;br /&gt;
 &amp;gt; /etc/init.d/mysqld start&lt;br /&gt;
 &amp;gt; /etc/init.d/mysqld stop&lt;br /&gt;
&lt;br /&gt;
==Setting up Mysql==&lt;br /&gt;
Do this:&lt;br /&gt;
 &amp;gt; groupadd mysql&lt;br /&gt;
 &amp;gt; useradd -g mysql mysql&lt;br /&gt;
 &amp;gt; cd /usr/local&lt;br /&gt;
 &amp;gt; gunzip &amp;lt; /PATH/TO/MYSQL-VERSION-OS.tar.gz | tar xvf -&lt;br /&gt;
 &amp;gt; ln -s FULL-PATH-TO-MYSQL-VERSION-OS mysql&lt;br /&gt;
 &amp;gt; cd mysql&lt;br /&gt;
 &amp;gt; scripts/mysql_install_db --user=mysql&lt;br /&gt;
 &amp;gt; chown -R root  .&lt;br /&gt;
 &amp;gt; chown -R mysql data&lt;br /&gt;
 &amp;gt; chgrp -R mysql .&lt;br /&gt;
 &amp;gt; bin/mysqld_safe --user=mysql &amp;amp;&lt;br /&gt;
&lt;br /&gt;
Or install it with rpm in fcX with:&lt;br /&gt;
 &amp;gt; yum groupinstall mysql&lt;br /&gt;
 &amp;gt; /etc/init.d/mysqld restart&lt;br /&gt;
&lt;br /&gt;
==Setting up the initlevel==&lt;br /&gt;
Copy the ''mysql.server'' file into ''[[/etc]]/init.d'' and then create symbolic links to it in ''[[/etc]]/rc3.d'' and ''[[/etc]]/rc0.d''. Finally, before rebooting, create a symbolic link from the ''Mysql'' root folder into ''/usr/local/mysql''.&lt;br /&gt;
 &amp;gt; cat support-files/mysql.server | head&lt;br /&gt;
 # MySQL daemon start/stop script.&lt;br /&gt;
 &lt;br /&gt;
 # Usually this is put in /etc/init.d (at least on machines SYSV R4 based&lt;br /&gt;
 # systems) and linked to /etc/rc3.d/S99mysql and /etc/rc0.d/K01mysql.&lt;br /&gt;
 # When this is done the mysql server will be started when the machine is&lt;br /&gt;
 # started and shut down when the systems goes down.&lt;br /&gt;
 &lt;br /&gt;
 ...&lt;br /&gt;
 &lt;br /&gt;
 # If you install MySQL on some other places than /usr/local/mysql, then you&lt;br /&gt;
 # have to do one of the following things for this script to work:&lt;br /&gt;
 #&lt;br /&gt;
 # - Run this script from within the MySQL installation directory&lt;br /&gt;
 # - Create a /etc/my.cnf file with the following information:&lt;br /&gt;
 #   [mysqld]&lt;br /&gt;
 #   basedir=&amp;lt;path-to-mysql-installation-directory&amp;gt;&lt;br /&gt;
 # - Add the above to any other configuration file (for example ~/.my.ini)&lt;br /&gt;
 #   and copy my_print_defaults to /usr/bin&lt;br /&gt;
 # - Add the path to the mysql-installation-directory to the basedir variable&lt;br /&gt;
 #   below.&lt;br /&gt;
 #&lt;br /&gt;
 # If you want to affect other MySQL variables, you should make your changes&lt;br /&gt;
 # in the /etc/my.cnf, ~/.my.cnf or other MySQL configuration files.&lt;br /&gt;
 &lt;br /&gt;
 # If you change base dir, you must also change datadir. These may get&lt;br /&gt;
 # overwritten by settings in the MySQL configuration files.&lt;br /&gt;
 &lt;br /&gt;
 basedir=/home/guillaume/Software/las/mysql-standard-5.0.27-linux-i686&lt;br /&gt;
 datadir=/home/guillaume/Software/las/mysql-standard-5.0.27-linux-i686/data&lt;br /&gt;
&lt;br /&gt;
==External references==&lt;br /&gt;
*http://www.mysql.com/&lt;br /&gt;
&lt;br /&gt;
[[Category:Linux]]&lt;br /&gt;
[[Category:Mysql]]&lt;br /&gt;
[[Category:Database]]&lt;/div&gt;</summary>
		<author><name>192.168.20.177</name></author>	</entry>

	</feed>
<script>
  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
  })(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
  ga('create', 'UA-56589921-5', 'auto');
  ga('send', 'pageview');
</script>