Crystal Report Server - SMTP over secured connection (SSL/TLS)

<p>Hello All,</p><p>Been looking around information on Crystal Reports Server but have not managed to find the information I need. So was wondering if anyone new if it is possible to distribute reports via SMTP over secured connections such as SSL/TLS using Crystal Reports Server?  </p>

Only if the security is external to BO. our SMPT configuration does not have a built in configuration parameter to encrypt data.
Regards,
Tim

Similar Messages

  • CF8 Server Monitor over secure connection?

    Hi,
    Has anyone out there been able to get the CF8 Server Monitor
    to work over a secure "HTTPS" connection?
    It doesn't work for me. I get an error message, "ColdFusion
    Server is unavailable."
    Thanks.

    Yes, Server monitor works on https also.
    Are you able to access your CF admin through the https?
    ex:
    https://localhost:8500/CFIDE/administrator/index.cfm

  • Error in connection of SAP BO Crystal report for enterprise over IDT Universe

    Hi Experts,
    I am facing a connection issue in Crystal report for Enterprise 4.0.
    I am trying to connect Crystal report for Enterprise over IDT Universe which is based on an ECC table. While establishing the connection in crystal report an error pops us stating the data source in invalid as shown below:
    Hope the following version details will help you to get some clue on the error.
    BI launch pad - Built Number : 915
                                   - Product Version : 14.0.5
    SAP Crystal report for Enterprise XI 4.0 - Version : 14.0.2
    SAP Information Design Tool - Version : 4.1 Support Pack 1
       Please help me to overcome this error.
    Thanks,
    S.Nirmal                                                                    

    HI,
    firstly, would request you to upgrade your IDT i.e client tools as well as CR4E tools to the Server version i.e BI 4.0 sP5 it seems.
    then test the issue again and update
    Regards,
    Atul B

  • Connecting Crystal reports server 2008  to BI 7.0

    Hello,
    I  have a BI 7.0 server on Unix machine. I am trying to install crystal reports 2008 on windows 2003 server, and further integrate it to SAP BI by installing SAP integration kit. I have done the below.
    1) Installed crystal reports server 2008 on windows 2003 server.
    2) I can launch the CMS by start programs --> crystal reports server 2008 --> Central Management console.
    3) I enter my user id an password and can see the business object portal with all the entries in it,
    4) I have also installed SAP BOBJ integration kit (XI3.0) as well. It installs successfully. The only difference in the guide and what I did was, it dint prompt me for the CMS information, but it did when I was installing crystal reports server 2008.
    5) Now I am able to connect to CMS, but I donot find the SAP authentication tab, and the server details tab, as per the guide.
    I am a basis admin, and experimenting this for the 1st time. I need to set this up for one of the clients. They want to do some BI reporting through crystal reports. I have installed crystal reports server as of now. The client will now try to access it through CMS , by "InfoView". But CMS isnt giving me SAP auth tab, for me to go ahead and configure the SAP related settings.
    Any inputs on the same will be highly appreciated.
    Thanks,
    AK

    Hi Ingo,
    Thanks for that reply..I am stuck now when I am trying to publish a report. I will summarize, what I have done so faar, just to make it easier to reply.
    1) Installed the BO edge series xi 3.1
    2) Installed Crystal report 2008
    3) Installed the BOBJ/SAP integration kit.
    4) Did the configuration steps as per the manual downloaded from SAP site named:"XI3-1_BIP_SAP_INSTALL_EN.pdf"
    I created create a report, but I am not able to publish it. I am clicking the option to directly publish it to enterprise.But its failing complaining regarding some BI roles..not sure...My BW publisher service is starting fine.
    Only thing is, I have created all the athorizations etc. i can also Log in to CMC with my BW credentials..So I am assuming BOE is atleast talking with SAP. But my my main aim is publishing reports on the server, which isnt happening when I save it with the above option.
    Ok..one more thing, i have not performed the steps for the SAP/BOBJ server side trust..I think this might be the reason as well..Wanted your opinion on it.
    Appreciate your input as always..
    Thanks,
    AK

  • The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.5.1 Authentication Required.

     try
                    MailMessage mail = new MailMessage();
                    SmtpClient SmtpServer = new SmtpClient("smtp.gmail.com");
                    mail.From = new MailAddress("[email protected]");
                    mail.To.Add("[email protected]");
                    mail.Subject = "Test Mail..!!!!";
                    mail.Body = "mail with attachment";
                    System.Net.Mail.Attachment attachment;
                    attachment = new System.Net.Mail.Attachment(@"C:\Attachment.txt");
                    mail.Attachments.Add(attachment);
                    SmtpServer.Port = 587;
                    SmtpServer.UseDefaultCredentials = true;
                    SmtpServer.Credentials = new System.Net.NetworkCredential("userid", "Password");
                    SmtpServer.EnableSsl = true;
                    SmtpServer.Send(mail);
    Catch(Exception exception)
    When i m run this part of code it throw an Ecxeption                                                          
            Given Below is the Error.. 
        The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.5.1 Authentication Required.
    Bikky Kumar

     try
                    MailMessage mail = new MailMessage();
                    SmtpClient SmtpServer = new SmtpClient("smtp.gmail.com");
                    mail.From = new MailAddress("[email protected]");
                    mail.To.Add("[email protected]");
                    mail.Subject = "Test Mail..!!!!";
                    mail.Body = "mail with attachment";
                    System.Net.Mail.Attachment attachment;
                    attachment = new System.Net.Mail.Attachment(@"C:\Attachment.txt");
                    mail.Attachments.Add(attachment);
                    SmtpServer.Port = 587;
    SmtpServer.UseDefaultCredentials = true;    ///Set it to false, or remove this line
                    SmtpServer.Credentials = new System.Net.NetworkCredential("userid", "Password");
                    SmtpServer.EnableSsl = true;
                    SmtpServer.Send(mail);
    Catch(Exception exception)
    Given Below is the Error..      The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.5.1 Authentication Required.
    Solution:
    The error might occur due to following cases.
    case 1: when the password is wrong
    case 2: when you try to login from some App
    case 3: when you try to login from the domain other than your time zone/domain/computer (This
    is the case in most of scenarios when sending mail from code)
    There is a solution for each
    solution for case 1: Enter the correct password.
    Recomended: solution for case 2: go to
    security settings at the following link https://www.google.com/settings/security/lesssecureapps and
    enable less secure apps . So that you will be able to login from all apps.
    solution 1 for case 3: (This might be helpful) you need to review the activity. but reviewing the activity will not be helpful due to latest security
    standards the link will not be useful. So try the below case.
    solution 2 for case 3: If you have hosted your code somewhere on production server and if you have access to the production server, than take remote
    desktop connection to the production server and try to login once from the browser of the production server. This will add exception for login to google and you will be allowed to login from code.
    But what if you don't have access to the production server. try
    the solution 3
    solution 3 for case 3: You have to enable
    login from other timezone / ip for your google account.
    to do this follow the link https://g.co/allowaccess and
    allow access by clicking the continue button.
    And that's it. Here you go. Now you will be able to login from any of the computer and by any means of app to your google account.
    Regards,
    Nabeel Arif

  • How to connect to the Crystal Reports Server XI R2 installed in other machi

    Hi,
    we are 3 people here we have Crystal Reports Server XI R2 installed in one machine and Crystal Repoprts XI  DEsigner ( downloaded trial version) in all the machines ,
    in my machine only Crystal Repoprts XI  DEsigner ( downloaded trial version) is installed , how to connect to the Crystal Reports Server XI R2 which is installed in other machine
    Regards,
    kathyaini

    Hi,
    thankyou for your  response,
    my problem here is as soon as i open CR Designer , and if i  click on either New Report,Blank Report, or  standard report wizard  it is saying "failed to create database connection"
    on which ever thing i click it is telling the same "failed to create database connection" i created the user DSN properly , i could not create System DSN i dont know why.
    can u please guide me
    and one more thing on the machine where CR server is installed , on the same machine designer is also installed (i think u was telling the same) .  my question is how the server will know about the CR Designer installed in my machine.
    Regards,
    kathyaini

  • Crystal Reports Server :Unable to connect: incorrect log on parameters

    Hi there, I am getting the following error in Crystal Reports Server  when i try to preview or schedule a Crystal Report on an Access 2000 database.
    Unable to connect: incorrect log on parameters
    The Access database does not have has not username or password and I have left these blank when publishing it, and the Database properties in the Central Management Console also show the username and password as blank.
    All other reports are fine is it just reports on the Access 2000 database that give me this errror.
    Anyone any ideas.
    Thanks

    Hi,
    ok now you have to make ure that the user used to run the BOBJ services on your BO server (if you hvae windows then this is the local system account), has access to your AccessDB. Normally local users do not have access to network locations so it is advisable to create a domain user, who is allowed to access the directory with your database and is melber of the local administrators group on the BOBJ server. All you have to do then is to  configure your BOBJ services (Use the Central Configuration Management utility to do this) to run under the credentials (Log-on-as) of user you created.
    Regards,
    Stratos

  • Error Connecting Crystal Report Server XI to Database

    I am trying to install Crystal Reports Server XI on a server running Windows Server 2008 R2 (64 bit).  The software installs fine; however, when I try to login to the CMS (central management server), I get the following error:
    Falied to retrieve cluster name from the database.  Reason: Unable to connect to the database using the provided connection string.  Reason: [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified.
    If I go to the configuration tab of the CMS and specify my data source, it acts like it is set up correctly.
    I am not sure what the problem is.  Does anyone have an idea?
    Thanks.
    Danielle

    Make sure that you have the 32bit ODBC driver activated for your BOBJ repository connection (configure this using odbccad32.exe)
    Regards,
    Stratos
    PS: I assume that Windows 2008 and SQL server 2008 were never officially supported for CRS XI. But I guess that also official support for CRS XI has already expired.

  • Crystal report server 2008 v1 connect to oracle error in win 64 bit

    Dear Experts,
    I have install crystal report server 2008 v1 in windows server 2008 64-bit, oracle client 10g 64 bit. When report connect to database, it 's has an error: Fail to load database information.
    I tested on crystal report 2k8 v1 by : Open this report file , and preview, It has an error :
                         " Fail to load database information. Details: the database connector crdb_oracle.dll could not be loaded. The correct version of the database client for this database type might not  be installed".
    But, on win XP 32 bit, It's OK.
    Could you please tell me how to fix it?
    Thanks and Best Regards.
    Quan, Ly Thanh - Software Engineer, Information Technology Center- Mekong Housing Bank- Viet Nam
    Edited by: Ly Thanh Quan on Jun 21, 2010 9:17 AM

    Hi,
    first you must uninstall the 64 bit version.
    But you can install the 32bit version on a 64bit OS.
    When you install the 32bit version please make sure to not install into the "Program Files (x86)" Folder - somethimes i had problems with the "(" ")".
    Regards
    -Seb.
    Edited by: Sebastian Wiefett on Jun 22, 2010 9:29 AM

  • Crystal Reports Server XI Installation

    We just purchased Crystal Reports Server XI for Crystal Reports Professional and I want to install it minimally as I think we may have "overbought"; that aside, the big question is where do I go from here to put this on our servers w/o impacting current applications?
    TOPOLOGY:
    - we have a Windows network with Windows 2003 Small Biz Server and a 2nd server with Windows 2003 Standard running Terminal Services.
    - goal is to allow 1 main user to create reports from Quickbooks using Crystal Reports while they are on the Terminal Server
    This breaks down into the following questions:
    1) do I need to install the server portion at all? or can I just install Crystal Reports Pro via the CLIENT installation on the terminal server?
    2) if I do have to, I'd rather use MSDE already installed but how should this be set up?
    3) what impact will this make on the SBS web server which we are already using for OWA and Remote Web Workplace?
    Any tech docs/manuals that you could link me to would be appreciated as well. 
    Thanks,
    Doug

    We just purchased Crystal Reports Server XI for Crystal Reports Professional and I want to install it minimally as I think we may have "overbought"; that aside, the big question is where do I go from here to put this on our servers w/o impacting current applications?
    TOPOLOGY:
    we have a Windows network with Windows 2003 Small Biz Server and a 2nd server with Windows 2003 Standard running Terminal Services.
    goal is to allow 1 main user to create reports from Quickbooks using Crystal Reports while they are on the Terminal Server
    This breaks down into the following questions:
    1) do I need to install the server portion at all? or can I just install Crystal Reports Pro via the CLIENT installation on the terminal server?
    2) if I do have to, I'd rather use MSDE already installed but how should this be set up?
    3) what impact will this make on the SBS web server which we are already using for OWA and Remote Web Workplace?
    Any tech docs/manuals that you could link me to would be appreciated as well.
    Thanks,
    Doug
    Hi Doug,
    With regards to your questions, they will be answered in the following ways:
    1) do I need to install the server portion at all? or can I just install Crystal Reports Pro via the CLIENT installation on the terminal server?
    This questions is better by your company's requirements.  The Crystal Reports Server (CRS) piece is used by end-users who want to browse reports via the web.  The CRS is just a central repository, analogous to a central storage box, which makes reports available over the web.  Crystal Reports (CR) is simply the client that is used to report off your database.  In this case, your 'database' is Quickbooks. 
    So in short, you will need to install Crystal Reports Pro for your user to make reports.  And if the user needs to view report over the web, then you will need CRS as well.  The user will create the report and save it to the CRS if he/she wants to view it over the web. 
    2) if I do have to, I'd rather use MSDE already installed but how should this be set up?
    The question may need further clarification. 
    However, if you are using MSDE to write reports with (for CR), then you can use an ODBC connection to connect it.  You can consult this external page as a guide:  http://www.truthsolutions.com/sql/odbc/creating_a_new_odbc_dsn.htm.  You will set the connection to your MSDE.
    If you are asking about how to configure MSDE to be used as the CMS (Central Management Server) database for the CRS, then you will to consult our "BusinessObjects Enterprise Administration" forum.  As a note, the CMS is just a backend security database that authenticate user(s) that sign into the CRS. 
    Your post is posted in the "Crystal Reports" forum.
    3) what impact will this make on the SBS web server which we are already using for OWA and Remote Web Workplace?
    If you are asking how CR would impact your web server, it should not have any effect.  If you are inquiring about how CRS would affect them, you will also need to consult our "BusinessObjects Enterprise Administration" forum.

  • Crystal Reports Server 2008 dispose not closing document

    Hey everyone,
    I;m running some reports through Crystal reports 2008 server (no service packs) using the RAS sdk and Java.
    This was working swimmingly for a while until yesterday when the server hosting the RAS and app server fell over. I tracked it down to a problem with the RAS server. The error i got in my logs was General Exception, Report SDK Exception Not enough memory for operation.  I reran the process and when i watched task manager the memory being allocated to crystalras.exe went through the roof! it went from 50k to 1.8g of ram in under 10 minutes.
    I tried lots of the other suggestions in here for the errors about memory that are similar to mine (increasing the heap memory etc.) and none of them worked.
    One thing i noticed though is that when I run the process and watch the metrics page of the RAS server on the management console the number of Open documents does not decrease even though i am 100% totally and utterly calling .close and .dsipose after every report i open. Definitely. Ive debugged it a million times and it is calling these methods. It is successfully releasing the connections fine but does not seem to releasing the open documents. After the Open documents metric went down to 0 (im presuming after a timeout) the memory that crystalras.exe was reduced. I then  changed the timeout tag in CRConfig.xml to 1 minute to see would this help out any but the open documents did not timeout any faster.
    Would i be right in thinking that these open documents would be causing my problem of the aggregated memory? Im at my wits end here so any piece of help is greatly appreciated!

    Hi Ted,
    Thank you for getting back to me, i was on vacation there for a while so that is why i didnt get back to you.
    When I call reportClientDocument.isOpen() just before i dispose of the report it is true and after i dispose of it it correclty returns false.
    I am really stressing out over this as we are reduced to running 500 reports through the server (one after another) and then stopping the process and restarting the RAS server and then running another 500 reports.
    crystalras.exe gets up to about 2g of ram consumed for only 500 reports.
    I even changed some of the timeout settings on the settings page of the management console to see would they timeout and release the memory but alas it didnt release as much as a byte. I left it for 3 days and it didnt deallocate one piece of memory.
    Im currently investigating is there some way from my code that I can restart the RAS server, either through the SDK or through a windows process or scheduled task.
    Ted, as far as i can see there are no service packs for Crystal Reports Server 2008, is that right? when i go to the downloads page there only ones listed for release X1.
    Thank you for your help.
    J.

  • Please help with my crystal reports server 2008 trial setup

    Firstly, if this is in the wrong section feel free to move it. I find this forum is to big to find the information i need, in fact trying to find anything i need on this website is almost impossible. So far not impressed with SAP at all! we download a trial and when we have problems nobody can support us and we have to post in the forums for answers, which i find disgracefull to be honest. So this post is my last attempt of finding the answers to my problems or we are going to forget crystal reports server for good! I was also told that if i wanted help setting this up then i would have to pay, thats not how things usually go when we download a trial of any software!
    Anyway, rant over!!
    Right, we have windows server 2008 and have installed crystal reports server 2008. So far all i have managed to get working is the reports themselves which run and schedule fine. The dashboard and business views are so confusing i just dont get it at all, the manuals dont help either becuase they are rubbish basically. But my first problem is trying to get windows AD authentication working! easier said than done. I have spent 4 days trying to get it working but nothing is happening. this is what i have done so far
    Set up all the options in the CMC to enable AD authentication, mapped a few groups one of which i am a member of.
    Then i setup the krb5.ini file like below (removed my server name and domain name)
    [libdefaults]
        default_realm = DOMAIN.CO.UK
        dns_lookup_kdc = true
        dns_lookup_realm = true
        udp_preference_limit = 1
    [realms]
    DOMAIN.CO.UK = {
        kdc = DC.CO.UK
        default_domain = DOMAIN.CO.UK
    i also have that other file bscLogin which looks like this...
    com.businessobjects.security.jgss.initiate {
    com.sun.security.auth.module.Krb5LoginModule required;
    The server inteligence agent has been set to use the same username as i specified in the CMC which is also the service principal name and the administartion name
    i have set the web config file to use SecWINAD as default, i have also set it to give the option of enterprise, win ad etc in a drop down list
    i have gone round in circles for days following the instructions, and nothing is happening
    Also i dont see any usernames within the groups i have mapped , am i supposed to see any? am i supposed to add them manually?? if so, whats the point in that?
    So now everytime i try to log in i get this error message
    Account Information Not Recognized: Active Directory Authentication failed to log you on. Please contact your system administrator to make sure you are a member of a valid mapped group and try again. If you are not a member of the default domain, enter your user name as UserName@DNS_DomainName, and then try again. (FWM 00006)
    There is also another error message i get, which isnt coming up right now but it says somthing along the lines of could not authenticate at this time (FWM 00005)
    i fail to see what im doing wrong. I shoudl also point out that the username i am using for everything is our own network admin password!
    any ideas on things to check before we give up with this all together?

    Hi Roberto,
    With the changes when SAP took over BusinessObjects the support packaging also changed. It's the way it is now but we are moving to and giving as much options as we can. SAP works on the Self Serve practice. the info is available but you have to find it, which is another thing we are working on to improve for BOE/CRS.
    Best place to start is in the CMS link off the start menu, You'll find the Admin Guide and Setup/Configuration Guides. You can also find all of the latest info and updates to those guides from help.sap.com then click on the SAP BusinessObjects tab along the top and then on the left click on All Products and then filter on your version.
    Once the Firewalls and Domains and your CRS Server is added to the Trusted Domains and ports opened to allow CRS to talk to the DNS Server CRS will begin to load all of the users into it's User Mappings. You still have to add each user or Group of Users but they will be available. Documents does describe how to....
    Once you have the Admin Guide search on Security and it explains in details how to set up and which ports need to be opened etc.
    Thank you
    Don

  • Do I need to uninstall Crystal Reports Server 2008?

    Hello,
    We recently installed Crystal Reports Server 2008 and began migrating reports off the CR Enterprise 9 platform and things were going pretty well.
    One of our other locations began moving over their reports that are ran against an Oracle database and cannot get passed a connectivity issue. We found the following:
    Oracle connectivity issues
    If you are installing Crystal Reports Server 2008 V1 on a 64-bit Windows
    platform, Oracle database connectivity issues may occur. If Crystal Reports
    Server 2008 V1 is installed to a location that contains brackets in the folder
    path, for example, C:\Program Files (x86)\, it will be unable to connect
    to an Oracle database. Certain Oracle database clients such as version
    10.2.0.2 or 10.1.0.2, may not function properly with any application that
    has brackets in its folder path. When installing Crystal Reports Server 2008
    V1, select an installation path that does not contain brackets, such as
    C:\Program Files x86\ or contact Oracle support for an updated database
    client.
    We of course have everything installed in the default (x86) folder. My question is, is there a way to move the installation, or do I need to uninstall/re-install? If I need to re-install, is there a way to back-up and reload all of my existing jobs?

    Hello,
    CR must have the Oracle client installed. Unless you use a Wired Driver, which has the client engine built in, CR requires a client to be installed. It never has worked without the client installed.
    Also, I've found that if you have more than one Oracle client installed it causes problems. Make sure the first one in the PATH statement points to the latest version of the client.
    And yes you are correct, ODBC is a layer on top of the native client so it will be slower obviously because it has to go through one more layer of dll's to get to the server.
    Thanks again
    Don

  • Migrating all configuration  from Crystal Reports Server XI R2 to Crystal Server 2013

    Hi,
    We're running an old Crystal Reports Server XI R2 SP version (boe 11.5)  and we're planning to start using Crystal Server 2013
    As far as I know no upgrade is possible and that's not needed either.
    Instead I'm interested in the migrate possibilities. I saw this thread but it doesn't answer all the questions https://scn.sap.com/thread/3462417
    So first I will install Crystal Server 2013 on a new server and then I use some migrate tool.
    Questions:
    - does the migrate tool support migrating from my version CR server XI R2 SP1  to  Crystal Server 2013 ?
    - does the migrate tool copy all report schduling information (recurring schedule, destination etc)? We have ~1000 scheduled reports so doing manually is not an option
    - does the migrate tool copy Business views/Business view connections ?
    (- odbc data sources are probably not copied but that's ok)
    -Mikael

    Hi Mikael,
    Since you're already on CR Server XI R2, you can use the Upgrade Management Tool to migrate all the content to CR Server 2013.
    Anwers to your questions:
    1) Yes, the Upgrade Management Tool does support this kind of migration
    2) It does seem that the UMT allows you to move all report instances as well as the scheduled jobs over to the new server
    3) I've always had issues with Business Views when using Import Wizard however I'm not sure whether they work well with the new UMT. In any case, I always prefer to export the LOVs and BVs from within the Business View Manager to a .xml file and then import them in the higher version of the Server, again, from within the Business View Manager.
    -Abhilash

  • Crystal Report Server XI R2 - Upgrade MySQL to 5.0 or 5.1?

    Although SP4 for Crystal Report Server XI R2 contains mySQL v 4.1.23, there are security vulnerabilities which are only addressed in 4.1.24 and 4.1.25.  These versions are not in release in binary form from mysql.com, as 4.1 is no longer supported.
    To address the security vulnerabilities, an update of mySQL to 5.0 or 5,1 may be required, but a straight upgrade from 4.1 to either of these versions does not seem to work - CMS cannot connect to the new database version.
    Can anyone provide some guidance on how to patch mySQL from 4.1 to 5.0 or 5.1 for Crystal Report Server XI R2, or whether there is another way of addressing the security vulnerabilities in 4.1.23?
    Thanks
    Paul

    Answered my own question.  Managed to upgrade to 5.0 following this process, but follow these instructions with care...
    1.  Stop all CMS services in Config Manager.
    2. Go to Add/Remove programs and click "change" for Crystal Reports Server XI.  Click on "Modify" then change the entry for MySQL4.1.13a to "Entire Feature will be unavailable" (from Enterprise -> Server Components -> Servers - > Central Management Server).  This will remove the existing mySQL version and any data/license key information/customisation, so be wary.
    3. Install the desired version of mySQL.
    4. Use the MySql command line to create a new database - "create DATABASE BOE115;"
    5. In the Central Config Manager, select the CMS and display its properties.  Select the Dependencies tab and remove the old version of mySQL and add the new version.  Click on the Config tab, then Select Datasource.  Select mySQL driver, then complete the details for the newly created database.  Once complete it will still produce an error, at which point you need to select the options to Re-create the Current Datasource.
    6. Once the datasource is sucessfully recreated, restart the Crystal service in the Config Manager.
    7. Open the Config tool, and add your license key. Then Re-Enable all the servers within the Servers page.
    8.  Any other customisation or preferences would need to be re-applied.
    This worked for me, but obviously take care as your existing mySQL database will be completely removed during the process.

Maybe you are looking for