<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://rt-wiki.bestpractical.com/index.php?action=history&amp;feed=atom&amp;title=UpgradingFrom344to386_SLES10</id>
	<title>UpgradingFrom344to386 SLES10 - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://rt-wiki.bestpractical.com/index.php?action=history&amp;feed=atom&amp;title=UpgradingFrom344to386_SLES10"/>
	<link rel="alternate" type="text/html" href="https://rt-wiki.bestpractical.com/index.php?title=UpgradingFrom344to386_SLES10&amp;action=history"/>
	<updated>2026-08-22T09:50:49Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.41.1</generator>
	<entry>
		<id>https://rt-wiki.bestpractical.com/index.php?title=UpgradingFrom344to386_SLES10&amp;diff=4080&amp;oldid=prev</id>
		<title>Admin: 2 revisions imported</title>
		<link rel="alternate" type="text/html" href="https://rt-wiki.bestpractical.com/index.php?title=UpgradingFrom344to386_SLES10&amp;diff=4080&amp;oldid=prev"/>
		<updated>2016-04-06T20:39:38Z</updated>

		<summary type="html">&lt;p&gt;2 revisions imported&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;= Notes on Upgrading from 3.4.4 to 3.8.6 on SLES 10 =&lt;br /&gt;
&lt;br /&gt;
This is based on some of the README,UPGRADING,UPGRADING.mysql documentation put in what I hope to be a more clear format. I had the issue of doing some of these steps in the wrong order, which caused each user&amp;#039;s RT-at-a-Glance page to be blank, so I again restored from backup and reran the upgrade process in the right order for this to work.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Created a new folder&amp;#039;&amp;#039;&amp;#039; /opt/rt38 and new mysql database rt38, granting permissions to the appropriate user.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Restored RT 3.4.4 mysql backup&amp;#039;&amp;#039;&amp;#039; into mysql database rt38.&lt;br /&gt;
&lt;br /&gt;
 mysql -u rtdb_user -p rt3 &amp;amp;lt; rt3backup.sql&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Configure and make:&amp;#039;&amp;#039;&amp;#039; The Readme says, if doing an upgrade, &amp;quot;Follow instructions in README file up to step 7, but only up to version 3.7.87.&amp;quot; Which means:&lt;br /&gt;
&lt;br /&gt;
 ./configure, make testdeps, make fixdeps, sudo make install&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Update config file:&amp;#039;&amp;#039;&amp;#039; etc/RT_SiteConfig.pm to point to the current database, user, other settings. This file was quite different than the previous version, so it took some editing rather than just duplicating the previous version&amp;#039;s config file. Copy RT_Config.pm over and edit as needed. Some examples:&lt;br /&gt;
&lt;br /&gt;
 Set($DatabaseUser , &amp;#039;rt3db_user&amp;#039;);&lt;br /&gt;
 Set($DatabasePassword , &amp;#039;xxxxxx&amp;#039;);&lt;br /&gt;
 Set($DatabaseName , &amp;#039;rt38&amp;#039;);&lt;br /&gt;
 Set($WebDomain, &amp;#039;rthost.org&amp;#039;);&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Run make upgrade:&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
 sudo make upgrade&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Apply RT 3.8 schema upgrades.&amp;#039;&amp;#039;&amp;#039; /etc/upgrade/upgrade-mysql-schema.pl will generate queries to do the upgrade.&lt;br /&gt;
&lt;br /&gt;
 perl etc/upgrade/upgrade-mysql-schema.pl db user pass &amp;amp;gt; sql.queries&lt;br /&gt;
 mysql -u root -p rt38 &amp;amp;lt; sql.queries&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
If no warnings, proceed to step 7 of README and apply other upgrades. Test binary attachments (doc,pdf).&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Run the rt-setup-database upgrade:&amp;#039;&amp;#039;&amp;#039; do this in the installer directory rt-3.8.x (or it won&amp;#039;t find .etc/upgrade/*). It will prompt you to enter the version you are upgrading from. Then it should list a group of required updates from the current version (3.4.4) all the way up to the newest version, and it should &amp;quot;populate the database&amp;quot; and insert data for you.&lt;br /&gt;
&lt;br /&gt;
 /opt/rt38/sbin/rt-setup-database --dba root --prompt-for-dba-password --action upgrade&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Clear mason cache dir:&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
 rm -fr /opt/rt3/var/mason_data/obj&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Note on the order of doing the upgrade:&amp;#039;&amp;#039;&amp;#039; from post on gossamer-threads.com:&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Your upgrade procedure is like what I did, which is wrong. If you use mysql, you should run the mysql upgrade script first, then run the RT upgrade script. or you will get an empty &amp;quot;RT at glance&amp;quot; page.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Finally:&lt;br /&gt;
&lt;br /&gt;
* Configure e-mail and web gateways.&lt;br /&gt;
* Be sure to change root&amp;#039;s web password from the default.&lt;br /&gt;
* Set up automated recurring tasks in cron to generate email digest messages&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
</feed>