Run MS SQL Server Express on Linux Mint - sql

I am aware that MS SQL Server 2016 is compatible with Linux. Despite this flavor of SQL, I am needing to run SQL Express for training purposes. Is there a method to successfully operate Microsoft SQL Server Express in the Linux Mint environment?

I think this is an interesting question and shouldn't be marked down. After searching online, i came up with his tutorial on setting up mssql server on linux. I tested on linux mint 18.1.
http://www.tecmint.com/install-ms-sql-server-centos-ubuntu-linux/

I installed MSSQL 2016 on Ubuntu last night. Mint is Debian based so it 'might' work. The instructions are here ...
https://learn.microsoft.com/en-gb/sql/linux/sql-server-linux-setup-ubuntu
The installation process is very simple - in fact it literally took seconds, since it uses the familiar apt-get install package manager install which is available with Mint. One thing to be aware of is the requirement for openssl needs version 1.0.2 - this caught me out. I tinkered around trying to upgrade to the correct version on my ubuntu server and did have the correct version installed but MSSQL still would not install. So I created a 16.04 version of ubuntu and then it installed easily. I'm not sure if my comments qualify as an 'answer' but I'd just try and install it as if you have the dependencies I would think you'll be okay.

Related

odoo15 enterprise edition installation in Linux VPS server

I am trying to install odoo15 enterprise edition on a Linux VPS server , But I'm facing many issues during installation .
Can you guys help me with a clear guidelines about the installation process?
If you are using an Ubuntu server, you can use an installation script to easily install Odoo.
You can find an installation script from Yenthe over here
I have a slightly modified version of the same script over here

How do I make a SQL Server and connect mysql Shell to it

I've seen people ask the same question but they already have the local server ready, but I don't know how to make one, so can someone help me and show me how to make a SQL Server
If your intent is to install MySQL Server, here are the instructions:
https://dev.mysql.com/doc/refman/8.0/en/installing.html
Instructions for connecting MySQL Shell (8.0):
https://dev.mysql.com/doc/mysql-shell/8.0/en/mysql-shell-connection-using-parameters.html
However, I'm assuming you are asking for instructions for installing Microsoft SQL Server 2019 ("SQL Server" is usually inferred to mean Microsoft's database).
https://learn.microsoft.com/en-us/sql/database-engine/install-windows/install-sql-server?view=sql-server-ver15
If you are intending to work with Microsoft SQL Server, you may find Visual Studio 2019 Community Edition to be an easier tool:
https://visualstudio.microsoft.com/downloads/
https://learn.microsoft.com/en-us/visualstudio/data-tools/add-new-connections?view=vs-2019
SQL Server Data Tools for Visual Studio
https://visualstudio.microsoft.com/vs/features/ssdt/
You may also be interested in looking at the free database tools offered by EMS (which supports working with MySQL, PostrgreSQL, ..., and SQL Server)
https://www.sqlmanager.net/en/tools/free
Are you on windows?
You need to install the server, because you mention mysql, download it here
https://dev.mysql.com/downloads/installer/
After you have installed it you can download a mysql client to manage your server, like mysql workbench
https://dev.mysql.com/downloads/workbench/
Maybe you use linux because you mentioned shell?
sudo apt-get update
sudo apt-get install mysql-server
Configure the server
sudo mysql_secure_installation utility
Start the service
sudo systemctl start mysql
Start the mysql shell
/usr/bin/mysql -u root -p

Installing ORA2PG tool on windows 12R2 server

This is 1st time here. I am trying to install ora2pg tool to migrate data from oracle 12c to PG20. As per docs, I installed Strawberry Perl and ActiveState Perl on the Windows server where I have Oracle 12c enterprise version (and not the client) installed. On the same machine, I have postgresql installed. When I type gmake.exe on c:\ora2pg20\ I get this error message:
:to undefined at c:\perl64\site\lib\extutils\install.pm line 141.
Is it because I could not get to install DBD::Oracle? Or I am missing something else? Any help?
I had to get ora2pg running earlier today on my Win10 and faced the same issues.
I had also installed Strawberry Perl and ActiveState Perl - and found that the PATH envvar ended up being confused with having multiple Perl environments.
So I got rid of ActiveState PERL and made sure my PATH envvar was correct for Strawberry Perl.
Then I got DBD::Oracle from
https://cpan.metacpan.org/authors/id/M/MJ/MJEVANS/DBD-Oracle-1.80.tar.gz
After installing ora2pg and DBD::Oracle via the standard Perl Makefile process, and creating a valid ora2pg.conf file for my particular Oracle instance, it all started to work.
Good luck

Run ColdFusion 9.02 on Apache 2.4 x64

I've inherited an application server which I need to maintain/upgrade.
It's currently running Windows Server 2008R2, ColdFusion 9.02 32-bit and Apache 2.4 32-bit.
Because I want to upgrade/debug/alter the CF source code, I want to use FusionReactor to help me, especially the (line)debugging part.
Unfortunately, FusionReactor only runs (well, the debugging part) on 64bit java. Because the CF application is quite old, it's not ready to run on a newer CF version yet (and I want to port it to Lucee eventually). So, that leaves me the option of CF 9.02 64bit. Problem there is, that it won't run out of the box on Apache 2.4 (only 2.2).
CF 9.02 32bit is currently running on Apache 2.4 because I compiled/patched an Apache 2.2 module (mod_jrun22.so) so it works on Apache 2.4 (with the help of this https://g0blin.co.uk/mod_jrun-on-apache-2-4-ubuntu-14-04-coldfusion-9/ )
Unfortunately, I'm unable to do the same for Apache 2.4 64bit, because there seems to be no apxs 64bit available.
I could downgrade Apache 2.4 -> 2.2, but that's only my last resort.
Now my question. Is somebody able to recompile this module for 64bit, or give me some guidelines to do so? Is apxs available for 64bit? If not, Is there a simple way to compile (custom) modules for Apache 2.4 64bit?
Thanks!
http://www.gpickin.com/index.cfm/blog/multi-cfml-engine-install-extracting-the-coldfusion-9-connector-for-apache
Run it by ./apache_connectors.sh
If you get a GCC not found error, you might have to install some development tools,
to allow you to build the connector.
yum groupinstall 'Development Tools'
You might reach out to Gavin, the author of that article to see if he has any further notes. It's been forever and a day since I had to deal w/ 32-bit CF. I know I managed to get CF 8 to run on 64-bit, which was never officially supported IIRC, but I don't have any of those notes anymore.
You might look to using CommandBox to run your server instead of Apache. It might make your conversion to Lucee easier too. The only reason to convert the engine depends on how much new code is being written for this application. You can get away with CF 9 without the effort of upgrading or converting.

What's the exact purpose of Yii Appliance?

It's introduction is here:
http://www.yiiframework.com/demos/
But what's that virtual server image for ?
A simple way to have a preconfigured server environment with the software in question already installed, configured, and ready to run.
I agree with Dav, also, it is not updated very often (If I'm not bad, the included Yii version is 1.0.2 and current is 1.1.2, about 1 year old). Y recommend you to download the last stable version and try with it with your own web server it can be a local server). If you have Windows OS I recommend WAMP (one of the easiest to install) or ZWAMP (I think this is the most updated one, http://zwamp.sourceforge.net/), if you are using Linux or *BSD you have more and easy-to-install alternatives.