I will be taking the server down for about an hour tomorrow morning, 15 Sep 2014 to make a system drive image now that the upgrade process is complete and the server is at Fedora 20.
This should only take an hour or so, and inconvenience should be minimal.
Well, I did it! About 10 days after I started with the F13 server, it is now happily sitting at F20. I knew that this last jump F18>20 would be a fun one indeed, since Fedora has decided to abandon mysql in favor of mariadb. No idea what their issues are, but that means that quite a few applications on the server that want mysql would fail, for example, the blogs. This change happened in Fedora 19. Another change that happened is that F18 and above no longer support anaconda upgrades as has been the practice up to this point. So, I had to approach this one logically. First step, was to backup all the mysql databases to one of the storage drives. Just in case….. 😉
$ mysqldump-uusername-p[password]-–all-databases>file.sql
Next step was to make sure that I had the latest fedup (Fedora Upgrade), since version .7 was buggy. So, I used yum (as root user) to grab version .8.
# yum install fedup
Finally, it was time to start the upgrade process. the way it works is that fedup downloads all the packages and the dracut image, and then tells you to reboot where it actually upgrades.
# fedup-cli --network 20 --nogpgcheck
I used fedup-cli rather than fedup because I was using a ssh session, and wasn't actually AT the server. ;)
After a reboot, I was left with a Fedora 20 Desktop environment. So, I looked things over, and as expected the blogs were dead due to mysqld no longer being installed. I also noticed that the ices streamer was dead as well. Those seemed to be the only casualties, so I set off to work on them. First up was the mysql problem. Way to fix that would be to remove mariadb and install community-mysql. (As root user):
# yum remove mariadb mariadb-libs mariadb-server
# yum install community-mysql-server community-mysql-libs community-mysql akonadi-mysql qt-mysql
# systemctl enable mysqld# service mysqld start
I checked the blogs, and looks like I don't need my sqldump, as all the data was there. Next on the list was the ices stream. I checked to make sure libshout as well as libshout-devel were still installed, and they were. So, figured it probably needed to be recompiled. Remember? We had to do this before.... Trouble with ./configure, though. It XML was listed as No. That isn't going to work, so I got out a big hammer..... (As root user):
# yum install libshout libshout-devel libogg-devel libvorbis-devel libtheora libtheora-devel libspeex libspeex-devel lame lame-devel toolame twolame twolame-devel libxml2 libxml2-devel faad2 faad2-devel flac flac-devel curl-devel libxslt-devel libgcrypt-devel libgpg-error-devel libidn-devel
When I ran ./configure again and then make, it failed with flac errors, and since I don't stream flac files, I removed those two like this.
# yum remove flac flac-devel
Now, ./configure again, and then make again, and it compiled fine. So, I became root user and did make install. This installs the binary by default as /usr/local/bin/ices. My setup needs it in /usr/local/icecast/bin/ices. I've always kept it in both places for standardization. But, I'm getting tired of always having to copy it there, so I created a symbolic link like so... (As root user):
# ln -s /usr/local/bin/ices /usr/local/icecast/bin/ices
Started the stream and verified it was running, and that is that. Last tasks are to image the system drive for the last time and update the system using yumex. :D
I wanted to take some time off from the ‘upgrade hell’ that I’ve been putting myself through. So, I got serious and finished a project that has been in the conception form in my head only. I wanted to get the server’s vnc server able to be connected to by a ‘java-aware’ browser.
I decided to do this because some firewalls/antivirus protection suites tend to block traditional VNC as a ‘security risk’. Hogwash as long as the admin properly sets it up. So, this method will circumvent being blocked from running a vnc client like that. However, the server needs a few things running on it in order to do this: tigervnc-server-applet (since the server runs tigervnc), tinyvnc java viewer, and the jdk and jre from oracle. (Java developer’s kit and Java run-time environment) Here’s how to do it:
First, you need to install the jdk and jre. Go to this page and download both files after you accept the agreement. Java. You install it on Fedora with the following commands, as the root user.
## Install Java on 32-Bit OS ## # rpm -Uvh jdk-7u25-linux-i586.rpm # rpm -Uvh jre-7u25-linux-i586.rpm
## Install Java on 64-Bit OS ## # rpm -Uvh jdk-7u25-linux-x64.rpm # rpm -Uvh jre-7u25-linux-x64.rpm
Verify that it’s running with the following two commands, and you should receive similar output:
I also installed the server applet for tigervnc using the following:
# yum install tigervnc-server-applet
Go to Apache web root directory (i.e. /var/www/html), create a empty directory “vncweb“. Use “wget” to download the files inside the folder. Extract the files using unzip command and rename viewer-applet-example.html file to index.html as shown. (You must be root user.)
# cd /var/www/html # mkdir vncweb # cd vncweb # wget http://www.tightvnc.com/download/2.7.2/tvnjviewer-2.7.2-bin.zip # unzip tvnjviewer-2.7.2-bin.zip # mv viewer-applet-example.html index.html
Open index.html file using any editor or nano editor as suggested.
# nano index.html
Next define IP address of Server, VNC Port Number and Password of VNC User that you want to connect. For example, my server IP address is “172.16.25.126 “5901” and Password as “123” for my VNC user called “fakeuser“.
<param name=”Host” value=”172.16.25.126” /> <!– Host to connect. –> <param name=”Port” value=”5901” /> <!– Port number to connect. –> <!–param name=”Password” value=”” /–> <!– Password to the server. –>
*** Important *** Leave the Password value EMPTY, or it poses a security issue, unless the vncweb directory is password protected.
Access VNC Desktop of user “fakeuser” from the browser by going to: http://172.16.25.126/vncweb/
You will get a “Security Warning” message says that unsigned application requesting permission to run. Just accept and run the application as described below.
Enter Password to access “fakeuser” vnc server.
You will then be asked for your user password that tigervnc is running under in order to unlock the fakeuser’s desktop.
That’s it, you successfully connected to Remote Desktop.
If you’re accessing from any other computer, you might get an “missing plugin” error, just install plugin and access it. You can grab the latest Java plugin at Download Javapage.
I know I posted this on Facebook….. Think I’ll post it here, too. It will be a nice followup to I’m Eighteen. 😉 This was recorded about a week ago while I was on vacation using my 2013 Gibson SG over a backing track using a Boss DS-2 Turbo Distortion pedal. No More Mr Nice Guy. Enjoy.