<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.alpinelinux.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Zico</id>
	<title>Alpine Linux - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.alpinelinux.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Zico"/>
	<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/wiki/Special:Contributions/Zico"/>
	<updated>2026-04-30T02:25:40Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.40.0</generator>
	<entry>
		<id>https://wiki.alpinelinux.org/w/index.php?title=StatusNet&amp;diff=8037</id>
		<title>StatusNet</title>
		<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/w/index.php?title=StatusNet&amp;diff=8037"/>
		<updated>2012-05-11T10:56:17Z</updated>

		<summary type="html">&lt;p&gt;Zico: /* Installing StatusNet */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== What is StatusNet? ==&lt;br /&gt;
&lt;br /&gt;
StatusNet is the open source microblogging platform that helps you share and connect in real-time within your own domain.&lt;br /&gt;
&lt;br /&gt;
With StatusNet you can encourage collaboration, build and engage your community, and be in command of your brand.&lt;br /&gt;
&lt;br /&gt;
== Set up StatusNet on Alpine Linux ==&lt;br /&gt;
&lt;br /&gt;
This document will be a quick c/p guide to setup StatusNet on Alpine linux. What we will setup is the following:&lt;br /&gt;
&lt;br /&gt;
* Lighttpd with PHP&lt;br /&gt;
* PCRE&lt;br /&gt;
* Mysql &lt;br /&gt;
* StatusNet&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Install lighttpd and PHP ==&lt;br /&gt;
{{:Setting Up Lighttpd With FastCGI}}&lt;br /&gt;
&lt;br /&gt;
== MySql and pcre ==&lt;br /&gt;
&lt;br /&gt;
{{Cmd|apk add pcre}}&lt;br /&gt;
 &lt;br /&gt;
{{Cmd|apk add mysql mysql-client php-mysql php-mysqli}}&lt;br /&gt;
&lt;br /&gt;
== Configuring MySql ==&lt;br /&gt;
&lt;br /&gt;
{{Cmd|&amp;lt;nowiki&amp;gt;/usr/bin/mysql_install_db --user=mysql&lt;br /&gt;
/etc/init.d/mysql start &amp;amp;&amp;amp; rc-update add mysql default&lt;br /&gt;
/usr/bin/mysqladmin -u root password &#039;password&#039;&amp;lt;/nowiki&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Create the StatusNet database&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
{{Cmd|mysql -u root -p}}&lt;br /&gt;
&lt;br /&gt;
{{Cmd|&amp;lt;nowiki&amp;gt;CREATE DATABASE statusnet;&lt;br /&gt;
GRANT ALL PRIVILEGES ON statusnet.* TO &amp;quot;root&amp;quot;;&lt;br /&gt;
FLUSH PRIVILEGES;&lt;br /&gt;
EXIT&amp;lt;/nowiki&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
== Installing StatusNet ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Install StatusNet&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Make webapps folder&lt;br /&gt;
&lt;br /&gt;
{{Cmd|mkdir /usr/share/webapps/ -p}}&lt;br /&gt;
&lt;br /&gt;
Download &lt;br /&gt;
&lt;br /&gt;
{{Cmd|cd /usr/share/webapps/&lt;br /&gt;
wget http://status.net/statusnet-1.0.1.tar.gz}}&lt;br /&gt;
&lt;br /&gt;
Unpack &lt;br /&gt;
&lt;br /&gt;
{{Cmd|tar zxvf statusnet-1.0.1.tar.gz}}&lt;br /&gt;
&lt;br /&gt;
Creating httaccess file&lt;br /&gt;
&lt;br /&gt;
{{Cmd|cp /usr/share/webapps/statusnet-1.0.1/htaccess.sample .htaccess}}&lt;br /&gt;
&lt;br /&gt;
Change Folder Persmissions&lt;br /&gt;
&lt;br /&gt;
{{Cmd|chmod a+w /var/www/localhost/htdocs/statusnet/avatar/&lt;br /&gt;
chmod a+w /var/www/localhost/htdocs/statusnet/background/&lt;br /&gt;
chmod a+w /var/www/localhost/htdocs/statusnet/file/&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
Make Symlink to the StatusNet folder&lt;br /&gt;
&lt;br /&gt;
{{Cmd|ln -s /usr/share/webapps/statusnet-1.0.1/ /var/www/localhost/htdocs/statusnet}}&lt;br /&gt;
&lt;br /&gt;
== Configuring StatusNet ==&lt;br /&gt;
&lt;br /&gt;
Browse to: http://WEBSERVER_IP_ADDRESS/statusnet/install.php and Install StatusNet completing the information as appropriate from the web browser.&lt;br /&gt;
&lt;br /&gt;
StatusNet Installation steps:&lt;br /&gt;
&lt;br /&gt;
Install StatusNet&lt;br /&gt;
&lt;br /&gt;
* Site settings&lt;br /&gt;
 &lt;br /&gt;
:* Site name&lt;br /&gt;
::&#039;&#039;The name of your site&#039;&#039;&lt;br /&gt;
 &lt;br /&gt;
:* Fancy URLsenable&lt;br /&gt;
::  disable&lt;br /&gt;
::&#039;&#039;Fancy URL support detection failed, disabling this option. Make sure you renamed htaccess.sample to .htaccess.&#039;&#039;&lt;br /&gt;
 &lt;br /&gt;
* Database settings&lt;br /&gt;
&lt;br /&gt;
:* Hostname: &#039;&#039;&#039;localhost&#039;&#039;&#039;&lt;br /&gt;
::&#039;&#039;Database hostname&#039;&#039;&lt;br /&gt;
 &lt;br /&gt;
:* TypeMySQL&lt;br /&gt;
::&#039;&#039;Database type&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
:* Name: &#039;&#039;&#039;statusnet&#039;&#039;&#039;&lt;br /&gt;
::&#039;&#039;Database name&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
:* DB username: &#039;&#039;&#039;root&#039;&#039;&#039;&lt;br /&gt;
::&#039;&#039;Database username&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
:* DB password: &#039;&#039;&#039;password&#039;&#039;&#039;&lt;br /&gt;
::&#039;&#039;Database password (optional)&#039;&#039;&lt;br /&gt;
 &lt;br /&gt;
* Administrator settings&lt;br /&gt;
&lt;br /&gt;
:* Administrator nickname&lt;br /&gt;
::&#039;&#039;Nickname for the initial StatusNet user (administrator)&#039;&#039;&lt;br /&gt;
 &lt;br /&gt;
:* Administrator password&lt;br /&gt;
::&#039;&#039;Password for the initial StatusNet user (administrator)&#039;&#039;&lt;br /&gt;
 &lt;br /&gt;
:* Confirm passwordAdministrator e-mail&lt;br /&gt;
::&#039;&#039;Optional email address for the initial StatusNet user (administrator)&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Subscribe to announcements&lt;br /&gt;
&lt;br /&gt;
* Release and security feed from update@status.net (recommended)&lt;br /&gt;
&lt;br /&gt;
After click on &#039;&#039;&#039;Submit&#039;&#039;&#039; button, you will see:&lt;br /&gt;
&lt;br /&gt;
Install StatusNet&lt;br /&gt;
&lt;br /&gt;
 Starting installation...&lt;br /&gt;
 Checking database...&lt;br /&gt;
 Changing to database...&lt;br /&gt;
 Running database script...&lt;br /&gt;
 Adding SMS carrier data to database...&lt;br /&gt;
 Adding notice source data to database...&lt;br /&gt;
 Adding foreign service data to database...&lt;br /&gt;
 Writing config file...&lt;br /&gt;
 Could not set up subscription to update@status.net.&lt;br /&gt;
 An initial user with the administrator role has been created.&lt;br /&gt;
 StatusNet has been installed at http://10.69.64.11/statusnet&lt;br /&gt;
 DONE! You can visit your &#039;&#039;&#039;new StatusNet site&#039;&#039;&#039; (login as &#039;danieloc&#039;). If this is your first StatusNet install, you may want to poke around our Getting Started guide.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You have StatusNet microblogin working, to access go to http://WEBSERVER_IP_ADDRESS/statusnet and enjoy!&lt;br /&gt;
&lt;br /&gt;
[[Category:SQL]]&lt;/div&gt;</summary>
		<author><name>Zico</name></author>
	</entry>
</feed>