<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: MS SQL on Vagrant Ubuntu Homestead box for development on Laravel	</title>
	<atom:link href="https://vedmant.com/ms-sql-vagrant-ubuntu-homestead-box-development-laravel/feed/" rel="self" type="application/rss+xml" />
	<link>https://vedmant.com/ms-sql-vagrant-ubuntu-homestead-box-development-laravel/</link>
	<description>Sharing my personal experience in web development</description>
	<lastBuildDate>Fri, 30 Nov 2018 22:12:06 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8</generator>
	<item>
		<title>
		By: Chris Bloom		</title>
		<link>https://vedmant.com/ms-sql-vagrant-ubuntu-homestead-box-development-laravel/#comment-571</link>

		<dc:creator><![CDATA[Chris Bloom]]></dc:creator>
		<pubDate>Fri, 30 Nov 2018 22:12:06 +0000</pubDate>
		<guid isPermaLink="false">https://vedmant.com/?p=135#comment-571</guid>

					<description><![CDATA[Some of the names of the package list files have changed. I found https://docs.microsoft.com/en-us/sql/linux/quickstart-install-connect-ubuntu?view=sql-server-2017 which got me through setup.]]></description>
			<content:encoded><![CDATA[<p>Some of the names of the package list files have changed. I found <a href="https://docs.microsoft.com/en-us/sql/linux/quickstart-install-connect-ubuntu?view=sql-server-2017" rel="nofollow ugc">https://docs.microsoft.com/en-us/sql/linux/quickstart-install-connect-ubuntu?view=sql-server-2017</a> which got me through setup.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: kevin		</title>
		<link>https://vedmant.com/ms-sql-vagrant-ubuntu-homestead-box-development-laravel/#comment-212</link>

		<dc:creator><![CDATA[kevin]]></dc:creator>
		<pubDate>Tue, 19 Dec 2017 23:39:41 +0000</pubDate>
		<guid isPermaLink="false">https://vedmant.com/?p=135#comment-212</guid>

					<description><![CDATA[So nice.
this post is awesome.]]></description>
			<content:encoded><![CDATA[<p>So nice.<br />
this post is awesome.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: vedmant		</title>
		<link>https://vedmant.com/ms-sql-vagrant-ubuntu-homestead-box-development-laravel/#comment-151</link>

		<dc:creator><![CDATA[vedmant]]></dc:creator>
		<pubDate>Thu, 31 Aug 2017 13:55:43 +0000</pubDate>
		<guid isPermaLink="false">https://vedmant.com/?p=135#comment-151</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://vedmant.com/ms-sql-vagrant-ubuntu-homestead-box-development-laravel/#comment-135&quot;&gt;someguygooglingAround&lt;/a&gt;.

It should be enough to install `php7.1-sybase` extension:

sudo apt-get install -y freetds-common libsybdb5 php7.1-sybase



Alternatively you can compile pdo-sqlsrv extension using pecl:

sudo pecl install sqlsrv pdo_sqlsrv

# Add extensions to php config
echo &quot;extension=pdo_sqlsrv.so&quot; &#124; sudo tee /etc/php/7.1/mods-available/pdo_sqlsrv.ini
echo &quot;extension=sqlsrv.so&quot; &#124; sudo tee /etc/php/7.1/mods-available/sqlsrv.ini
sudo ln -s /etc/php/7.1/mods-available/pdo_sqlsrv.ini /etc/php/7.1/cli/conf.d/20-pdo_sqlsrv.ini
sudo ln -s /etc/php/7.1/mods-available/pdo_sqlsrv.ini /etc/php/7.1/fpm/conf.d/20-pdo_sqlsrv.ini
sudo ln -s /etc/php/7.1/mods-available/sqlsrv.ini /etc/php/7.1/cli/conf.d/20-sqlsrv.ini
sudo ln -s /etc/php/7.1/mods-available/sqlsrv.ini /etc/php/7.1/fpm/conf.d/20-sqlsrv.ini
]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://vedmant.com/ms-sql-vagrant-ubuntu-homestead-box-development-laravel/#comment-135">someguygooglingAround</a>.</p>
<p>It should be enough to install `php7.1-sybase` extension:</p>
<p>sudo apt-get install -y freetds-common libsybdb5 php7.1-sybase</p>
<p>Alternatively you can compile pdo-sqlsrv extension using pecl:</p>
<p>sudo pecl install sqlsrv pdo_sqlsrv</p>
<p># Add extensions to php config<br />
echo &#8220;extension=pdo_sqlsrv.so&#8221; | sudo tee /etc/php/7.1/mods-available/pdo_sqlsrv.ini<br />
echo &#8220;extension=sqlsrv.so&#8221; | sudo tee /etc/php/7.1/mods-available/sqlsrv.ini<br />
sudo ln -s /etc/php/7.1/mods-available/pdo_sqlsrv.ini /etc/php/7.1/cli/conf.d/20-pdo_sqlsrv.ini<br />
sudo ln -s /etc/php/7.1/mods-available/pdo_sqlsrv.ini /etc/php/7.1/fpm/conf.d/20-pdo_sqlsrv.ini<br />
sudo ln -s /etc/php/7.1/mods-available/sqlsrv.ini /etc/php/7.1/cli/conf.d/20-sqlsrv.ini<br />
sudo ln -s /etc/php/7.1/mods-available/sqlsrv.ini /etc/php/7.1/fpm/conf.d/20-sqlsrv.ini</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: ObelixNL		</title>
		<link>https://vedmant.com/ms-sql-vagrant-ubuntu-homestead-box-development-laravel/#comment-136</link>

		<dc:creator><![CDATA[ObelixNL]]></dc:creator>
		<pubDate>Tue, 18 Jul 2017 17:27:37 +0000</pubDate>
		<guid isPermaLink="false">https://vedmant.com/?p=135#comment-136</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://vedmant.com/ms-sql-vagrant-ubuntu-homestead-box-development-laravel/#comment-130&quot;&gt;Kasper&lt;/a&gt;.

You can use environment variables like this 

sudo MSSQL_PID=Developer MSSQL_SA_PASSWORD=&#039;&#039; /opt/mssql/bin/mssql-conf -n setup

See https://docs.microsoft.com/en-us/sql/linux/sql-server-linux-setup

For automatic installations you can use https://docs.microsoft.com/en-us/sql/linux/sample-unattended-install-ubuntu]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://vedmant.com/ms-sql-vagrant-ubuntu-homestead-box-development-laravel/#comment-130">Kasper</a>.</p>
<p>You can use environment variables like this </p>
<p>sudo MSSQL_PID=Developer MSSQL_SA_PASSWORD=&#8221; /opt/mssql/bin/mssql-conf -n setup</p>
<p>See <a href="https://docs.microsoft.com/en-us/sql/linux/sql-server-linux-setup" rel="nofollow ugc">https://docs.microsoft.com/en-us/sql/linux/sql-server-linux-setup</a></p>
<p>For automatic installations you can use <a href="https://docs.microsoft.com/en-us/sql/linux/sample-unattended-install-ubuntu" rel="nofollow ugc">https://docs.microsoft.com/en-us/sql/linux/sample-unattended-install-ubuntu</a></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: someguygooglingAround		</title>
		<link>https://vedmant.com/ms-sql-vagrant-ubuntu-homestead-box-development-laravel/#comment-135</link>

		<dc:creator><![CDATA[someguygooglingAround]]></dc:creator>
		<pubDate>Wed, 12 Jul 2017 20:49:45 +0000</pubDate>
		<guid isPermaLink="false">https://vedmant.com/?p=135#comment-135</guid>

					<description><![CDATA[would be great if u teach us how to install properly the srlsrv driver in php 7.1 on ubuntu]]></description>
			<content:encoded><![CDATA[<p>would be great if u teach us how to install properly the srlsrv driver in php 7.1 on ubuntu</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Kasper		</title>
		<link>https://vedmant.com/ms-sql-vagrant-ubuntu-homestead-box-development-laravel/#comment-130</link>

		<dc:creator><![CDATA[Kasper]]></dc:creator>
		<pubDate>Sat, 10 Jun 2017 19:59:58 +0000</pubDate>
		<guid isPermaLink="false">https://vedmant.com/?p=135#comment-130</guid>

					<description><![CDATA[Is there a way to run `sqlservr-setup` without a gui and thereby giving the password aso. by commandline?]]></description>
			<content:encoded><![CDATA[<p>Is there a way to run `sqlservr-setup` without a gui and thereby giving the password aso. by commandline?</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
